interfaces.php 189 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.
5
	Copyright (C) 2010 Erik Fonnesbeck
Ad Schellevis's avatar
Ad Schellevis committed
6
	Copyright (C) 2008-2010 Ermal Luçi
7 8 9
	Copyright (C) 2004-2008 Scott Ullrich
	Copyright (C) 2006 Daniel S. Haischt
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>
Ad Schellevis's avatar
Ad Schellevis committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
	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.
*/

require_once("guiconfig.inc");
35
require_once("vpn.inc");
Ad Schellevis's avatar
Ad Schellevis committed
36 37 38 39
require_once("captiveportal.inc");
require_once("filter.inc");
require_once("rrd.inc");
require_once("vpn.inc");
40 41
require_once("system.inc");
require_once("interfaces.inc");
42
require_once("openvpn.inc");
43
require_once("pfsense-utils.inc");
44
require_once("services.inc");
45
require_once("unbound.inc");
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247

/***************************************************************************************************************
 * imported from xmlparse_attr.inc
 ***************************************************************************************************************/
/* The following items will be treated as arrays in regdomain.xml */
function listtags_rd() {
	$ret = explode(" ",
		"band country flags freqband netband rd"
		);
	return $ret;
}

function startElement_attr($parser, $name, $attrs) {
	global $parsedcfg, $depth, $curpath, $havedata, $listtags, $parsedattrs;

	array_push($curpath, strtolower($name));

	$ptr =& $parsedcfg;
	if (!empty($attrs)) {
		$attrptr =& $parsedattrs;
		$writeattrs = true;
	}
	foreach ($curpath as $path) {
		$ptr =& $ptr[$path];
		if (isset($writeattrs))
			$attrptr =& $attrptr[$path];
	}

	/* is it an element that belongs to a list? */
	if (in_array(strtolower($name), $listtags)) {

		/* is there an array already? */
		if (!is_array($ptr)) {
			/* make an array */
			$ptr = array();
		}

		array_push($curpath, count($ptr));

		if (isset($writeattrs)) {
			if (!is_array($attrptr))
				$attrptr = array();
			$attrptr[count($ptr)] = $attrs;
		}

	} else if (isset($ptr)) {
		/* multiple entries not allowed for this element, bail out */
		die(sprintf(gettext('XML error: %1$s at line %2$d cannot occur more than once') . "\n",
				$name,
				xml_get_current_line_number($parser)));
	} else if (isset($writeattrs)) {
		$attrptr = $attrs;
	}

	$depth++;
	$havedata = $depth;
}

function endElement_attr($parser, $name) {
	global $depth, $curpath, $parsedcfg, $havedata, $listtags;

	if ($havedata == $depth) {
		$ptr =& $parsedcfg;
		foreach ($curpath as $path) {
			$ptr =& $ptr[$path];
		}
		$ptr = "";
	}

	array_pop($curpath);

	if (in_array(strtolower($name), $listtags))
		array_pop($curpath);

	$depth--;
}

function cData_attr($parser, $data) {
	global $depth, $curpath, $parsedcfg, $havedata;

	$data = trim($data, "\t\n\r");

	if ($data != "") {
		$ptr =& $parsedcfg;
		foreach ($curpath as $path) {
			$ptr =& $ptr[$path];
		}

		if (is_string($ptr)) {
			$ptr .= html_entity_decode($data);
		} else {
			if (trim($data, " ") != "") {
				$ptr = html_entity_decode($data);
				$havedata++;
			}
		}
	}
}

function parse_xml_regdomain(&$rdattributes, $rdfile = '', $rootobj = 'regulatory-data')
{
	global $listtags;

	if (empty($rdfile)) {
		$rdfile = '/etc/regdomain.xml';
	}

	$listtags = listtags_rd();
	$parsed_xml = array();

	if (file_exists('/tmp/regdomain.cache')) {
		$parsed_xml = unserialize(file_get_contents('/tmp/regdomain.cache'));
		if (!empty($parsed_xml)) {
			$rdmain = $parsed_xml['main'];
			$rdattributes = $parsed_xml['attributes'];
		}
	}
	if (empty($parsed_xml) && file_exists('/etc/regdomain.xml')) {
		$rdmain = parse_xml_config_raw_attr($rdfile, $rootobj, $rdattributes);

		// unset parts that aren't used before making cache
		foreach ($rdmain['regulatory-domains']['rd'] as $rdkey => $rdentry) {
			if (isset($rdmain['regulatory-domains']['rd'][$rdkey]['netband']))
				unset($rdmain['regulatory-domains']['rd'][$rdkey]['netband']);
			if (isset($rdattributes['regulatory-domains']['rd'][$rdkey]['netband']))
				unset($rdattributes['regulatory-domains']['rd'][$rdkey]['netband']);
		}
		if (isset($rdmain['shared-frequency-bands']))
			unset($rdmain['shared-frequency-bands']);
		if (isset($rdattributes['shared-frequency-bands']))
			unset($rdattributes['shared-frequency-bands']);

		$parsed_xml = array('main' => $rdmain, 'attributes' => $rdattributes);
		$rdcache = fopen('/tmp/regdomain.cache', 'w');
		fwrite($rdcache, serialize($parsed_xml));
		fclose($rdcache);
	}

	return $rdmain;
}

function parse_xml_config_raw_attr($cffile, $rootobj, &$parsed_attributes, $isstring = "false") {

	global $depth, $curpath, $parsedcfg, $havedata, $listtags, $parsedattrs;
	$parsedcfg = array();
	$curpath = array();
	$depth = 0;
	$havedata = 0;

	if (isset($parsed_attributes))
		$parsedattrs = array();

	$xml_parser = xml_parser_create();

	xml_set_element_handler($xml_parser, "startElement_attr", "endElement_attr");
	xml_set_character_data_handler($xml_parser, "cData_attr");
	xml_parser_set_option($xml_parser,XML_OPTION_SKIP_WHITE, 1);

	if (!($fp = fopen($cffile, "r"))) {
		log_error(gettext("Error: could not open XML input") . "\n");
		if (isset($parsed_attributes)) {
			$parsed_attributes = array();
			unset($parsedattrs);
		}
		return -1;
	}

	while ($data = fread($fp, 4096)) {
		if (!xml_parse($xml_parser, $data, feof($fp))) {
			log_error(sprintf(gettext('XML error: %1$s at line %2$d') . "\n",
						xml_error_string(xml_get_error_code($xml_parser)),
						xml_get_current_line_number($xml_parser)));
			if (isset($parsed_attributes)) {
				$parsed_attributes = array();
				unset($parsedattrs);
			}
			return -1;
		}
	}
	xml_parser_free($xml_parser);

	if (!$parsedcfg[$rootobj]) {
		log_error(sprintf(gettext("XML error: no %s object found!") . "\n", $rootobj));
		if (isset($parsed_attributes)) {
			$parsed_attributes = array();
			unset($parsedattrs);
		}
		return -1;
	}

	if (isset($parsed_attributes)) {
		if ($parsedattrs[$rootobj])
			$parsed_attributes = $parsedattrs[$rootobj];
		unset($parsedattrs);
	}

	return $parsedcfg[$rootobj];
}

/***************************************************************************************************************
 * End of import
 ***************************************************************************************************************/
Ad Schellevis's avatar
Ad Schellevis committed
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
function get_wireless_modes($interface) {
	/* return wireless modes and channels */
	$wireless_modes = array();

	$cloned_interface = get_real_interface($interface);

	if($cloned_interface && is_interface_wireless($cloned_interface)) {
		$chan_list = "/sbin/ifconfig {$cloned_interface} list chan";
		$stack_list = "/usr/bin/awk -F\"Channel \" '{ gsub(/\\*/, \" \"); print \$2 \"\\\n\" \$3 }'";
		$format_list = "/usr/bin/awk '{print \$5 \" \" \$6 \",\" \$1}'";

		$interface_channels = "";
		exec("$chan_list | $stack_list | sort -u | $format_list 2>&1", $interface_channels);
		$interface_channel_count = count($interface_channels);

		$c = 0;
		while ($c < $interface_channel_count) {
			$channel_line = explode(",", $interface_channels["$c"]);
			$wireless_mode = trim($channel_line[0]);
			$wireless_channel = trim($channel_line[1]);
			if(trim($wireless_mode) != "") {
				/* if we only have 11g also set 11b channels */
				if($wireless_mode == "11g") {
					if(!isset($wireless_modes["11b"]))
						$wireless_modes["11b"] = array();
				} else if($wireless_mode == "11g ht") {
					if(!isset($wireless_modes["11b"]))
						$wireless_modes["11b"] = array();
					if(!isset($wireless_modes["11g"]))
						$wireless_modes["11g"] = array();
					$wireless_mode = "11ng";
				} else if($wireless_mode == "11a ht") {
					if(!isset($wireless_modes["11a"]))
						$wireless_modes["11a"] = array();
					$wireless_mode = "11na";
				}
				$wireless_modes["$wireless_mode"]["$c"] = $wireless_channel;
			}
			$c++;
		}
	}
	return($wireless_modes);
}

/* return channel numbers, frequency, max txpower, and max regulation txpower */
function get_wireless_channel_info($interface) {
	$wireless_channels = array();

	$cloned_interface = get_real_interface($interface);

	if($cloned_interface && is_interface_wireless($cloned_interface)) {
		$chan_list = "/sbin/ifconfig {$cloned_interface} list txpower";
		$stack_list = "/usr/bin/awk -F\"Channel \" '{ gsub(/\\*/, \" \"); print \$2 \"\\\n\" \$3 }'";
		$format_list = "/usr/bin/awk '{print \$1 \",\" \$3 \" \" \$4 \",\" \$5 \",\" \$7}'";

		$interface_channels = "";
		exec("$chan_list | $stack_list | sort -u | $format_list 2>&1", $interface_channels);

		foreach ($interface_channels as $channel_line) {
			$channel_line = explode(",", $channel_line);
			if(!isset($wireless_channels[$channel_line[0]]))
				$wireless_channels[$channel_line[0]] = $channel_line;
		}
	}
	return($wireless_channels);
}


Ad Schellevis's avatar
Ad Schellevis committed
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
$referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/interfaces.php');

// Get configured interface list
$ifdescrs = get_configured_interface_with_descr(false, true);

$if = "wan";
if ($_REQUEST['if'])
	$if = $_REQUEST['if'];

if (empty($ifdescrs[$if])) {
	header("Location: interfaces.php");
	exit;
}

define("CRON_MONTHLY_PATTERN", "0 0 1 * *");
define("CRON_WEEKLY_PATTERN", "0 0 * * 0");
define("CRON_DAILY_PATTERN", "0 0 * * *");
define("CRON_HOURLY_PATTERN", "0 * * * *");

336
if (!is_array($pconfig)) {
Ad Schellevis's avatar
Ad Schellevis committed
337
	$pconfig = array();
338 339 340 341 342
}

if (!is_array($config['ppps'])) {
	$config['ppps'] = array();
}
Ad Schellevis's avatar
Ad Schellevis committed
343

344
if (!is_array($config['ppps']['ppp'])) {
Ad Schellevis's avatar
Ad Schellevis committed
345
	$config['ppps']['ppp'] = array();
346
}
Ad Schellevis's avatar
Ad Schellevis committed
347 348 349

$a_ppps = &$config['ppps']['ppp'];

350 351
function remove_bad_chars($string)
{
Ad Schellevis's avatar
Ad Schellevis committed
352 353 354
	return preg_replace('/[^a-z_0-9]/i','',$string);
}

355 356 357 358 359
if (!is_array($config['gateways'])) {
	$config['gateways'] = array();
}

if (!is_array($config['gateways']['gateway_item'])) {
Ad Schellevis's avatar
Ad Schellevis committed
360
	$config['gateways']['gateway_item'] = array();
361 362
}

Ad Schellevis's avatar
Ad Schellevis committed
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 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 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
$a_gateways = &$config['gateways']['gateway_item'];

$wancfg = &$config['interfaces'][$if];
$old_wancfg = $wancfg;
$old_wancfg['realif'] = get_real_interface($if);
$old_ppps = $a_ppps;
// Populate page descr if it does not exist.
if ($if == "wan" && !$wancfg['descr'])
	$wancfg['descr'] = "WAN";
else if ($if == "lan" && !$wancfg['descr'])
	$wancfg['descr'] = "LAN";

foreach ($a_ppps as $pppid => $ppp) {
	if ($wancfg['if'] == $ppp['if'])
		break;
}

$type_disabled = (substr($wancfg['if'], 0, 3) == 'gre') ? 'disabled="disabled"' : '';

if ($wancfg['if'] == $a_ppps[$pppid]['if']) {
	$pconfig['pppid'] = $pppid;
	$pconfig['ptpid'] = $a_ppps[$pppid]['ptpid'];
	$pconfig['port'] = $a_ppps[$pppid]['ports'];
	if ($a_ppps[$pppid]['type'] == "ppp") {
		$pconfig['username'] = $a_ppps[$pppid]['username'];
		$pconfig['password'] = base64_decode($a_ppps[$pppid]['password']);

		$pconfig['phone'] = $a_ppps[$pppid]['phone'];
		$pconfig['apn'] = $a_ppps[$pppid]['apn'];
	}
	else if ($a_ppps[$pppid]['type'] == "pppoe") {
		$pconfig['pppoe_username'] = $a_ppps[$pppid]['username'];
		$pconfig['pppoe_password'] = base64_decode($a_ppps[$pppid]['password']);
		$pconfig['provider'] = $a_ppps[$pppid]['provider'];
		$pconfig['pppoe_dialondemand'] = isset($a_ppps[$pppid]['ondemand']);
		$pconfig['pppoe_idletimeout'] = $a_ppps[$pppid]['idletimeout'];

		/* ================================================ */
		/* = force a connection reset at a specific time? = */
		/* ================================================ */

		if (isset($a_ppps[$pppid]['pppoe-reset-type'])) {
			$pconfig['pppoe-reset-type'] = $a_ppps[$pppid]['pppoe-reset-type'];
			$itemhash = getMPDCRONSettings($a_ppps[$pppid]['if']);
			if ($itemhash)
				$cronitem = $itemhash['ITEM'];
			if (isset($cronitem)) {
				$resetTime = "{$cronitem['minute']} {$cronitem['hour']} {$cronitem['mday']} {$cronitem['month']} {$cronitem['wday']}";
			} else {
				$resetTime = NULL;
			}
			//log_error("ResetTime:".$resetTime);
			if ($a_ppps[$pppid]['pppoe-reset-type'] == "custom") {
				if ($cronitem) {
					$pconfig['pppoe_pr_custom'] = true;
					$pconfig['pppoe_resetminute'] = $cronitem['minute'];
					$pconfig['pppoe_resethour'] = $cronitem['hour'];
					if ($cronitem['mday'] <> "*" && $cronitem['month'] <> "*")
						$pconfig['pppoe_resetdate'] = "{$cronitem['month']}/{$cronitem['mday']}/" . date("Y");
				}
			} else if ($a_ppps[$pppid]['pppoe-reset-type'] == "preset") {
				$pconfig['pppoe_pr_preset'] = true;
				switch ($resetTime) {
					case CRON_MONTHLY_PATTERN:
						$pconfig['pppoe_monthly'] = true;
						break;
					case CRON_WEEKLY_PATTERN:
						$pconfig['pppoe_weekly'] = true;
						break;
					case CRON_DAILY_PATTERN:
						$pconfig['pppoe_daily'] = true;
						break;
					case CRON_HOURLY_PATTERN:
						$pconfig['pppoe_hourly'] = true;
						break;
				}
			}
		}// End force pppoe reset at specific time
	}// End if type == pppoe
	else if ($a_ppps[$pppid]['type'] == "pptp" || $a_ppps[$pppid]['type'] == "l2tp"){
		$pconfig['pptp_username'] = $a_ppps[$pppid]['username'];
		$pconfig['pptp_password'] = base64_decode($a_ppps[$pppid]['password']);
		$pconfig['pptp_local'] = explode(",",$a_ppps[$pppid]['localip']);
		$pconfig['pptp_subnet'] = explode(",",$a_ppps[$pppid]['subnet']);
		$pconfig['pptp_remote'] = explode(",",$a_ppps[$pppid]['gateway']);
		$pconfig['pptp_dialondemand'] = isset($a_ppps[$pppid]['ondemand']);
		$pconfig['pptp_idletimeout'] = $a_ppps[$pppid]['timeout'];
	}
} else {
	$pconfig['ptpid'] = interfaces_ptpid_next();
	$pppid = count($a_ppps);
}
$pconfig['dhcphostname'] = $wancfg['dhcphostname'];
$pconfig['alias-address'] = $wancfg['alias-address'];
$pconfig['alias-subnet'] = $wancfg['alias-subnet'];
$pconfig['dhcprejectfrom'] = $wancfg['dhcprejectfrom'];

$pconfig['adv_dhcp_pt_timeout'] = $wancfg['adv_dhcp_pt_timeout'];
$pconfig['adv_dhcp_pt_retry'] = $wancfg['adv_dhcp_pt_retry'];
$pconfig['adv_dhcp_pt_select_timeout'] = $wancfg['adv_dhcp_pt_select_timeout'];
$pconfig['adv_dhcp_pt_reboot'] = $wancfg['adv_dhcp_pt_reboot'];
$pconfig['adv_dhcp_pt_backoff_cutoff'] = $wancfg['adv_dhcp_pt_backoff_cutoff'];
$pconfig['adv_dhcp_pt_initial_interval'] = $wancfg['adv_dhcp_pt_initial_interval'];

$pconfig['adv_dhcp_pt_values'] = $wancfg['adv_dhcp_pt_values'];

$pconfig['adv_dhcp_send_options'] = $wancfg['adv_dhcp_send_options'];
$pconfig['adv_dhcp_request_options'] = $wancfg['adv_dhcp_request_options'];
$pconfig['adv_dhcp_required_options'] = $wancfg['adv_dhcp_required_options'];
$pconfig['adv_dhcp_option_modifiers'] = $wancfg['adv_dhcp_option_modifiers'];

$pconfig['adv_dhcp_config_advanced'] = $wancfg['adv_dhcp_config_advanced'];
$pconfig['adv_dhcp_config_file_override'] = $wancfg['adv_dhcp_config_file_override'];
$pconfig['adv_dhcp_config_file_override_path'] = $wancfg['adv_dhcp_config_file_override_path'];

$pconfig['adv_dhcp6_interface_statement_send_options'] = $wancfg['adv_dhcp6_interface_statement_send_options'];
$pconfig['adv_dhcp6_interface_statement_request_options'] = $wancfg['adv_dhcp6_interface_statement_request_options'];
$pconfig['adv_dhcp6_interface_statement_information_only_enable'] = $wancfg['adv_dhcp6_interface_statement_information_only_enable'];
$pconfig['adv_dhcp6_interface_statement_script'] = $wancfg['adv_dhcp6_interface_statement_script'];

$pconfig['adv_dhcp6_id_assoc_statement_address_enable'] = $wancfg['adv_dhcp6_id_assoc_statement_address_enable'];
$pconfig['adv_dhcp6_id_assoc_statement_address'] = $wancfg['adv_dhcp6_id_assoc_statement_address'];
$pconfig['adv_dhcp6_id_assoc_statement_address_id'] = $wancfg['adv_dhcp6_id_assoc_statement_address_id'];
$pconfig['adv_dhcp6_id_assoc_statement_address_pltime'] = $wancfg['adv_dhcp6_id_assoc_statement_address_pltime'];
$pconfig['adv_dhcp6_id_assoc_statement_address_vltime'] = $wancfg['adv_dhcp6_id_assoc_statement_address_vltime'];

$pconfig['adv_dhcp6_id_assoc_statement_prefix_enable'] = $wancfg['adv_dhcp6_id_assoc_statement_prefix_enable'];
$pconfig['adv_dhcp6_id_assoc_statement_prefix'] = $wancfg['adv_dhcp6_id_assoc_statement_prefix'];
$pconfig['adv_dhcp6_id_assoc_statement_prefix_id'] = $wancfg['adv_dhcp6_id_assoc_statement_prefix_id'];
$pconfig['adv_dhcp6_id_assoc_statement_prefix_pltime'] = $wancfg['adv_dhcp6_id_assoc_statement_prefix_pltime'];
$pconfig['adv_dhcp6_id_assoc_statement_prefix_vltime'] = $wancfg['adv_dhcp6_id_assoc_statement_prefix_vltime'];

$pconfig['adv_dhcp6_prefix_interface_statement_sla_id'] = $wancfg['adv_dhcp6_prefix_interface_statement_sla_id'];
$pconfig['adv_dhcp6_prefix_interface_statement_sla_len'] = $wancfg['adv_dhcp6_prefix_interface_statement_sla_len'];

$pconfig['adv_dhcp6_authentication_statement_authname'] = $wancfg['adv_dhcp6_authentication_statement_authname'];
$pconfig['adv_dhcp6_authentication_statement_protocol'] = $wancfg['adv_dhcp6_authentication_statement_protocol'];
$pconfig['adv_dhcp6_authentication_statement_algorithm'] = $wancfg['adv_dhcp6_authentication_statement_algorithm'];
$pconfig['adv_dhcp6_authentication_statement_rdm'] = $wancfg['adv_dhcp6_authentication_statement_rdm'];

$pconfig['adv_dhcp6_key_info_statement_keyname'] = $wancfg['adv_dhcp6_key_info_statement_keyname'];
$pconfig['adv_dhcp6_key_info_statement_realm'] = $wancfg['adv_dhcp6_key_info_statement_realm'];
$pconfig['adv_dhcp6_key_info_statement_keyid'] = $wancfg['adv_dhcp6_key_info_statement_keyid'];
$pconfig['adv_dhcp6_key_info_statement_secret'] = $wancfg['adv_dhcp6_key_info_statement_secret'];
$pconfig['adv_dhcp6_key_info_statement_expire'] = $wancfg['adv_dhcp6_key_info_statement_expire'];

$pconfig['adv_dhcp6_config_advanced'] = $wancfg['adv_dhcp6_config_advanced'];
$pconfig['adv_dhcp6_config_file_override'] = $wancfg['adv_dhcp6_config_file_override'];
$pconfig['adv_dhcp6_config_file_override_path'] = $wancfg['adv_dhcp6_config_file_override_path'];

$pconfig['dhcp_plus'] = isset($wancfg['dhcp_plus']);
$pconfig['descr'] = remove_bad_chars($wancfg['descr']);
$pconfig['enable'] = isset($wancfg['enable']);

517
if (isset($config['aliases']['alias'])) {
Ad Schellevis's avatar
Ad Schellevis committed
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 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 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 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
	foreach($config['aliases']['alias'] as $alias) {
		if($alias['name'] == $wancfg['descr']) {
			$input_errors[] = sprintf(gettext("Sorry, an alias with the name %s already exists."),$wancfg['descr']);
		}
	}
}

switch($wancfg['ipaddr']) {
	case "dhcp":
		$pconfig['type'] = "dhcp";
		break;
	case "pppoe":
	case "pptp":
	case "l2tp":
	case "ppp":
		$pconfig['type'] = $wancfg['ipaddr'];
		break;
	default:
		if(is_ipaddrv4($wancfg['ipaddr'])) {
			$pconfig['type'] = "staticv4";
			$pconfig['ipaddr'] = $wancfg['ipaddr'];
			$pconfig['subnet'] = $wancfg['subnet'];
			$pconfig['gateway'] = $wancfg['gateway'];
		} else
			$pconfig['type'] = "none";
		break;
}

switch($wancfg['ipaddrv6']) {
	case "slaac":
		$pconfig['type6'] = "slaac";
		break;
	case "dhcp6":
		$pconfig['dhcp6-duid'] = $wancfg['dhcp6-duid'];
		if(!isset($wancfg['dhcp6-ia-pd-len']))
			$wancfg['dhcp6-ia-pd-len'] = "none";
		$pconfig['dhcp6-ia-pd-len'] = $wancfg['dhcp6-ia-pd-len'];
		$pconfig['dhcp6-ia-pd-send-hint'] = isset($wancfg['dhcp6-ia-pd-send-hint']);
		$pconfig['type6'] = "dhcp6";
		$pconfig['dhcp6prefixonly'] = isset($wancfg['dhcp6prefixonly']);
		$pconfig['dhcp6usev4iface'] = isset($wancfg['dhcp6usev4iface']);
		break;
	case "6to4":
		$pconfig['type6'] = "6to4";
		break;
	case "track6":
		$pconfig['type6'] = "track6";
		$pconfig['track6-interface'] = $wancfg['track6-interface'];
		if ($wancfg['track6-prefix-id'] == "")
			$pconfig['track6-prefix-id'] = 0;
		else
			$pconfig['track6-prefix-id'] = $wancfg['track6-prefix-id'];
		$pconfig['track6-prefix-id--hex'] = sprintf("%x", $pconfig['track6-prefix-id']);
		break;
	case "6rd":
		$pconfig['prefix-6rd'] = $wancfg['prefix-6rd'];
		if($wancfg['prefix-6rd-v4plen'] == "")
			$wancfg['prefix-6rd-v4plen'] = "0";
		$pconfig['prefix-6rd-v4plen'] = $wancfg['prefix-6rd-v4plen'];
		$pconfig['type6'] = "6rd";
		$pconfig['gateway-6rd'] = $wancfg['gateway-6rd'];
		break;
	default:
		if(is_ipaddrv6($wancfg['ipaddrv6'])) {
			$pconfig['type6'] = "staticv6";
			$pconfig['ipaddrv6'] = $wancfg['ipaddrv6'];
			$pconfig['subnetv6'] = $wancfg['subnetv6'];
			$pconfig['gatewayv6'] = $wancfg['gatewayv6'];
		} else
			$pconfig['type6'] = "none";
		break;
}

// print_r($pconfig);

$pconfig['blockpriv'] = isset($wancfg['blockpriv']);
$pconfig['blockbogons'] = isset($wancfg['blockbogons']);
$pconfig['spoofmac'] = $wancfg['spoofmac'];
$pconfig['mtu'] = $wancfg['mtu'];
$pconfig['mss'] = $wancfg['mss'];

/* Wireless interface? */
if (isset($wancfg['wireless'])) {
	/* Sync first to be sure it displays the actual settings that will be used */
	interface_sync_wireless_clones($wancfg, false);
	/* Get wireless modes */
	$wlanif = get_real_interface($if);
	if (!does_interface_exist($wlanif))
		interface_wireless_clone($wlanif, $wancfg);
	$wlanbaseif = interface_get_wireless_base($wancfg['if']);
	preg_match("/^(.*?)([0-9]*)$/", $wlanbaseif, $wlanbaseif_split);
	$wl_modes = get_wireless_modes($if);
	$wl_chaninfo = get_wireless_channel_info($if);
	$wl_sysctl_prefix = 'dev.' . $wlanbaseif_split[1] . '.' . $wlanbaseif_split[2];
	$wl_sysctl = get_sysctl(array("{$wl_sysctl_prefix}.diversity", "{$wl_sysctl_prefix}.txantenna", "{$wl_sysctl_prefix}.rxantenna",
				      "{$wl_sysctl_prefix}.slottime", "{$wl_sysctl_prefix}.acktimeout", "{$wl_sysctl_prefix}.ctstimeout"));
	$wl_regdomain_xml_attr = array();
	$wl_regdomain_xml = parse_xml_regdomain($wl_regdomain_xml_attr);
	$wl_regdomains = &$wl_regdomain_xml['regulatory-domains']['rd'];
	$wl_regdomains_attr = &$wl_regdomain_xml_attr['regulatory-domains']['rd'];
	$wl_countries = &$wl_regdomain_xml['country-codes']['country'];
	$wl_countries_attr = &$wl_regdomain_xml_attr['country-codes']['country'];
	$pconfig['persistcommonwireless'] = isset($config['wireless']['interfaces'][$wlanbaseif]);
	$pconfig['standard'] = $wancfg['wireless']['standard'];
	$pconfig['mode'] = $wancfg['wireless']['mode'];
	$pconfig['protmode'] = $wancfg['wireless']['protmode'];
	$pconfig['ssid'] = $wancfg['wireless']['ssid'];
	$pconfig['channel'] = $wancfg['wireless']['channel'];
	$pconfig['txpower'] = $wancfg['wireless']['txpower'];
	$pconfig['diversity'] = $wancfg['wireless']['diversity'];
	$pconfig['txantenna'] = $wancfg['wireless']['txantenna'];
	$pconfig['rxantenna'] = $wancfg['wireless']['rxantenna'];
	$pconfig['distance'] = $wancfg['wireless']['distance'];
	$pconfig['regdomain'] = $wancfg['wireless']['regdomain'];
	$pconfig['regcountry'] = $wancfg['wireless']['regcountry'];
	$pconfig['reglocation'] = $wancfg['wireless']['reglocation'];
	$pconfig['wme_enable'] = isset($wancfg['wireless']['wme']['enable']);
	if (isset($wancfg['wireless']['puren']['enable']))
		$pconfig['puremode'] = '11n';
	else if (isset($wancfg['wireless']['pureg']['enable']))
		$pconfig['puremode'] = '11g';
	else
		$pconfig['puremode'] = 'any';
	$pconfig['apbridge_enable'] = isset($wancfg['wireless']['apbridge']['enable']);
	$pconfig['authmode'] = $wancfg['wireless']['authmode'];
	$pconfig['hidessid_enable'] = isset($wancfg['wireless']['hidessid']['enable']);
	$pconfig['auth_server_addr'] = $wancfg['wireless']['auth_server_addr'];
	$pconfig['auth_server_port'] = $wancfg['wireless']['auth_server_port'];
	$pconfig['auth_server_shared_secret'] = $wancfg['wireless']['auth_server_shared_secret'];
	$pconfig['auth_server_addr2'] = $wancfg['wireless']['auth_server_addr2'];
	$pconfig['auth_server_port2'] = $wancfg['wireless']['auth_server_port2'];
	$pconfig['auth_server_shared_secret2'] = $wancfg['wireless']['auth_server_shared_secret2'];
	if (is_array($wancfg['wireless']['wpa'])) {
		$pconfig['debug_mode'] = $wancfg['wireless']['wpa']['debug_mode'];
		$pconfig['macaddr_acl'] = $wancfg['wireless']['wpa']['macaddr_acl'];
		$pconfig['mac_acl_enable'] = isset($wancfg['wireless']['wpa']['mac_acl_enable']);
		$pconfig['auth_algs'] = $wancfg['wireless']['wpa']['auth_algs'];
		$pconfig['wpa_mode'] = $wancfg['wireless']['wpa']['wpa_mode'];
		$pconfig['wpa_key_mgmt'] = $wancfg['wireless']['wpa']['wpa_key_mgmt'];
		$pconfig['wpa_pairwise'] = $wancfg['wireless']['wpa']['wpa_pairwise'];
		$pconfig['wpa_group_rekey'] = $wancfg['wireless']['wpa']['wpa_group_rekey'];
		$pconfig['wpa_gmk_rekey'] = $wancfg['wireless']['wpa']['wpa_gmk_rekey'];
		$pconfig['wpa_strict_rekey'] = isset($wancfg['wireless']['wpa']['wpa_strict_rekey']);
		$pconfig['passphrase'] = $wancfg['wireless']['wpa']['passphrase'];
		$pconfig['ieee8021x'] = isset($wancfg['wireless']['wpa']['ieee8021x']['enable']);
		$pconfig['rsn_preauth'] = isset($wancfg['wireless']['wpa']['rsn_preauth']);
		$pconfig['ext_wpa_sw'] = $wancfg['wireless']['wpa']['ext_wpa_sw'];
		$pconfig['wpa_enable'] = isset($wancfg['wireless']['wpa']['enable']);
	}
	$pconfig['wep_enable'] = isset($wancfg['wireless']['wep']['enable']);
	$pconfig['mac_acl'] = $wancfg['wireless']['mac_acl'];
	if (is_array($wancfg['wireless']['wep']) && is_array($wancfg['wireless']['wep']['key'])) {
		$i = 1;
		foreach ($wancfg['wireless']['wep']['key'] as $wepkey) {
			$pconfig['key' . $i] = $wepkey['value'];
			if (isset($wepkey['txkey']))
				$pconfig['txkey'] = $i;
			$i++;
		}
		if (!isset($wepkey['txkey']))
			$pconfig['txkey'] = 1;
	}
}

$ipv6_delegation_length = calculate_ipv6_delegation_length($pconfig['track6-interface']);
$ipv6_num_prefix_ids = pow(2, $ipv6_delegation_length);

if ($_POST['apply']) {
	unset($input_errors);
687
	if (!is_subsystem_dirty('interfaces')) {
Ad Schellevis's avatar
Ad Schellevis committed
688
		$intput_errors[] = gettext("You have already applied your settings!");
689
	} else {
Ad Schellevis's avatar
Ad Schellevis committed
690 691
		clear_subsystem_dirty('interfaces');

692 693
		if (file_exists('/tmp/.interfaces.apply')) {
			$toapplylist = unserialize(file_get_contents('/tmp/.interfaces.apply'));
Ad Schellevis's avatar
Ad Schellevis committed
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
			foreach ($toapplylist as $ifapply => $ifcfgo) {
				if (isset($config['interfaces'][$ifapply]['enable'])) {
					interface_bring_down($ifapply, false, $ifcfgo);
					interface_configure($ifapply, true);
				} else
					interface_bring_down($ifapply, true, $ifcfgo);
			}
		}
		/* restart snmp so that it binds to correct address */
		services_snmpd_configure();

		/* sync filter configuration */
		setup_gateways_monitor();

		clear_subsystem_dirty('interfaces');

		filter_configure();

		enable_rrd_graphing();

		if (is_subsystem_dirty('staticroutes') && (system_routing_configure() == 0))
			clear_subsystem_dirty('staticroutes');
	}
717
	@unlink('/tmp/.interfaces.apply');
Ad Schellevis's avatar
Ad Schellevis committed
718 719 720 721 722 723 724 725
	header("Location: interfaces.php?if={$if}");
	exit;
} else if ($_POST && $_POST['enable'] != "yes") {
	unset($wancfg['enable']);
	if (isset($wancfg['wireless']))
		interface_sync_wireless_clones($wancfg, false);
	write_config("Interface {$_POST['descr']}({$if}) is now disabled.");
	mark_subsystem_dirty('interfaces');
726 727
	if (file_exists('/tmp/.interfaces.apply')) {
		$toapplylist = unserialize(file_get_contents('/tmp/.interfaces.apply'));
Ad Schellevis's avatar
Ad Schellevis committed
728 729 730 731 732 733
	} else {
		$toapplylist = array();
	}
	$toapplylist[$if]['ifcfg'] = $wancfg;
	$toapplylist[$if]['ppps'] = $a_ppps;
	/* we need to be able remove IP aliases for IPv6 */
734
	file_put_contents('/tmp/.interfaces.apply', serialize($toapplylist));
Ad Schellevis's avatar
Ad Schellevis committed
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
	header("Location: interfaces.php?if={$if}");
	exit;
} else if ($_POST) {

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

	if (isset($_POST['track6-interface'])) {
		$ipv6_delegation_length = calculate_ipv6_delegation_length($_POST['track6-interface']);
		$ipv6_num_prefix_ids = pow(2, $ipv6_delegation_length);
	}

	if (is_numeric("0x" . $_POST['track6-prefix-id--hex']))
		$pconfig['track6-prefix-id'] = intval($_POST['track6-prefix-id--hex'], 16);
	else
		$pconfig['track6-prefix-id'] = 0;

	/* filter out spaces from descriptions  */
	$_POST['descr'] = remove_bad_chars($_POST['descr']);

	/* okay first of all, cause we are just hiding the PPPoE HTML
	 * fields releated to PPPoE resets, we are going to unset $_POST
	 * vars, if the reset feature should not be used. Otherwise the
	 * data validation procedure below, may trigger a false error
	 * message.
	 */
	if (empty($_POST['pppoe-reset-type'])) {
		unset($_POST['pppoe_pr_type']);
		unset($_POST['pppoe_resethour']);
		unset($_POST['pppoe_resetminute']);
		unset($_POST['pppoe_resetdate']);
		unset($_POST['pppoe_pr_preset_val']);
	}
	/* description unique? */
	foreach ($ifdescrs as $ifent => $ifdescr) {
		if ($if != $ifent && $ifdescr == $_POST['descr']) {
			$input_errors[] = gettext("An interface with the specified description already exists.");
			break;
		}
	}
	/* input validation */
	if (isset($config['dhcpd']) && isset($config['dhcpd'][$if]['enable']) && (! preg_match("/^staticv4/", $_POST['type'])))
		$input_errors[] = gettext("The DHCP Server is active on this interface and it can be used only with a static IP configuration. Please disable the DHCP Server service on this interface first, then change the interface configuration.");
	if (isset($config['dhcpdv6']) && isset($config['dhcpdv6'][$if]['enable']) && (! preg_match("/^staticv6/", $_POST['type6'])))
		$input_errors[] = gettext("The DHCP6 Server is active on this interface and it can be used only with a static IPv6 configuration. Please disable the DHCPv6 Server service on this interface first, then change the interface configuration.");

	switch(strtolower($_POST['type'])) {
		case "staticv4":
			$reqdfields = explode(" ", "ipaddr subnet gateway");
			$reqdfieldsn = array(gettext("IPv4 address"),gettext("Subnet bit count"),gettext("Gateway"));
			do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
			break;
		case "none":
			if(is_array($config['virtualip']['vip'])) {
				foreach ($config['virtualip']['vip'] as $vip) {
					if (is_ipaddrv4($vip['subnet']) && $vip['interface'] == $if)
						$input_errors[] = gettext("This interface is referenced by IPv4 VIPs. Please delete those before setting the interface to 'none' configuration.");
				}
			}
		case "dhcp":
			if (in_array($wancfg['ipaddr'], array("ppp", "pppoe", "pptp", "l2tp")))
				$input_errors[] = sprintf(gettext("You have to reassign the interface to be able to configure as %s."),$_POST['type']);
			break;
		case "ppp":
			$reqdfields = explode(" ", "port phone");
			$reqdfieldsn = array(gettext("Modem Port"),gettext("Phone Number"));
			do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
			break;
		case "pppoe":
			if ($_POST['pppoe_dialondemand']) {
				$reqdfields = explode(" ", "pppoe_username pppoe_password pppoe_dialondemand pppoe_idletimeout");
				$reqdfieldsn = array(gettext("PPPoE username"),gettext("PPPoE password"),gettext("Dial on demand"),gettext("Idle timeout value"));
			} else {
				$reqdfields = explode(" ", "pppoe_username pppoe_password");
				$reqdfieldsn = array(gettext("PPPoE username"),gettext("PPPoE password"));
			}
			do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
			break;
		case "pptp":
			if ($_POST['pptp_dialondemand']) {
				$reqdfields = explode(" ", "pptp_username pptp_password pptp_local pptp_subnet pptp_remote pptp_dialondemand pptp_idletimeout");
				$reqdfieldsn = array(gettext("PPTP username"),gettext("PPTP password"),gettext("PPTP local IP address"),gettext("PPTP subnet"),gettext("PPTP remote IP address"),gettext("Dial on demand"),gettext("Idle timeout value"));
			} else {
				$reqdfields = explode(" ", "pptp_username pptp_password pptp_local pptp_subnet pptp_remote");
				$reqdfieldsn = array(gettext("PPTP username"),gettext("PPTP password"),gettext("PPTP local IP address"),gettext("PPTP subnet"),gettext("PPTP remote IP address"));
			}
			do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
			break;
		case "l2tp":
			if ($_POST['pptp_dialondemand']) {
				$reqdfields = explode(" ", "pptp_username pptp_password pptp_remote pptp_dialondemand pptp_idletimeout");
				$reqdfieldsn = array(gettext("L2TP username"),gettext("L2TP password"),gettext("L2TP remote IP address"),gettext("Dial on demand"),gettext("Idle timeout value"));
			} else {
				$reqdfields = explode(" ", "pptp_username pptp_password pptp_remote");
				$reqdfieldsn = array(gettext("L2TP username"),gettext("L2TP password"),gettext("L2TP remote IP address"));
			}
			do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
			break;
	}
	switch(strtolower($_POST['type6'])) {
		case "staticv6":
			$reqdfields = explode(" ", "ipaddrv6 subnetv6 gatewayv6");
			$reqdfieldsn = array(gettext("IPv6 address"),gettext("Subnet bit count"),gettext("Gateway"));
			do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
			break;
		case "none":
			if(is_array($config['virtualip']['vip'])) {
				foreach ($config['virtualip']['vip'] as $vip) {
					if (is_ipaddrv6($vip['subnet']) && $vip['interface'] == $if)
						$input_errors[] = gettext("This interface is referenced by IPv6 VIPs. Please delete those before setting the interface to 'none' configuration.");
				}
			}
		case "dhcp6":
			if (in_array($wancfg['ipaddrv6'], array()))
				$input_errors[] = sprintf(gettext("You have to reassign the interface to be able to configure as %s."),$_POST['type6']);
			break;
		case "6rd":
			foreach ($ifdescrs as $ifent => $ifdescr) {
				if ($if != $ifent && ($config[interfaces][$ifent]['ipaddrv6'] == $_POST['type6'])) {
					if ($config[interfaces][$ifent]['prefix-6rd'] == $_POST['prefix-6rd']) {
						$input_errors[] = gettext("You can only have one interface configured in 6rd with same prefix.");
						break;
					}
				}
			}
			if (in_array($wancfg['ipaddrv6'], array()))
				$input_errors[] = sprintf(gettext("You have to reassign the interface to be able to configure as %s."),$_POST['type6']);
			break;
		case "6to4":
			foreach ($ifdescrs as $ifent => $ifdescr) {
				if ($if != $ifent && ($config[interfaces][$ifent]['ipaddrv6'] == $_POST['type6'])) {
					$input_errors[] = sprintf(gettext("You can only have one interface configured as 6to4."),$_POST['type6']);
					break;
				}
			}
			if (in_array($wancfg['ipaddrv6'], array()))
				$input_errors[] = sprintf(gettext("You have to reassign the interface to be able to configure as %s."),$_POST['type6']);
			break;
		case "track6":
			/* needs to check if $track6-prefix-id is used on another interface */
			if (in_array($wancfg['ipaddrv6'], array()))
				$input_errors[] = sprintf(gettext("You have to reassign the interface to be able to configure as %s."),$_POST['type6']);

			if ($_POST['track6-prefix-id--hex'] != "" && !is_numeric("0x" . $_POST['track6-prefix-id--hex'])) {
				$input_errors[] = gettext("You must enter a valid hexadecimal number for the IPv6 prefix ID.");
			} else {
				$track6_prefix_id = intval($_POST['track6-prefix-id--hex'], 16);
				if ($track6_prefix_id < 0 || $track6_prefix_id >= $ipv6_num_prefix_ids) {
					$input_errors[] = gettext("You specified an IPv6 prefix ID that is out of range.");
				}
			}
			break;
	}


	/* normalize MAC addresses - lowercase and convert Windows-ized hyphenated MACs to colon delimited */
	$staticroutes = get_staticroutes(true);
	$_POST['spoofmac'] = strtolower(str_replace("-", ":", $_POST['spoofmac']));
	if ($_POST['ipaddr']) {
		if (!is_ipaddrv4($_POST['ipaddr']))
			$input_errors[] = gettext("A valid IPv4 address must be specified.");
		else {
			if (is_ipaddr_configured($_POST['ipaddr'], $if, true))
				$input_errors[] = gettext("This IPv4 address is being used by another interface or VIP.");

			/* Do not accept network or broadcast address, except if subnet is 31 or 32 */
			if ($_POST['subnet'] < 31) {
				if ($_POST['ipaddr'] == gen_subnet($_POST['ipaddr'], $_POST['subnet']))
					$input_errors[] = gettext("This IPv4 address is the network address and cannot be used");
				else if ($_POST['ipaddr'] == gen_subnet_max($_POST['ipaddr'], $_POST['subnet']))
					$input_errors[] = gettext("This IPv4 address is the broadcast address and cannot be used");
			}

			foreach ($staticroutes as $route_subnet) {
				list($network, $subnet) = explode("/", $route_subnet);
				if ($_POST['subnet'] == $subnet && $network == gen_subnet($_POST['ipaddr'], $_POST['subnet'])) {
					$input_errors[] = gettext("This IPv4 address conflicts with a Static Route.");
					break;
				}
				unset($network, $subnet);
			}
		}
	}
	if ($_POST['ipaddrv6']) {
		if (!is_ipaddrv6($_POST['ipaddrv6']))
			$input_errors[] = gettext("A valid IPv6 address must be specified.");
		else {
			if (is_ipaddr_configured($_POST['ipaddrv6'], $if, true))
				$input_errors[] = gettext("This IPv6 address is being used by another interface or VIP.");

			foreach ($staticroutes as $route_subnet) {
				list($network, $subnet) = explode("/", $route_subnet);
				if ($_POST['subnetv6'] == $subnet && $network == gen_subnetv6($_POST['ipaddrv6'], $_POST['subnetv6'])) {
					$input_errors[] = gettext("This IPv6 address conflicts with a Static Route.");
					break;
				}
				unset($network, $subnet);
			}
		}
	}
	if (($_POST['subnet'] && !is_numeric($_POST['subnet'])))
		$input_errors[] = gettext("A valid subnet bit count must be specified.");
	if (($_POST['subnetv6'] && !is_numeric($_POST['subnetv6'])))
		$input_errors[] = gettext("A valid subnet bit count must be specified.");
	if (($_POST['alias-address'] && !is_ipaddrv4($_POST['alias-address'])))
		$input_errors[] = gettext("A valid alias IP address must be specified.");
	if (($_POST['alias-subnet'] && !is_numeric($_POST['alias-subnet'])))
		$input_errors[] = gettext("A valid alias subnet bit count must be specified.");
	if ($_POST['dhcprejectfrom'] && !is_ipaddrv4($_POST['dhcprejectfrom']))
		$input_errors[] = gettext("A valid alias IP address must be specified to reject DHCP Leases from.");
	if (($_POST['gateway'] != "none") || ($_POST['gatewayv6'] != "none")) {
		$match = false;
		foreach($a_gateways as $gateway) {
			if(in_array($_POST['gateway'], $gateway)) {
				$match = true;
			}
		}
		foreach($a_gateways as $gateway) {
			if(in_array($_POST['gatewayv6'], $gateway)) {
				$match = true;
			}
		}
		if(!$match) {
			$input_errors[] = gettext("A valid gateway must be specified.");
		}
	}
	if (($_POST['provider'] && !is_domain($_POST['provider'])))
		$input_errors[] = gettext("The service name contains invalid characters.");
	if (($_POST['pppoe_idletimeout'] != "") && !is_numericint($_POST['pppoe_idletimeout']))
		$input_errors[] = gettext("The idle timeout value must be an integer.");
	if ($_POST['pppoe_resethour'] <> "" && !is_numericint($_POST['pppoe_resethour']) &&
		$_POST['pppoe_resethour'] >= 0 && $_POST['pppoe_resethour'] <=23)
			$input_errors[] = gettext("A valid PPPoE reset hour must be specified (0-23).");
	if ($_POST['pppoe_resetminute'] <> "" && !is_numericint($_POST['pppoe_resetminute']) &&
		$_POST['pppoe_resetminute'] >= 0 && $_POST['pppoe_resetminute'] <=59)
			$input_errors[] = gettext("A valid PPPoE reset minute must be specified (0-59).");
	if ($_POST['pppoe_resetdate'] <> "" && !is_numeric(str_replace("/", "", $_POST['pppoe_resetdate'])))
		$input_errors[] = gettext("A valid PPPoE reset date must be specified (mm/dd/yyyy).");
	if (($_POST['pptp_local'] && !is_ipaddrv4($_POST['pptp_local'])))
		$input_errors[] = gettext("A valid PPTP local IP address must be specified.");
	if (($_POST['pptp_subnet'] && !is_numeric($_POST['pptp_subnet'])))
		$input_errors[] = gettext("A valid PPTP subnet bit count must be specified.");
	if (($_POST['pptp_remote'] && !is_ipaddrv4($_POST['pptp_remote']) && !is_hostname($_POST['gateway'][$iface])))
		$input_errors[] = gettext("A valid PPTP remote IP address must be specified.");
	if (($_POST['pptp_idletimeout'] != "") && !is_numericint($_POST['pptp_idletimeout']))
		$input_errors[] = gettext("The idle timeout value must be an integer.");
	if (($_POST['spoofmac'] && !is_macaddr($_POST['spoofmac'])))
		$input_errors[] = gettext("A valid MAC address must be specified.");
	if ($_POST['mtu']) {
		if ($_POST['mtu'] < 576 || $_POST['mtu'] > 9000)
			$input_errors[] = gettext("The MTU must be greater than 576 bytes and less than 9000.");

		if (stristr($wancfg['if'], "_vlan")) {
			$realhwif_array = get_parent_interface($wancfg['if']);
			// Need code to handle MLPPP if we ever use $realhwif for MLPPP handling
			$parent_realhwif = $realhwif_array[0];
			$parent_if = convert_real_interface_to_friendly_interface_name($parent_realhwif);
			if (!empty($parent_if) && !empty($config['interfaces'][$parent_if]['mtu'])) {
				if ($_POST['mtu'] > intval($config['interfaces'][$parent_if]['mtu']))
					$input_errors[] = gettext("MTU of a vlan should not be bigger than parent interface.");
			}
		} else {
			foreach ($config['interfaces'] as $idx => $ifdata) {
				if (($idx == $if) || !preg_match('/_vlan[0-9]/', $ifdata['if']))
					continue;

				$realhwif_array = get_parent_interface($ifdata['if']);
				// Need code to handle MLPPP if we ever use $realhwif for MLPPP handling
				$parent_realhwif = $realhwif_array[0];

				if ($parent_realhwif != $wancfg['if'])
					continue;

				if (isset($ifdata['mtu']) && $ifdata['mtu'] > $_POST['mtu'])
					$input_errors[] = sprintf(gettext("Interface %s (VLAN) has MTU set to a bigger value"), $ifdata['descr']);
			}
		}
	}
	if ($_POST['mss'] && ($_POST['mss'] < 576))
		$input_errors[] = gettext("The MSS must be greater than 576 bytes.");
	/* Wireless interface? */
	if (isset($wancfg['wireless'])) {
		$reqdfields = array("mode");
		$reqdfieldsn = array(gettext("Mode"));
		if ($_POST['mode'] == 'hostap') {
			$reqdfields[] = "ssid";
			$reqdfieldsn[] = gettext("SSID");
		}
		do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
		check_wireless_mode();
		/* loop through keys and enforce size */
		for ($i = 1; $i <= 4; $i++) {
			if ($_POST['key' . $i]) {
				/* 64 bit */
				if (strlen($_POST['key' . $i]) == 5)
					continue;
				if (strlen($_POST['key' . $i]) == 10) {
					/* hex key */
					if (stristr($_POST['key' . $i], "0x") == false) {
						$_POST['key' . $i] = "0x" . $_POST['key' . $i];
					}
					continue;
				}
				if (strlen($_POST['key' . $i]) == 12) {
					/* hex key */
					if(stristr($_POST['key' . $i], "0x") == false) {
					$_POST['key' . $i] = "0x" . $_POST['key' . $i];
					}
					continue;
				}
				/* 128 bit */
				if (strlen($_POST['key' . $i]) == 13)
					continue;
				if (strlen($_POST['key' . $i]) == 26) {
					/* hex key */
					if (stristr($_POST['key' . $i], "0x") == false)
						$_POST['key' . $i] = "0x" . $_POST['key' . $i];
					continue;
				}
				if(strlen($_POST['key' . $i]) == 28)
					continue;
				$input_errors[] =  gettext("Invalid WEP key size.   Sizes should be 40 (64) bit keys or 104 (128) bit.");
				break;
			}
		}

		if ($_POST['passphrase']) {
			$passlen = strlen($_POST['passphrase']);
			if ($passlen < 8 || $passlen > 63)
				$input_errors[] = gettext("The length of the passphrase should be between 8 and 63 characters.");
		}
	}
	if (!$input_errors) {
		if ($wancfg['ipaddr'] != $_POST['type']) {
			if (in_array($wancfg['ipaddr'], array("ppp", "pppoe", "pptp", "l2tp"))) {
				$wancfg['if'] = $a_ppps[$pppid]['ports'];
				unset($a_ppps[$pppid]);
			} else if ($wancfg['ipaddr'] == "dhcp") {
				kill_dhclient_process($wancfg['if']);
			}
			if ($wancfg['ipaddrv6'] == "dhcp6") {
				$pid = find_dhcp6c_process($wancfg['if']);
1077
				if ($pid) {
1078
					exec('/bin/kill ' . $pid);
1079
				}
Ad Schellevis's avatar
Ad Schellevis committed
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
			}
		}
		$ppp = array();
		if ($wancfg['ipaddr'] != "ppp")
			unset($wancfg['ipaddr']);
		if ($wancfg['ipaddrv6'] != "ppp")
			unset($wancfg['ipaddrv6']);
		unset($wancfg['subnet']);
		unset($wancfg['gateway']);
		unset($wancfg['subnetv6']);
		unset($wancfg['gatewayv6']);
		unset($wancfg['dhcphostname']);
		unset($wancfg['dhcprejectfrom']);
		unset($wancfg['dhcp6-duid']);
		unset($wancfg['dhcp6-ia-pd-len']);
		unset($wancfg['dhcp6-ia-pd-send-hint']);
		unset($wancfg['dhcp6prefixonly']);
		unset($wancfg['dhcp6usev4iface']);
		unset($wancfg['track6-interface']);
		unset($wancfg['track6-prefix-id']);
		unset($wancfg['prefix-6rd']);
		unset($wancfg['prefix-6rd-v4plen']);
		unset($wancfg['gateway-6rd']);

		unset($wancfg['adv_dhcp_pt_timeout']);
		unset($wancfg['adv_dhcp_pt_retry']);
		unset($wancfg['adv_dhcp_pt_select_timeout']);
		unset($wancfg['adv_dhcp_pt_reboot']);
		unset($wancfg['adv_dhcp_pt_backoff_cutoff']);
		unset($wancfg['adv_dhcp_pt_initial_interval']);

		unset($wancfg['adv_dhcp_pt_values']);

		unset($wancfg['adv_dhcp_send_options']);
		unset($wancfg['adv_dhcp_request_options']);
		unset($wancfg['adv_dhcp_required_options']);
		unset($wancfg['adv_dhcp_option_modifiers']);

		unset($wancfg['adv_dhcp_config_advanced']);
		unset($wancfg['adv_dhcp_config_file_override']);
		unset($wancfg['adv_dhcp_config_file_override_path']);

		unset($wancfg['adv_dhcp6_interface_statement_send_options']);
		unset($wancfg['adv_dhcp6_interface_statement_request_options']);
		unset($wancfg['adv_dhcp6_interface_statement_information_only_enable']);
		unset($wancfg['adv_dhcp6_interface_statement_script']);

		unset($wancfg['adv_dhcp6_id_assoc_statement_address_enable']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_address']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_address_id']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_address_pltime']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_address_vltime']);

		unset($wancfg['adv_dhcp6_id_assoc_statement_prefix_enable']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_prefix']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_prefix_id']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_prefix_pltime']);
		unset($wancfg['adv_dhcp6_id_assoc_statement_prefix_vltime']);

		unset($wancfg['adv_dhcp6_prefix_interface_statement_sla_id']);
		unset($wancfg['adv_dhcp6_prefix_interface_statement_sla_len']);

		unset($wancfg['adv_dhcp6_authentication_statement_authname']);
		unset($wancfg['adv_dhcp6_authentication_statement_protocol']);
		unset($wancfg['adv_dhcp6_authentication_statement_algorithm']);
		unset($wancfg['adv_dhcp6_authentication_statement_rdm']);

		unset($wancfg['adv_dhcp6_key_info_statement_keyname']);
		unset($wancfg['adv_dhcp6_key_info_statement_realm']);
		unset($wancfg['adv_dhcp6_key_info_statement_keyid']);
		unset($wancfg['adv_dhcp6_key_info_statement_secret']);
		unset($wancfg['adv_dhcp6_key_info_statement_expire']);

		unset($wancfg['adv_dhcp6_config_advanced']);
		unset($wancfg['adv_dhcp6_config_file_override']);
		unset($wancfg['adv_dhcp6_config_file_override_path']);

		unset($wancfg['pppoe_password']);
		unset($wancfg['pptp_username']);
		unset($wancfg['pptp_password']);
		unset($wancfg['provider']);
		unset($wancfg['ondemand']);
		unset($wancfg['timeout']);
		if (empty($wancfg['pppoe']['pppoe-reset-type']))
			unset($wancfg['pppoe']['pppoe-reset-type']);
		unset($wancfg['local']);

		unset($wancfg['remote']);
		unset($a_ppps[$pppid]['apn']);
		unset($a_ppps[$pppid]['phone']);
		unset($a_ppps[$pppid]['localip']);
		unset($a_ppps[$pppid]['subnet']);
		unset($a_ppps[$pppid]['gateway']);
		unset($a_ppps[$pppid]['pppoe-reset-type']);
		unset($a_ppps[$pppid]['provider']);

		$wancfg['descr'] = remove_bad_chars($_POST['descr']);
		$wancfg['enable'] =  $_POST['enable']  == "yes" ? true : false;

		/* let return_gateways_array() do the magic on dynamic interfaces for us */
		switch($_POST['type']) {
			case "staticv4":
				$wancfg['ipaddr'] = $_POST['ipaddr'];
				$wancfg['subnet'] = $_POST['subnet'];
				if ($_POST['gateway'] != "none") {
					$wancfg['gateway'] = $_POST['gateway'];
				}
				break;
			case "dhcp":
				$wancfg['ipaddr'] = "dhcp";
				$wancfg['dhcphostname'] = $_POST['dhcphostname'];
				$wancfg['alias-address'] = $_POST['alias-address'];
				$wancfg['alias-subnet'] = $_POST['alias-subnet'];
				$wancfg['dhcprejectfrom'] = $_POST['dhcprejectfrom'];

				$wancfg['adv_dhcp_pt_timeout'] = $_POST['adv_dhcp_pt_timeout'];
				$wancfg['adv_dhcp_pt_retry'] = $_POST['adv_dhcp_pt_retry'];
				$wancfg['adv_dhcp_pt_select_timeout'] = $_POST['adv_dhcp_pt_select_timeout'];
				$wancfg['adv_dhcp_pt_reboot'] = $_POST['adv_dhcp_pt_reboot'];
				$wancfg['adv_dhcp_pt_backoff_cutoff'] = $_POST['adv_dhcp_pt_backoff_cutoff'];
				$wancfg['adv_dhcp_pt_initial_interval'] = $_POST['adv_dhcp_pt_initial_interval'];

				$wancfg['adv_dhcp_pt_values'] = $_POST['adv_dhcp_pt_values'];

				$wancfg['adv_dhcp_send_options'] = $_POST['adv_dhcp_send_options'];
				$wancfg['adv_dhcp_request_options'] = $_POST['adv_dhcp_request_options'];
				$wancfg['adv_dhcp_required_options'] = $_POST['adv_dhcp_required_options'];
				$wancfg['adv_dhcp_option_modifiers'] = $_POST['adv_dhcp_option_modifiers'];

				$wancfg['adv_dhcp_config_advanced'] = $_POST['adv_dhcp_config_advanced'];
				$wancfg['adv_dhcp_config_file_override'] = $_POST['adv_dhcp_config_file_override'];
				$wancfg['adv_dhcp_config_file_override_path'] = $_POST['adv_dhcp_config_file_override_path'];

				$wancfg['dhcp_plus'] = $_POST['dhcp_plus'] == "yes" ? true : false;
				if($gateway_item) {
					$a_gateways[] = $gateway_item;
				}
				break;
			case "ppp":
				$a_ppps[$pppid]['ptpid'] = $_POST['ptpid'];
				$a_ppps[$pppid]['type'] = $_POST['type'];
				$a_ppps[$pppid]['if'] = $_POST['type'].$_POST['ptpid'];
				$a_ppps[$pppid]['ports'] = $_POST['port'];
				$a_ppps[$pppid]['username'] = $_POST['username'];
				$a_ppps[$pppid]['password'] = base64_encode($_POST['password']);
				$a_ppps[$pppid]['phone'] = $_POST['phone'];
				$a_ppps[$pppid]['apn'] = $_POST['apn'];
				$wancfg['if'] = $_POST['type'] . $_POST['ptpid'];
				$wancfg['ipaddr'] = $_POST['type'];
				unset($a_ppps[$pppid]['ondemand']);
				unset($a_ppps[$pppid]['idletimeout']);
				break;

			case "pppoe":
				$a_ppps[$pppid]['ptpid'] = $_POST['ptpid'];
				$a_ppps[$pppid]['type'] = $_POST['type'];
				$a_ppps[$pppid]['if'] = $_POST['type'].$_POST['ptpid'];
				if (isset($_POST['ppp_port']))
					$a_ppps[$pppid]['ports'] = $_POST['ppp_port'];
				else
					$a_ppps[$pppid]['ports'] = $wancfg['if'];
				$a_ppps[$pppid]['username'] = $_POST['pppoe_username'];
				$a_ppps[$pppid]['password'] = base64_encode($_POST['pppoe_password']);
1243
				if (isset($_POST['provider']))
Ad Schellevis's avatar
Ad Schellevis committed
1244 1245 1246 1247
					$a_ppps[$pppid]['provider'] = $_POST['provider'];
				else
					$a_ppps[$pppid]['provider'] = true;
				$a_ppps[$pppid]['ondemand'] = $_POST['pppoe_dialondemand'] ? true : false;
1248
				if (isset($_POST['pppoe_idletimeout']))
Ad Schellevis's avatar
Ad Schellevis committed
1249 1250 1251 1252
					$a_ppps[$pppid]['idletimeout'] = $_POST['pppoe_idletimeout'];
				else
					unset($a_ppps[$pppid]['idletimeout']);

1253
				if (isset($_POST['pppoe-reset-type']))
Ad Schellevis's avatar
Ad Schellevis committed
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
					$a_ppps[$pppid]['pppoe-reset-type'] = $_POST['pppoe-reset-type'];
				else
					unset($a_ppps[$pppid]['pppoe-reset-type']);
				$wancfg['if'] = $_POST['type'].$_POST['ptpid'];
				$wancfg['ipaddr'] = $_POST['type'];
				if($gateway_item) {
					$a_gateways[] = $gateway_item;
				}

				break;
			case "pptp":
			case "l2tp":
				$a_ppps[$pppid]['ptpid'] = $_POST['ptpid'];
				$a_ppps[$pppid]['type'] = $_POST['type'];
				$a_ppps[$pppid]['if'] = $_POST['type'].$_POST['ptpid'];
				if (isset($_POST['ppp_port']))
					$a_ppps[$pppid]['ports'] = $_POST['ppp_port'];
				else
					$a_ppps[$pppid]['ports'] = $wancfg['if'];
				$a_ppps[$pppid]['username'] = $_POST['pptp_username'];
				$a_ppps[$pppid]['password'] = base64_encode($_POST['pptp_password']);
				$a_ppps[$pppid]['localip'] = $_POST['pptp_local'];
				$a_ppps[$pppid]['subnet'] = $_POST['pptp_subnet'];
				$a_ppps[$pppid]['gateway'] = $_POST['pptp_remote'];
				$a_ppps[$pppid]['ondemand'] = $_POST['pptp_dialondemand'] ? true : false;
1279
				if (isset($_POST['pptp_idletimeout']))
Ad Schellevis's avatar
Ad Schellevis committed
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
					$a_ppps[$pppid]['idletimeout'] = $_POST['pptp_idletimeout'];
				else
					unset($a_ppps[$pppid]['idletimeout']);
				$wancfg['if'] = $_POST['type'].$_POST['ptpid'];
				$wancfg['ipaddr'] = $_POST['type'];
				if($gateway_item) {
					$a_gateways[] = $gateway_item;
				}
				break;
			case "none":
				break;
		}
		switch($_POST['type6']) {
			case "staticv6":
				$wancfg['ipaddrv6'] = $_POST['ipaddrv6'];
				$wancfg['subnetv6'] = $_POST['subnetv6'];
				if ($_POST['gatewayv6'] != "none") {
					$wancfg['gatewayv6'] = $_POST['gatewayv6'];
				}
				break;
			case "slaac":
				$wancfg['ipaddrv6'] = "slaac";
				break;
			case "dhcp6":
				$wancfg['ipaddrv6'] = "dhcp6";
				$wancfg['dhcp6-duid'] = $_POST['dhcp6-duid'];
				$wancfg['dhcp6-ia-pd-len'] = $_POST['dhcp6-ia-pd-len'];
				if($_POST['dhcp6-ia-pd-send-hint'] == "yes")
					$wancfg['dhcp6-ia-pd-send-hint'] = true;
				if($_POST['dhcp6prefixonly'] == "yes")
					$wancfg['dhcp6prefixonly'] = true;
				if($_POST['dhcp6usev4iface'] == "yes")
					$wancfg['dhcp6usev4iface'] = true;

				$wancfg['adv_dhcp6_interface_statement_send_options'] = $_POST['adv_dhcp6_interface_statement_send_options'];
				$wancfg['adv_dhcp6_interface_statement_request_options'] = $_POST['adv_dhcp6_interface_statement_request_options'];
				$wancfg['adv_dhcp6_interface_statement_information_only_enable'] = $_POST['adv_dhcp6_interface_statement_information_only_enable'];
				$wancfg['adv_dhcp6_interface_statement_script'] = $_POST['adv_dhcp6_interface_statement_script'];

				$wancfg['adv_dhcp6_id_assoc_statement_address_enable'] = $_POST['adv_dhcp6_id_assoc_statement_address_enable'];
				$wancfg['adv_dhcp6_id_assoc_statement_address'] = $_POST['adv_dhcp6_id_assoc_statement_address'];
				$wancfg['adv_dhcp6_id_assoc_statement_address_id'] = $_POST['adv_dhcp6_id_assoc_statement_address_id'];
				$wancfg['adv_dhcp6_id_assoc_statement_address_pltime'] = $_POST['adv_dhcp6_id_assoc_statement_address_pltime'];
				$wancfg['adv_dhcp6_id_assoc_statement_address_vltime'] = $_POST['adv_dhcp6_id_assoc_statement_address_vltime'];

				$wancfg['adv_dhcp6_id_assoc_statement_prefix_enable'] = $_POST['adv_dhcp6_id_assoc_statement_prefix_enable'];
				$wancfg['adv_dhcp6_id_assoc_statement_prefix'] = $_POST['adv_dhcp6_id_assoc_statement_prefix'];
				$wancfg['adv_dhcp6_id_assoc_statement_prefix_id'] = $_POST['adv_dhcp6_id_assoc_statement_prefix_id'];
				$wancfg['adv_dhcp6_id_assoc_statement_prefix_pltime'] = $_POST['adv_dhcp6_id_assoc_statement_prefix_pltime'];
				$wancfg['adv_dhcp6_id_assoc_statement_prefix_vltime'] = $_POST['adv_dhcp6_id_assoc_statement_prefix_vltime'];

				$wancfg['adv_dhcp6_prefix_interface_statement_sla_id'] = $_POST['adv_dhcp6_prefix_interface_statement_sla_id'];
				$wancfg['adv_dhcp6_prefix_interface_statement_sla_len'] = $_POST['adv_dhcp6_prefix_interface_statement_sla_len'];

				$wancfg['adv_dhcp6_authentication_statement_authname'] = $_POST['adv_dhcp6_authentication_statement_authname'];
				$wancfg['adv_dhcp6_authentication_statement_protocol'] = $_POST['adv_dhcp6_authentication_statement_protocol'];
				$wancfg['adv_dhcp6_authentication_statement_algorithm'] = $_POST['adv_dhcp6_authentication_statement_algorithm'];
				$wancfg['adv_dhcp6_authentication_statement_rdm'] = $_POST['adv_dhcp6_authentication_statement_rdm'];

				$wancfg['adv_dhcp6_key_info_statement_keyname'] = $_POST['adv_dhcp6_key_info_statement_keyname'];
				$wancfg['adv_dhcp6_key_info_statement_realm'] = $_POST['adv_dhcp6_key_info_statement_realm'];
				$wancfg['adv_dhcp6_key_info_statement_keyid'] = $_POST['adv_dhcp6_key_info_statement_keyid'];
				$wancfg['adv_dhcp6_key_info_statement_secret'] = $_POST['adv_dhcp6_key_info_statement_secret'];
				$wancfg['adv_dhcp6_key_info_statement_expire'] = $_POST['adv_dhcp6_key_info_statement_expire'];

				$wancfg['adv_dhcp6_config_advanced'] = $_POST['adv_dhcp6_config_advanced'];
				$wancfg['adv_dhcp6_config_file_override'] = $_POST['adv_dhcp6_config_file_override'];
				$wancfg['adv_dhcp6_config_file_override_path'] = $_POST['adv_dhcp6_config_file_override_path'];

				if($gateway_item) {
					$a_gateways[] = $gateway_item;
				}
				break;
			case "6rd":
				$wancfg['ipaddrv6'] = "6rd";
				$wancfg['prefix-6rd'] = $_POST['prefix-6rd'];
				$wancfg['prefix-6rd-v4plen'] = $_POST['prefix-6rd-v4plen'];
				$wancfg['gateway-6rd'] = $_POST['gateway-6rd'];
				if($gateway_item) {
					$a_gateways[] = $gateway_item;
				}
				break;
			case "6to4":
				$wancfg['ipaddrv6'] = "6to4";
				break;
			case "track6":
				$wancfg['ipaddrv6'] = "track6";
				$wancfg['track6-interface'] = $_POST['track6-interface'];
				if ($_POST['track6-prefix-id--hex'] === "")
					$wancfg['track6-prefix-id'] = 0;
				else if (is_numeric("0x" . $_POST['track6-prefix-id--hex']))
					$wancfg['track6-prefix-id'] = intval($_POST['track6-prefix-id--hex'], 16);
				else
					$wancfg['track6-prefix-id'] = 0;
				break;
			case "none":
				break;
		}
		handle_pppoe_reset($_POST);

		if($_POST['blockpriv'] == "yes") {
			$wancfg['blockpriv'] = true;
		} else {
			unset($wancfg['blockpriv']);
		}
		if($_POST['blockbogons'] == "yes") {
			$wancfg['blockbogons'] = true;
		} else {
			unset($wancfg['blockbogons']);
		}
		$wancfg['spoofmac'] = $_POST['spoofmac'];
		if (empty($_POST['mtu'])) {
			unset($wancfg['mtu']);
		} else {
			$wancfg['mtu'] = $_POST['mtu'];
		}
		if (empty($_POST['mss'])) {
			unset($wancfg['mss']);
		} else {
			$wancfg['mss'] = $_POST['mss'];
		}
		if (empty($_POST['mediaopt'])) {
			unset($wancfg['media']);
			unset($wancfg['mediaopt']);
		} else {
			$mediaopts = explode(' ', $_POST['mediaopt']);
			if ($mediaopts[0] != ''){ $wancfg['media'] = $mediaopts[0]; }
			if ($mediaopts[1] != ''){ $wancfg['mediaopt'] = $mediaopts[1]; }
			else { unset($wancfg['mediaopt']); }
		}
		if (isset($wancfg['wireless'])) {
			handle_wireless_post();
		}

		write_config();

1416 1417
		if (file_exists('/tmp/.interfaces.apply')) {
			$toapplylist = unserialize(file_get_contents('/tmp/.interfaces.apply'));
Ad Schellevis's avatar
Ad Schellevis committed
1418 1419 1420 1421 1422
		} else {
			$toapplylist = array();
		}
		$toapplylist[$if]['ifcfg'] = $old_wancfg;
		$toapplylist[$if]['ppps'] = $old_ppps;
1423
		file_put_contents('/tmp/.interfaces.apply', serialize($toapplylist));
Ad Schellevis's avatar
Ad Schellevis committed
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629

		mark_subsystem_dirty('interfaces');

		/* regenerate cron settings/crontab file */
		configure_cron();

		header("Location: interfaces.php?if={$if}");
		exit;
	}

} // end if($_POST)

function handle_wireless_post() {
	global $_POST, $config, $g, $wancfg, $if, $wl_countries_attr, $wlanbaseif;
	if (!is_array($wancfg['wireless']))
		$wancfg['wireless'] = array();
	$wancfg['wireless']['standard'] = $_POST['standard'];
	$wancfg['wireless']['mode'] = $_POST['mode'];
	$wancfg['wireless']['protmode'] = $_POST['protmode'];
	$wancfg['wireless']['ssid'] = $_POST['ssid'];
	$wancfg['wireless']['channel'] = $_POST['channel'];
	$wancfg['wireless']['authmode'] = $_POST['authmode'];
	$wancfg['wireless']['txpower'] = $_POST['txpower'];
	$wancfg['wireless']['distance'] = $_POST['distance'];
	$wancfg['wireless']['regdomain'] = $_POST['regdomain'];
	$wancfg['wireless']['regcountry'] = $_POST['regcountry'];
	$wancfg['wireless']['reglocation'] = $_POST['reglocation'];
	if (!empty($wancfg['wireless']['regdomain']) && !empty($wancfg['wireless']['regcountry'])) {
		foreach($wl_countries_attr as $wl_country) {
			if ($wancfg['wireless']['regcountry'] == $wl_country['ID']) {
				$wancfg['wireless']['regdomain'] = $wl_country['rd'][0]['REF'];
				break;
			}
		}
	}
	if (!is_array($wancfg['wireless']['wpa']))
		$wancfg['wireless']['wpa'] = array();
	$wancfg['wireless']['wpa']['macaddr_acl'] = $_POST['macaddr_acl'];
	$wancfg['wireless']['wpa']['auth_algs'] = $_POST['auth_algs'];
	$wancfg['wireless']['wpa']['wpa_mode'] = $_POST['wpa_mode'];
	$wancfg['wireless']['wpa']['wpa_key_mgmt'] = $_POST['wpa_key_mgmt'];
	$wancfg['wireless']['wpa']['wpa_pairwise'] = $_POST['wpa_pairwise'];
	$wancfg['wireless']['wpa']['wpa_group_rekey'] = $_POST['wpa_group_rekey'];
	$wancfg['wireless']['wpa']['wpa_gmk_rekey'] = $_POST['wpa_gmk_rekey'];
	$wancfg['wireless']['wpa']['passphrase'] = $_POST['passphrase'];
	$wancfg['wireless']['wpa']['ext_wpa_sw'] = $_POST['ext_wpa_sw'];
	$wancfg['wireless']['auth_server_addr'] = $_POST['auth_server_addr'];
	$wancfg['wireless']['auth_server_port'] = $_POST['auth_server_port'];
	$wancfg['wireless']['auth_server_shared_secret'] = $_POST['auth_server_shared_secret'];
	$wancfg['wireless']['auth_server_addr2'] = $_POST['auth_server_addr2'];
	$wancfg['wireless']['auth_server_port2'] = $_POST['auth_server_port2'];
	$wancfg['wireless']['auth_server_shared_secret2'] = $_POST['auth_server_shared_secret2'];

	if ($_POST['persistcommonwireless'] == "yes") {
		if (!is_array($config['wireless']))
			$config['wireless'] = array();
		if (!is_array($config['wireless']['interfaces']))
			$config['wireless']['interfaces'] = array();
		if (!is_array($config['wireless']['interfaces'][$wlanbaseif]))
			$config['wireless']['interfaces'][$wlanbaseif] = array();
	} else if (isset($config['wireless']['interfaces'][$wlanbaseif]))
		unset($config['wireless']['interfaces'][$wlanbaseif]);
	if (isset($_POST['diversity']) && is_numeric($_POST['diversity']))
		$wancfg['wireless']['diversity'] = $_POST['diversity'];
	else if (isset($wancfg['wireless']['diversity']))
		unset($wancfg['wireless']['diversity']);
	if (isset($_POST['txantenna']) && is_numeric($_POST['txantenna']))
		$wancfg['wireless']['txantenna'] = $_POST['txantenna'];
	else if (isset($wancfg['wireless']['txantenna']))
		unset($wancfg['wireless']['txantenna']);
	if (isset($_POST['rxantenna']) && is_numeric($_POST['rxantenna']))
		$wancfg['wireless']['rxantenna'] = $_POST['rxantenna'];
	else if (isset($wancfg['wireless']['rxantenna']))
		unset($wancfg['wireless']['rxantenna']);
	if ($_POST['hidessid_enable'] == "yes")
		$wancfg['wireless']['hidessid']['enable'] = true;
	else if (isset($wancfg['wireless']['hidessid']['enable']))
		unset($wancfg['wireless']['hidessid']['enable']);
	if ($_POST['mac_acl_enable'] == "yes")
		$wancfg['wireless']['wpa']['mac_acl_enable'] = true;
	else if (isset($wancfg['wireless']['wpa']['mac_acl_enable']))
		unset($wancfg['wireless']['wpa']['mac_acl_enable']);
	if ($_POST['rsn_preauth'] == "yes")
		$wancfg['wireless']['wpa']['rsn_preauth'] = true;
	else
		unset($wancfg['wireless']['wpa']['rsn_preauth']);
	if ($_POST['ieee8021x'] == "yes")
		$wancfg['wireless']['wpa']['ieee8021x']['enable'] = true;
	else if (isset($wancfg['wireless']['wpa']['ieee8021x']['enable']))
		unset($wancfg['wireless']['wpa']['ieee8021x']['enable']);
	if ($_POST['wpa_strict_rekey'] == "yes")
		$wancfg['wireless']['wpa']['wpa_strict_rekey'] = true;
	else if (isset($wancfg['wireless']['wpa']['wpa_strict_rekey']))
		unset($wancfg['wireless']['wpa']['wpa_strict_rekey']);
	if ($_POST['debug_mode'] == "yes")
		$wancfg['wireless']['wpa']['debug_mode'] = true;
	else if (isset($wancfg['wireless']['wpa']['debug_mode']))
		sunset($wancfg['wireless']['wpa']['debug_mode']);
	if ($_POST['wpa_enable'] == "yes")
		$wancfg['wireless']['wpa']['enable'] = $_POST['wpa_enable'] = true;
	else if (isset($wancfg['wireless']['wpa']['enable']))
		unset($wancfg['wireless']['wpa']['enable']);
	if ($_POST['wep_enable'] == "yes") {
		if (!is_array($wancfg['wireless']['wep']))
			$wancfg['wireless']['wep'] = array();
		$wancfg['wireless']['wep']['enable'] = $_POST['wep_enable'] = true;
	} else if (isset($wancfg['wireless']['wep']))
		unset($wancfg['wireless']['wep']);
	if ($_POST['wme_enable'] == "yes") {
		if (!is_array($wancfg['wireless']['wme']))
			$wancfg['wireless']['wme'] = array();
		$wancfg['wireless']['wme']['enable'] = $_POST['wme_enable'] = true;
	} else if (isset($wancfg['wireless']['wme']['enable']))
		unset($wancfg['wireless']['wme']['enable']);
	if ($_POST['puremode'] == "11g") {
		if (!is_array($wancfg['wireless']['pureg']))
			$wancfg['wireless']['pureg'] = array();
		$wancfg['wireless']['pureg']['enable'] = true;
	} else if ($_POST['puremode'] == "11n") {
		if (!is_array($wancfg['wireless']['puren']))
			$wancfg['wireless']['puren'] = array();
		$wancfg['wireless']['puren']['enable'] = true;
	} else {
		if (isset($wancfg['wireless']['pureg']))
			unset($wancfg['wireless']['pureg']);
		if (isset($wancfg['wireless']['puren']))
			unset($wancfg['wireless']['puren']);
	}
	if ($_POST['apbridge_enable'] == "yes") {
		if (!is_array($wancfg['wireless']['apbridge']))
			$wancfg['wireless']['apbridge'] = array();
		$wancfg['wireless']['apbridge']['enable'] = $_POST['apbridge_enable'] = true;
	} else if (isset($wancfg['wireless']['apbridge']['enable']))
		unset($wancfg['wireless']['apbridge']['enable']);
	if ($_POST['standard'] == "11g Turbo" || $_POST['standard'] == "11a Turbo") {
		if (!is_array($wancfg['wireless']['turbo']))
			$wancfg['wireless']['turbo'] = array();
		$wancfg['wireless']['turbo']['enable'] = true;
	} else if (isset($wancfg['wireless']['turbo']['enable']))
		unset($wancfg['wireless']['turbo']['enable']);
	$wancfg['wireless']['wep']['key'] = array();
	for ($i = 1; $i <= 4; $i++) {
		if ($_POST['key' . $i]) {
			$newkey = array();
			$newkey['value'] = $_POST['key' . $i];
			if ($_POST['txkey'] == $i)
				$newkey['txkey'] = true;
			$wancfg['wireless']['wep']['key'][] = $newkey;
		}
	}
	interface_sync_wireless_clones($wancfg, true);
}

function check_wireless_mode() {
	global $_POST, $config, $g, $wlan_modes, $wancfg, $if, $wlanif, $wlanbaseif, $old_wireless_mode, $input_errors;

	if ($wancfg['wireless']['mode'] == $_POST['mode'])
		return;

	if (does_interface_exist(interface_get_wireless_clone($wlanbaseif)))
		$clone_count = 1;
	else
		$clone_count = 0;
	if (isset($config['wireless']['clone']) && is_array($config['wireless']['clone'])) {
		foreach ($config['wireless']['clone'] as $clone) {
			if ($clone['if'] == $wlanbaseif)
				$clone_count++;
		}
	}
	if ($clone_count > 1) {
		$old_wireless_mode = $wancfg['wireless']['mode'];
		$wancfg['wireless']['mode'] = $_POST['mode'];
		if (!interface_wireless_clone("{$wlanif}_", $wancfg)) {
			$input_errors[] = sprintf(gettext("Unable to change mode to %s.  You may already have the maximum number of wireless clones supported in this mode."), $wlan_modes[$wancfg['wireless']['mode']]);
		} else {
			mwexec("/sbin/ifconfig " . escapeshellarg($wlanif) . "_ destroy");
		}
		$wancfg['wireless']['mode'] = $old_wireless_mode;
	}
}

// Find all possible media options for the interface
$mediaopts_list = array();
$intrealname = $config['interfaces'][$if]['if'];
exec("/sbin/ifconfig -m $intrealname | grep \"media \"", $mediaopts);
foreach ($mediaopts as $mediaopt){
	preg_match("/media (.*)/", $mediaopt, $matches);
	if (preg_match("/(.*) mediaopt (.*)/", $matches[1], $matches1)){
		// there is media + mediaopt like "media 1000baseT mediaopt full-duplex"
		array_push($mediaopts_list, $matches1[1] . " " . $matches1[2]);
	}else{
		// there is only media like "media 1000baseT"
		array_push($mediaopts_list, $matches[1]);
	}
}

$pgtitle = array(gettext("Interfaces"), $pconfig['descr']);
$shortcut_section = "interfaces";

$closehead = false;
include("head.inc");
$types4 = array("none" => gettext("None"), "staticv4" => gettext("Static IPv4"), "dhcp" => gettext("DHCP"), "ppp" => gettext("PPP"), "pppoe" => gettext("PPPoE"), "pptp" => gettext("PPTP"), "l2tp" => gettext("L2TP"));
$types6 = array("none" => gettext("None"), "staticv6" => gettext("Static IPv6"), "dhcp6" => gettext("DHCP6"), "slaac" => gettext("SLAAC"), "6rd" => gettext("6rd Tunnel"), "6to4" => gettext("6to4 Tunnel"), "track6" => gettext("Track Interface"));

?>

Ad Schellevis's avatar
Ad Schellevis committed
1630 1631
<body>

Ad Schellevis's avatar
Ad Schellevis committed
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
<script type="text/javascript" src="/javascript/numericupdown/js/numericupdown.js"></script>
<link href="/javascript/numericupdown/css/numericupdown.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/javascript/datepicker/js/datepicker.js"></script>
<link href="/javascript/datepicker/css/datepicker.css" rel="stylesheet" type="text/css"/>

<script type="text/javascript">
//<![CDATA[
	function updateType(t) {
		switch(t) {
			case "none": {
				jQuery('#staticv4, #dhcp, #pppoe, #pptp, #ppp').hide();
				break;
			}
			case "staticv4": {
				jQuery('#none, #dhcp, #pppoe, #pptp, #ppp').hide();
				break;
			}
			case "dhcp": {
				jQuery('#none, #staticv4, #pppoe, #pptp, #ppp').hide();
				break;
			}
			case "ppp": {
				jQuery('#none, #staticv4, #dhcp, #pptp, #pppoe').hide();
				country_list();
				break;
			}
			case "pppoe": {
				jQuery('#none, #staticv4, #dhcp, #pptp, #ppp').hide();
				break;
			}
			case "l2tp":
			case "pptp": {
				jQuery('#none, #staticv4, #dhcp, #pppoe, #ppp').hide();
				jQuery('#pptp').show();
				break;
			}
		}
		if (t != "l2tp" && t != "pptp")
			jQuery('#'+t).show();
	}
	function updateTypeSix(t) {
		if (!isNaN(t[0])) t = '_' + t;
		switch(t) {
			case "none": {
				jQuery('#staticv6, #dhcp6, #_6rd, #_6to4, #track6, #slaac').hide();
				break;
			}
			case "staticv6": {
				jQuery('#none, #dhcp6, #_6rd, #_6to4, #track6, #slaac').hide();
				break;
			}
			case "slaac": {
				jQuery('#none, #staticv6, #_6rd, #_6to4, #track6, #dhcp6').hide();
				break;
			}
			case "dhcp6": {
				jQuery('#none, #staticv6, #_6rd, #_6to4, #track6, #slaac').hide();
				break;
			}
			case "_6rd": {
				jQuery('#none, #dhcp6, #staticv6, #_6to4, #track6, #slaac').hide();
				break;
			}
			case "_6to4": {
				jQuery('#none, #dhcp6, #staticv6, #_6rd, #track6, #slaac').hide();
				break;
			}
			case "track6": {
				jQuery('#none, #dhcp6, #staticv6, #_6rd, #_6to4, #slaac').hide();
				break;
			}
		}
		if (t != "l2tp" && t != "pptp")
			jQuery('#'+t).show();
	}

	function show_allcfg(obj) {
		if (obj.checked)
			jQuery('#allcfg').show();
		else
			jQuery('#allcfg').hide();
	}

	function show_reset_settings(reset_type) {
		if (reset_type == 'preset') {
			jQuery('#pppoepresetwrap').show();
			jQuery('#pppoecustomwrap').hide();
		}
		else if (reset_type == 'custom') {
			jQuery('#pppoecustomwrap').show();
			jQuery('#pppoepresetwrap').hide();
		} else {
			jQuery('#pppoecustomwrap').hide();
			jQuery('#pppoepresetwrap').hide();
		}
	}
	function show_mon_config() {
		jQuery("#showmonbox").html('');
		jQuery('#showmon').css('display','block');
	}

	function openwindow(url) {
		var oWin = window.open(url,"pfSensePop","width=620,height=400,top=150,left=150");
		if (oWin==null || typeof(oWin)=="undefined")
			return false;
		else
			return true;
	}
	function country_list() {
		jQuery('#country').children().remove();
		jQuery('#provider_list').children().remove();
		jQuery('#providerplan').children().remove();
		jQuery.ajax("getserviceproviders.php",{
			success: function(response) {
				var responseTextArr = response.split("\n");
				responseTextArr.sort();
				responseTextArr.each( function(value) {
					var option = new Element('option');
					country = value.split(":");
					option.text = country[0];
					option.value = country[1];
					jQuery('#country').append(option);
				});
			}
		});
		jQuery('#trcountry').css('display',"table-row");
	}

	function providers_list() {
		jQuery('#provider_list').children().remove();
		jQuery('#providerplan').children().remove();
		jQuery.ajax("getserviceproviders.php",{
			type: 'post',
			data: {country : jQuery('#country').val()},
			success: function(response) {
				var responseTextArr = response.split("\n");
				responseTextArr.sort();
				responseTextArr.each( function(value) {
					var option = new Element('option');
					option.text = value;
					option.value = value;
					jQuery('#provider_list').append(option);
				});
			}
		});
		jQuery('#trprovider').css("display","table-row");
		jQuery('#trproviderplan').css("display","none");
	}

	function providerplan_list() {
		jQuery('#providerplan').children().remove();
		jQuery('#providerplan').append( new Element('option') );
		jQuery.ajax("getserviceproviders.php",{
			type: 'post',
			data: {country : jQuery('#country').val(), provider : jQuery('#provider_list').val()},
			success: function(response) {
				var responseTextArr = response.split("\n");
				responseTextArr.sort();
				responseTextArr.each( function(value) {
					if(value != "") {
						providerplan = value.split(":");

						var option = new Element('option');
						option.text = providerplan[0] + " - " + providerplan[1];
						option.value = providerplan[1];
						jQuery('#providerplan').append(option);
					}
				});
			}
		});
		jQuery('#trproviderplan').css("display","table-row");
	}

	function prefill_provider() {
		jQuery.ajax("getserviceproviders.php",{
			type: 'post',
			data: {country : jQuery('#country').val(), provider : jQuery('#provider_list').val(), plan : jQuery('#providerplan').val()},
			success: function(data,textStatus,response) {
				var xmldoc = response.responseXML;
				var provider = xmldoc.getElementsByTagName('connection')[0];
				jQuery('#username').val('');
				jQuery('#password').val('');
				if(provider.getElementsByTagName('apn')[0].firstChild.data == "CDMA") {
					jQuery('#phone').val('#777');
					jQuery('#apn').val('');
				} else {
					jQuery('#phone').val('*99#');
					jQuery('#apn').val(provider.getElementsByTagName('apn')[0].firstChild.data);
				}
				username = provider.getElementsByTagName('username')[0].firstChild.data;
				password = provider.getElementsByTagName('password')[0].firstChild.data;
				jQuery('#username').val(username);
				jQuery('#password').val(password);
			}
		});
	}

//]]>
</script>
Ad Schellevis's avatar
Ad Schellevis committed
1831 1832 1833 1834 1835

<?php include("fbegin.inc"); ?>


	<section class="page-content-main">
1836
		<div class="container-fluid">
Ad Schellevis's avatar
Ad Schellevis committed
1837
			<div class="row">
1838

1839
				<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
Ad Schellevis's avatar
Ad Schellevis committed
1840
				<?php if (is_subsystem_dirty('interfaces')): ?><p>
1841
				<?php print_info_box_np(sprintf(gettext("The %s configuration has been changed."),$wancfg['descr'])."<p>".gettext("You must apply the changes in order for them to take effect.")."</p><p>".gettext("Don't forget to adjust the DHCP Server range if needed after applying."));?><br />
Ad Schellevis's avatar
Ad Schellevis committed
1842
				<?php endif; ?>
1843
				<?php if (isset($savemsg)) print_info_box($savemsg); ?>
1844 1845 1846 1847 1848 1849

			    <section class="col-xs-12">

                    <div class="content-box">

						<div class="content-box-main">
Ad Schellevis's avatar
Ad Schellevis committed
1850
							<form action="interfaces.php" method="post" name="iform" id="iform">
1851

1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
								<div class="table-responsive">

									<table class="table table-striped">
									<thead>
										<tr>
											<th colspan="2"><?=gettext("General configuration"); ?></th>
										</tr>
									</thead>
									<tbody>
										<tr>
											<td width="22%" valign="top" class="vncell"><?=gettext("Enable"); ?></td>
											<td width="78%" class="vtable">
												<input name="enable" type="checkbox" value="yes" <?php if ($pconfig['enable'] == true) echo "checked=\"checked\""; ?> onclick="show_allcfg(this);" />
											<strong><?=gettext("Enable Interface"); ?></strong>
											</td>
										</tr>
									</tbody>
									</table>
								</div>
								<div class="table-responsive">

									<div style="display:none;" id="allcfg">

										<table class="table table-striped">
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("Description"); ?></td>
												<td width="78%" class="vtable">
													<input name="descr" type="text" class="form-control unknown" id="descr" size="30" value="<?=htmlspecialchars($pconfig['descr']);?>" />
													<br /><span class="vexpl"><?= gettext("Enter a description (name) for the interface here."); ?></span>
												</td>
											</tr>
											<tr>
												<td valign="middle" class="vncell"><strong><?=gettext("IPv4 Configuration Type"); ?></strong></td>
												<td class="vtable">
1886
												<select name="type" onchange="updateType(this.value);" <?php echo $type_disabled; ?> class="selectpicker" data-style="btn-default" id="type">
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901
													<?php
														foreach ($types4 as $key => $opt) {
															echo "<option onclick=\"updateType('{$key}');\"";
															if ($key == $pconfig['type'])
																echo " selected=\"selected\"";
															echo " value=\"{$key}\" >" . htmlspecialchars($opt);
															echo "</option>";
														}
													?>
													</select>
												</td>
											</tr>
											<tr>
												<td valign="middle" class="vncell"><strong><?=gettext("IPv6 Configuration Type"); ?></strong></td>
												<td class="vtable">
1902
												<select name="type6" onchange="updateTypeSix(this.value);" <?php echo $type_disabled; ?> class="selectpicker" data-style="btn-default" id="type6">
1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
													<?php
														foreach ($types6 as $key => $opt) {
															echo "<option onclick=\"updateTypeSix('{$key}');\"";
															if ($key == $pconfig['type6'])
																echo " selected=\"selected\"";
															echo " value=\"{$key}\" >" . htmlspecialchars($opt);
															echo "</option>";
														}
													?>
													</select>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("MAC address"); ?></td>
												<td class="vtable">
													<input name="spoofmac" type="text" class="form-control unknown" id="spoofmac" size="30" value="<?=htmlspecialchars($pconfig['spoofmac']);?>" />
													<?php
														$ip = getenv('REMOTE_ADDR');
														$mac = `/usr/sbin/arp -an | grep {$ip} | cut -d" " -f4`;
														$mac = str_replace("\n","",$mac);
														if($mac):
													?>
														<a onclick="document.getElementById('spoofmac').value='<?=$mac?>';" href="#"><?=gettext("Insert my local MAC address"); ?></a>
													<?php endif; ?>
													<br />
													<?=gettext("This field can be used to modify (\"spoof\") the MAC " .
													"address of this interface"); ?><br />
													<?=gettext("(may be required with some cable connections)"); ?><br />
													<?=gettext("Enter a MAC address in the following format: xx:xx:xx:xx:xx:xx " .
													"or leave blank"); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("MTU"); ?></td>
												<td class="vtable">
													<input name="mtu" type="text" class="form-control unknown" id="mtu" size="8" value="<?=htmlspecialchars($pconfig['mtu']);?>" />
													<br />
													<?php
														print gettext("If you leave this field blank, the adapter's default MTU will " .
														"be used. This is typically 1500 bytes but can vary in some circumstances.");
													?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("MSS"); ?></td>
												<td class="vtable">
													<input name="mss" type="text" class="form-control unknown" id="mss" size="8" value="<?=htmlspecialchars($pconfig['mss']);?>" />
													<br />
													<?=gettext("If you enter a value in this field, then MSS clamping for " .
													"TCP connections to the value entered above minus 40 (TCP/IP " .
													"header size) will be in effect."); ?>
												</td>
											</tr>
Ad Schellevis's avatar
Ad Schellevis committed
1956
											<?php
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
											if (count($mediaopts_list) > 0){
											$mediaopt_from_config = $config['interfaces'][$if]['media'] . ' ' . $config['interfaces'][$if]['mediaopt'];
											echo "<tr>";
												echo '<td valign="top" class="vncell">' . gettext("Speed and duplex") . '</td>';
												echo '<td class="vtable">';
												echo '<div id="showadvmediabox"';
													if ($mediaopt_from_config != 'autoselect ' && $mediaopt_from_config != ' ') echo " style='display:none'>";
													else echo '>';
													echo '<input type="button" onclick="show_advanced_media()" class="btn btn-default btn-xs" value="' . gettext("Advanced") . '" /> - ' . gettext("Show advanced option");
												echo "</div>";
												echo '<div id="showmediaadv" ';
												if ($mediaopt_from_config == 'autoselect ' || $mediaopt_from_config == ' ') echo "style='display:none'>";
												else echo '>';
1970
													echo '<select name="mediaopt" class="selectpicker" data-style="btn-default" id="mediaopt">';
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
													print "<option value=\"\">Default (no preference, typically autoselect)</option>";
													print "<option value=\"\">------- Media Supported by this interface -------</option>";
													foreach($mediaopts_list as $mediaopt){
														if ($mediaopt != rtrim($mediaopt_from_config)){
															print "<option value=\"$mediaopt\">" . gettext("$mediaopt") . "</option>";
														} else {
															print "<option value=\"$mediaopt\" selected=\"selected\">" . gettext("$mediaopt") . "</option>";
														}
													}
													echo '</select><br />';
													echo gettext("Here you can explicitly set speed and duplex mode for this interface. WARNING: You MUST leave this set to autoselect (automatically negotiate speed) unless the port this interface connects to has its speed and duplex forced.");
											echo '</div>';
												echo '</td>';
											echo '</tr>';
Ad Schellevis's avatar
Ad Schellevis committed
1985
											}
1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002
											?>

											<tr style="display:none;" id="none"><td style="display:none;"></td></tr>

											<tr style="display:none;" id="staticv4">
												<td colspan="2" style="padding:0px;">
													<a name="gatewaysection"></a>
													<table class="table table-striped" summary="staticv4">
													<thead>
														<tr>
															<th colspan="2" valign="top" class="listtopic"><?=gettext("Static IPv4 configuration"); ?></th>
														</tr>
													</thead>
													<tbody>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("IPv4 address"); ?></td>
															<td width="78%" class="vtable">
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025
																<table>
																	<tr>
																		<td width="262px">
																			<input name="ipaddr" type="text" class="form-control unknown" id="ipaddr" size="20" value="<?=htmlspecialchars($pconfig['ipaddr']);?>" />
																		</td>
																		<td width="20px" align="middle">
																			/
																		</td>
																		<td>
																			<select name="subnet" class="selectpicker" data-style="btn-default" data-width="auto" id="subnet">
																				<?php
																				for ($i = 32; $i > 0; $i--) {
																					if($i <> 31) {
																						echo "<option value=\"{$i}\" ";
																						if ($i == $pconfig['subnet']) echo "selected=\"selected\"";
																						echo ">" . $i . "</option>";
																					}
																				}
																				?>
																			</select>
																		</td>
																	</tr>
																</table>
2026 2027 2028 2029 2030
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("IPv4 Upstream Gateway"); ?></td>
															<td width="78%" class="vtable">
2031
																<select name="gateway" class="selectpicker" data-style="btn-default" id="gateway">
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
																	<option value="none" selected="selected"><?=gettext("None"); ?></option>
																		<?php
																		if(count($a_gateways) > 0) {
																			foreach ($a_gateways as $gateway) {
																				if(($gateway['interface'] == $if)  && (is_ipaddrv4($gateway['gateway']))) {
																		?>
																				<option value="<?=$gateway['name'];?>" <?php if ($gateway['name'] == $pconfig['gateway']) echo "selected=\"selected\""; ?>>
																					<?=htmlspecialchars($gateway['name']) . " - " . htmlspecialchars($gateway['gateway']);?>
																				</option>
																		<?php
																				}
																			}
																		}
																		?>
																</select>
2047
																<span class="text-default">-or</span>  <strong><a onclick="show_add_gateway();" href="#gatewaysection"><?=gettext("add a new one."); ?></a></strong>
2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
																<br />
																<div id='addgwbox'>
																	<?=gettext("If this interface is an Internet connection, select an existing Gateway from the list or add a new one using the link above."); ?><br />
																	<?=gettext("On local LANs the upstream gateway should be \"none\"."); ?>
																</div>
																<div id='notebox'>
																</div>
																<div id="status">
																</div>
																<div style="display:none" id="addgateway">
																	<p>&nbsp;</p>
																	<table class="table table-striped" summary="addgateway">
																		<tbody>
																			<tr>
																				<td colspan="2" valign="top" class="listtopic"><b><?=gettext("Add new gateway"); ?></b></td>
																			</tr>
																			<?php
																			if($if == "wan" || $if == "WAN")
																				$checked = " checked=\"checked\"";
																			?>
																			<tr>
																				<td width="22%"><?=gettext("Default gateway:"); ?></td><td width="78%" class="vtable"><input class="form-control" type="checkbox" id="defaultgw" name="defaultgw"<?=$checked?> /></td>
																			</tr>
																			<tr>
2072
																				<td width="22%"><?=gettext("Gateway Name:"); ?></td><td width="78%" class="vtable"><input class="form-control" type="text" id="name" name="name" value="<?=$wancfg['descr'] . "GW"?>" /></td>
2073 2074
																			</tr>
																			<tr>
2075
																				<td width="22%"><?=gettext("Gateway IPv4:"); ?></td><td width="78%" class="vtable"><input class="form-control" type="text" id="gatewayip" name="gatewayip" /></td>
2076 2077
																			</tr>
																			<tr>
2078
																				<td width="22%"><?=gettext("Description:"); ?></td><td width="78%" class="vtable"><input class="form-control" type="text" id="gatewaydescr" name="gatewaydescr" /></td>
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
																			</tr>
																			<tr>
																				<td width="22%"></td>
																				<td width="78%">
																					<div id='savebuttondiv'>
																						<input class="btn btn-primary" id="gwsave" type="button" value="<?=gettext("Save Gateway"); ?>" onclick='hide_add_gatewaysave();' />
																						<input class="btn btn-default" id="gwcancel" type="button" value="<?=gettext("Cancel"); ?>" onclick='hide_add_gateway();' />
																					</div>
																				</td>
																			</tr>
																		</tbody>
																	</table>
																</div>
															</td>
														</tr>
													</tbody>
													</table>
												</td>
											</tr>
											<tr style="display:none;" id="staticv6">
												<td colspan="2" style="padding:0px;">
													<a name="gatewayv6section"></a>
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="staticv6"  class="table table-striped">

														<thead>
														<tr>
															<th colspan="2" valign="top" class="listtopic"><?=gettext("Static IPv6 configuration"); ?></th>
														</tr>
														</thead>
														<tbody>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("IPv6 address"); ?></td>
															<td width="78%" class="vtable">
2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134
																<table>
																	<tr>
																		<td width="257px">
																			<input name="ipaddrv6" type="text" class="form-control unknown" id="ipaddrv6" size="28" value="<?=htmlspecialchars($pconfig['ipaddrv6']);?>" />
																		</td>
																		<td width="20px" align="middle">
																		/
																		</td>
																		<td>
																			<select name="subnetv6" class="selectpicker" data-style="btn-default" data-width="auto" id="subnetv6">
																				<?php
																				for ($i = 128; $i > 0; $i--) {
																					if($i <> 127) {
																						echo "<option value=\"{$i}\" ";
																						if ($i == $pconfig['subnetv6']) echo "selected=\"selected\"";
																						echo ">" . $i . "</option>";
																					}
																				}
																				?>
																			</select>
																		</td>
																	</tr>
																</table>
2135 2136 2137 2138 2139
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("IPv6 Upstream Gateway"); ?></td>
															<td width="78%" class="vtable">
2140
																<select name="gatewayv6" class="selectpicker" data-style="btn-default" id="gatewayv6">
2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169
																	<option value="none" selected="selected"><?=gettext("None"); ?></option>
																		<?php
																		if(count($a_gateways) > 0) {
																			foreach ($a_gateways as $gateway) {
																				if(($gateway['interface'] == $if) && (is_ipaddrv6($gateway['gateway']))) {
																		?>
																				<option value="<?=$gateway['name'];?>" <?php if ($gateway['name'] == $pconfig['gatewayv6']) echo "selected=\"selected\""; ?>>
																					<?=htmlspecialchars($gateway['name']) . " - " . htmlspecialchars($gateway['gateway']);?>
																				</option>
																		<?php
																				}
																			}
																		}
																		?>
																</select>
																- or <strong><a onclick="show_add_gateway_v6();" href="#gatewayv6section"><?=gettext("add a new one."); ?></a></strong>
																<br />
																<div id='addgwboxv6'>
																	<?=gettext("If this interface is an Internet connection, select an existing Gateway from the list or add a new one using the link above."); ?><br />
																	<?=gettext("On local LANs the upstream gateway should be \"none\"."); ?>
																</div>
																<div id='noteboxv6'>
																</div>
																<div id="statusv6">
																</div>
																<div style="display:none" id="addgatewayv6">
																	<p>&nbsp;</p>
																	<table class="table table-striped" summary="addgatewayv6">
																		<tbody>
Ad Schellevis's avatar
Ad Schellevis committed
2170 2171 2172 2173 2174 2175 2176 2177 2178
																			<tr>
																				<td colspan="2"><center><b><font color="white"><?=gettext("Add new v6 gateway:"); ?></font></b></center></td>
																			</tr>
																			<tr><td>&nbsp;</td></tr>
																			<?php
																			if($if == "wan" || $if == "WAN")
																				$checked = " checked=\"checked\"";
																			?>
																			<tr>
2179
																				<td width="22%"><?=gettext("Default v6 gateway:"); ?></td><td width="78%"><input type="checkbox" id="defaultgwv6" name="defaultgwv6"<?=$checked?> /></td>
Ad Schellevis's avatar
Ad Schellevis committed
2180 2181
																			</tr>
																			<tr>
2182
																				<td width="22%"><?=gettext("Gateway Name IPv6:"); ?></td><td width="78%"><input id="namev6" type="text" name="namev6" value="<?=$wancfg['descr'] . "GWv6"?>" /></td>
Ad Schellevis's avatar
Ad Schellevis committed
2183 2184
																			</tr>
																			<tr>
2185
																				<td width="22%"><?=gettext("Gateway IPv6:"); ?></td><td width="78%"><input id="gatewayipv6" type="text" name="gatewayipv6" /></td>
Ad Schellevis's avatar
Ad Schellevis committed
2186 2187
																			</tr>
																			<tr>
2188
																				<td width="22%"><?=gettext("Description:"); ?></td><td width="78%"><input id="gatewaydescrv6" type="text" name="gatewaydescrv6" /></td>
Ad Schellevis's avatar
Ad Schellevis committed
2189 2190
																			</tr>
																			<tr>
2191 2192
																				<td width="22%"></td>
																				<td width="78%">
Ad Schellevis's avatar
Ad Schellevis committed
2193
																						<div id='savebuttondivv6'>
2194 2195
																							<input class="btn btn-primary" id="gwsavev6" type="button" value="<?=gettext("Save Gateway"); ?>" onclick='hide_add_gatewaysave_v6();' />
																							<input class="btn btn-default" id="gwcancelv6" type="button" value="<?=gettext("Cancel"); ?>" onclick='hide_add_gateway_v6();' />
Ad Schellevis's avatar
Ad Schellevis committed
2196 2197 2198
																						</div>
																				</td>
																			</tr>
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245
																		</tbody>
																	</table>
																</div>
															</td>
														</tr>
														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>
														</tbody>
													</table>
												</td>
											</tr>
											<tr style="display:none;" id="dhcp">
												<td colspan="2" style="padding: 0px;">
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="dhcp">
														<tr>
														<td><?=gettext("DHCP client configuration");?></td>
															<td valign="top" class="listtopic"><?=gettext(' <input name="adv_dhcp_config_advanced" type="checkbox" id="adv_dhcp_config_advanced" value="" onclick="show_adv_dhcp_config(this)" /> ' .
															" Advanced &nbsp; &nbsp; " .
															' <input name="adv_dhcp_config_file_override" type="checkbox" id="adv_dhcp_config_file_override" value="" onclick="show_adv_dhcp_config(this)" /> ' .
															" Config File Override &nbsp; &nbsp; "); ?>
															</td>
														</tr>
														<!-- Uncomment to expose DHCP+ in GUI
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Enable DHCP+"); ?></td>
															<td width="78%" class="vtable">
																<input name="dhcp_plus" type="checkbox" value="yes" <?php if ($pconfig['dhcp_plus'] == true) echo "checked=\"checked\""; ?> />
															<strong><?=gettext("Enable DHCP+L2TP or DHCP+PPTP."); ?></strong>
															<br />
															<?=gettext("Status changes on this interface will trigger reconfiguration (if necessary) of the associated PPTP/L2TP link."); ?>
															</td>
														</tr>
														-->
														<tr style='display:none' id="show_basic_dhcphostname">
															<td width="22%" valign="top" class="vncell"><?=gettext("Hostname"); ?></td>
															<td width="78%" class="vtable">
																<input name="dhcphostname" type="text" class="form-control unknown" id="dhcphostname" size="40" value="<?=htmlspecialchars($pconfig['dhcphostname']);?>" />
																<br />
																<?=gettext("The value in this field is sent as the DHCP client identifier " .
																"and hostname when requesting a DHCP lease. Some ISPs may require " .
																"this (for client identification)."); ?>
															</td>
														</tr>
														<tr style='display:none' id="show_basic_dhcpalias-address">
															<td width="22%" valign="top" class="vncell"><?=gettext("Alias IPv4 address"); ?></td>
															<td width="78%" class="vtable">
2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267
																<table>
																	<tr>
																		<td>
																			<input name="alias-address" type="text" class="form-control unknown" id="alias-address" size="20" value="<?=htmlspecialchars($pconfig['alias-address']);?>" />
																		</td>
																		<td>
																			<select name="alias-subnet" class="selectpicker" data-style="btn-default" id="alias-subnet" data-width="auto">
																				<?php
																				for ($i = 32; $i > 0; $i--) {
																					if($i <> 31) {
																						echo "<option value=\"{$i}\" ";
																						if ($i == $pconfig['alias-subnet']) echo "selected=\"selected\"";
																						echo ">" . $i . "</option>";
																					}
																				}
																				?>
																			</select>
																			<?=gettext("The value in this field is used as a fixed alias IPv4 address by the " .
																			"DHCP client."); ?>
																		</td>
																	</tr>
																</table>
2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
															</td>
														</tr>
														<tr style='display:none' id="show_basic_dhcprejectlease">
															<td width="22%" valign="top" class="vncell"><?=gettext("Reject Leases From"); ?></td>
															<td width="78%" class="vtable">
																<input name="dhcprejectfrom" type="text" class="form-control unknown" id="dhcprejectfrom" size="20" value="<?=htmlspecialchars($pconfig['dhcprejectfrom']);?>" />
																<br />
																<?=gettext("If there is a certain upstream DHCP server that should be ignored, place the IP address or subnet of the DHCP server to be ignored here."); ?>
																<?=gettext("This is useful for rejecting leases from cable modems that offer private IPs when they lose upstream sync."); ?>
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp_protocol_timing">
															<td width="22%" valign="top" class="vncell"><a target="_blank" href="http://www.freebsd.org/cgi/man.cgi?query=dhclient.conf&amp;sektion=5#PROTOCOL_TIMING"><?=gettext("Protocol Timing"); ?></a></td>
															<td width="48%" class="vtable">
																Timeout: <input name="adv_dhcp_pt_timeout" type="text" class="form-control unknown" id="adv_dhcp_pt_timeout" size="2" value="<?=htmlspecialchars($pconfig['adv_dhcp_pt_timeout']);?>" onchange="customdhcpptcheckradiobuton(document.iform.adv_dhcp_pt_values, '');" />
																Retry:   <input name="adv_dhcp_pt_retry"   type="text" class="form-control unknown" id="adv_dhcp_pt_retry"   size="2" value="<?=htmlspecialchars($pconfig['adv_dhcp_pt_retry']);?>"   onchange="customdhcpptcheckradiobuton(document.iform.adv_dhcp_pt_values, '');" />
																Select Timeout: <input name="adv_dhcp_pt_select_timeout" type="text" class="form-control unknown" id="adv_dhcp_pt_select_timeout" size="2" value="<?=htmlspecialchars($pconfig['adv_dhcp_pt_select_timeout']);?>" onchange="customdhcpptcheckradiobuton(document.iform.adv_dhcp_pt_values, '');" />

																&nbsp; &nbsp; &nbsp; &nbsp;
																Presets: &nbsp;
																<input name="adv_dhcp_pt_values" type="radio" value="DHCP"	id="customdhcpptdhcpdefaults"	onclick="customdhcpptsetvalues(this, iform);" />FreeBSD Default &nbsp;
																<input name="adv_dhcp_pt_values" type="radio" value="Clear"	id="customdhcpptclear"		onclick="customdhcpptsetvalues(this, iform);" />Clear

																<br />
																Reboot: <input name="adv_dhcp_pt_reboot" type="text" class="form-control unknown" id="adv_dhcp_pt_reboot" size="2" value="<?=htmlspecialchars($pconfig['adv_dhcp_pt_reboot']);?>" onchange="customdhcpptcheckradiobuton(document.iform.adv_dhcp_pt_values, '');" />
																Backoff Cutoff:   <input name="adv_dhcp_pt_backoff_cutoff"   type="text" class="form-control unknown" id="adv_dhcp_pt_backoff_cutoff"   size="2" value="<?=htmlspecialchars($pconfig['adv_dhcp_pt_backoff_cutoff']);?>"   onchange="customdhcpptcheckradiobuton(document.iform.adv_dhcp_pt_values, '');" />
																Initial Interval: <input name="adv_dhcp_pt_initial_interval" type="text" class="form-control unknown" id="adv_dhcp_pt_initial_interval" size="2" value="<?=htmlspecialchars($pconfig['adv_dhcp_pt_initial_interval']);?>" onchange="customdhcpptcheckradiobuton(document.iform.adv_dhcp_pt_values, '');" />

																&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
																<input name="adv_dhcp_pt_values" type="radio" value="pfSense"	id="customdhcpptpfsensedefaults"	onclick="customdhcpptsetvalues(this, iform);" />OPNsense Default &nbsp;
																<input name="adv_dhcp_pt_values" type="radio" value="SavedCfg" checked="checked"	id="customdhcpptsavedcfg"		onclick="customdhcpptsetvalues(this, iform);" />Saved Cfg

																<br />
																<?=gettext("The values in these fields are DHCP protocol timings used when requesting a lease. <br /> " ); ?>

																<script type="text/javascript">
																//<![CDATA[
																	function customdhcpptcheckradiobuton(T, BUTTON) {
																		for (var i = 0; i < T.length; i++) {
																			T[i].checked = false;
																			if (T[i].value == BUTTON) T[i].checked = true;
																		}
																		T.value = BUTTON;
																	}
2313

2314 2315 2316 2317 2318 2319 2320
																	function customdhcpptsetvalues(T, FORM) {
																		// timeout, retry, select-timeout, reboot, backoff-cutoff, initial-interval
																		if (T.value == "DHCP")		customdhcpptsetvaluesnow(T, FORM, "60", "300", "0", "10", "120", "10");
																		if (T.value == "pfSense")	customdhcpptsetvaluesnow(T, FORM, "60", "15", "0", "", "", "1");
																		if (T.value == "SavedCfg")	customdhcpptsetvaluesnow(T, FORM, "<?=htmlspecialchars($pconfig['adv_dhcp_pt_timeout']);?>", "<?=htmlspecialchars($pconfig['adv_dhcp_pt_retry']);?>", "<?=htmlspecialchars($pconfig['adv_dhcp_pt_select_timeout']);?>", "<?=htmlspecialchars($pconfig['adv_dhcp_pt_reboot']);?>", "<?=htmlspecialchars($pconfig['adv_dhcp_pt_backoff_cutoff']);?>", "<?=htmlspecialchars($pconfig['adv_dhcp_pt_initial_interval']);?>");
																		if (T.value == "Clear")		customdhcpptsetvaluesnow(T, FORM, "", "", "", "", "", "");
																	}
2321

2322 2323 2324 2325 2326 2327 2328
																	function customdhcpptsetvaluesnow(T, FORM, timeout, retry, selecttimeout, reboot, backoffcutoff, initialinterval) {
																		FORM.adv_dhcp_pt_timeout.value = timeout;
																		FORM.adv_dhcp_pt_retry.value = retry;
																		FORM.adv_dhcp_pt_select_timeout.value = selecttimeout;
																		FORM.adv_dhcp_pt_reboot.value = reboot;
																		FORM.adv_dhcp_pt_backoff_cutoff.value = backoffcutoff;
																		FORM.adv_dhcp_pt_initial_interval.value = initialinterval;
2329

2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410
																		FORM.adv_dhcp_pt_values.value = T.value;
																	}

																	<!-- Set the adv_dhcp_pt_values radio button from saved config -->
																	var RADIOBUTTON_VALUE = "<?=htmlspecialchars($pconfig['adv_dhcp_pt_values']);?>";
																	if (RADIOBUTTON_VALUE == "") RADIOBUTTON_VALUE = "SavedCfg";
																	customdhcpptcheckradiobuton(document.iform.adv_dhcp_pt_values, RADIOBUTTON_VALUE);
																//]]>
																</script>
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp_lease_requirements_and_requests">
															<td width="22%" valign="top" class="vncell"><?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhclient.conf&amp;sektion=5#LEASE_REQUIREMENTS_AND_REQUESTS\">Lease Requirements and Requests</a>"); ?></td>
															<td width="78%" class="vtable">
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhclient.conf&amp;sektion=5#LEASE_REQUIREMENTS_AND_REQUESTS\">Send</a> <a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp-options&amp;sektion=5\">Options</a>"); ?><br />
																<input name="adv_dhcp_send_options" type="text" class="form-control unknown" id="adv_dhcp_send_options" size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp_send_options']);?>" />
																<br />
																<?=gettext("The values in this field are DHCP options to be sent when requesting a DHCP lease.  [option declaration [, ...]] <br />" .
																"Value Substitutions: {interface}, {hostname}, {mac_addr_asciiCD}, {mac_addr_hexCD} <br />" .
																"Where C is U(pper) or L(ower) Case, and D is \" :-.\" Delimiter (space, colon, hyphen, or period) (omitted for none). <br />" .
																"Some ISPs may require certain options be or not be sent. "); ?>
																<hr/>
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhclient.conf&amp;sektion=5#LEASE_REQUIREMENTS_AND_REQUESTS\">Request</a> <a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp-options&amp;sektion=5\">Options</a>"); ?><br />
																<input name="adv_dhcp_request_options" type="text" class="form-control unknown" id="adv_dhcp_request_options" size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp_request_options']);?>" />
																<br />
																<?=gettext("The values in this field are DHCP option 55 to be sent when requesting a DHCP lease.  [option [, ...]] <br />" .
																"Some ISPs may require certain options be or not be requested. "); ?>
																<hr/>
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhclient.conf&amp;sektion=5#LEASE_REQUIREMENTS_AND_REQUESTS\">Require</a> <a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp-options&amp;sektion=5\">Options</a>"); ?><br />
																<input name="adv_dhcp_required_options" type="text" class="form-control unknown" id="adv_dhcp_required_options" size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp_required_options']);?>" />
																<br />
																<?=gettext("The values in this field are DHCP options required by the client when requesting a DHCP lease.  [option [, ...]] "); ?>
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp_option_modifiers">
															<td width="22%" valign="top" class="vncell"><?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp-options&amp;sektion=5\">Option</a> <a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhclient.conf&amp;sektion=5#OPTION_MODIFIERS\">Modifiers</a>"); ?></td>
															<td width="78%" class="vtable">
																<input name="adv_dhcp_option_modifiers" type="text" class="form-control unknown" id="adv_dhcp_option_modifiers" size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp_option_modifiers']);?>" />
																<br />
																<?=gettext("The values in this field are DHCP option modifiers applied to obtained DHCP lease.  [modifier option declaration [, ...]] <br /> " .
																"modifiers: (default, supersede, prepend, append)"); ?>
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp_config_file_override">
															<td width="22%" valign="top" class="vncell"><?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhclient.conf&amp;sektion=5\">Configuration File</a> Override"); ?></td>
															<td width="78%" class="vtable">
																<input name="adv_dhcp_config_file_override_path"   type="text" class="form-control unknown" id="adv_dhcp_config_file_override_path"  size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp_config_file_override_path']);?>" />
																<br />
																<?=gettext("The value in this field is the full absolute path to a DHCP client configuration file.  [/[dirname/[.../]]filename[.ext]] <br /> " .
																"Value Substitutions in Config File: {interface}, {hostname}, {mac_addr_asciiCD}, {mac_addr_hexCD} <br />" .
																"Where C is U(pper) or L(ower) Case, and D is \" :-.\" Delimiter (space, colon, hyphen, or period) (omitted for none). <br />" .
																"Some ISPs may require certain options be or not be sent. "); ?>
															</td>
														</tr>

														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>

													</table>

													<script type="text/javascript">
													//<![CDATA[
														function show_adv_dhcp_config(T) {

															if (T.checked) T.value = "Selected";
															else T.value = "";

															     if (document.iform.adv_dhcp_config_file_override.checked)	show_hide_adv_dhcp('none', 'none', '');
															else if (document.iform.adv_dhcp_config_advanced.checked)	show_hide_adv_dhcp('', '', 'none');
															else									show_hide_adv_dhcp('', 'none', 'none');
														}

														function show_hide_adv_dhcp(basic, advanced, override) {

															document.getElementById("show_basic_dhcphostname").style.display = basic;
															document.getElementById("show_basic_dhcpalias-address").style.display = basic;
															document.getElementById("show_basic_dhcprejectlease").style.display = basic;
2411

2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
															document.getElementById("show_adv_dhcp_protocol_timing").style.display = advanced;
															document.getElementById("show_adv_dhcp_lease_requirements_and_requests").style.display = advanced;
															document.getElementById("show_adv_dhcp_option_modifiers").style.display = advanced;

															document.getElementById("show_adv_dhcp_config_file_override").style.display = override;
														}

														<!-- Set the adv_dhcp_config_advanced checkbox from saved config -->
														if ("<?=htmlspecialchars($pconfig['adv_dhcp_config_advanced']);?>" == "Selected") document.iform.adv_dhcp_config_advanced.checked = true;
														show_adv_dhcp_config(document.iform.adv_dhcp_config_advanced);

														<!-- Set the adv_dhcp_config_file_override checkbox from saved config -->
														if ("<?=htmlspecialchars($pconfig['adv_dhcp_config_file_override']);?>" == "Selected") document.iform.adv_dhcp_config_file_override.checked = true;
														show_adv_dhcp_config(document.iform.adv_dhcp_config_file_override);
													//]]>
													</script>

												</td>
											</tr>
											<tr style="display:none;" id="dhcp6">
												<td colspan="2" style="padding: 0px;">
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="dhcp6">
														<tr>
															<td colspan="2" valign="top" class="listtopic"><?=gettext("DHCP6 client configuration &nbsp; &nbsp; " .
															' <input name="adv_dhcp6_config_advanced" type="checkbox" id="adv_dhcp6_config_advanced" value="" onclick="show_adv_dhcp6_config(this)" /> ' .
															" Advanced &nbsp; &nbsp; " .
															' <input name="adv_dhcp6_config_file_override" type="checkbox" id="adv_dhcp6_config_file_override" value="" onclick="show_adv_dhcp6_config(this)" /> ' .
															" Config File Override &nbsp; &nbsp; "); ?>
															</td>
														</tr>
														<!--- Leave commented out for now
														<tr style='display:none' id="basicdhcp6_show_dhcp6_duid">
															<td width="22%" valign="top" class="vncell"><?=gettext("DHCPv6 Unique Identifier (DUID)"); ?></td>
															<td width="78%" class="vtable">
																<input name="dhcp6-duid" type="text" class="form-control unknown" id="dhcp6-duid" size="40" value="<?=htmlspecialchars($pconfig['dhcp6-duid']);?>" />
																<br />
																<?=gettext("The value in this field is sent as the DHCPv6 client identifier " .
																"when requesting a DHCPv6 lease."); ?><br />
																<?php	if(is_readable("/var/db/dhcp6c_duid")) {
																		// $current_duid = file_get_contents("/var/db/dhcp6c_duid");
																	}
																	printf(gettext("The current DUID is: '%s'"),$current_duid);
																	// hexdump -e '"%07.7_ax " 1/2 "%04x" " " 14/1 "%02x:" "\n"'
																?>
															</td>
														</tr>
														-->
														<tr style='display:none' id="basicdhcp6_use_pppoeinterface">
															<td width="22%" valign="top" class="vncell"><?=gettext("Use IPv4 connectivity as parent interface"); ?></td>
															<td width="78%" class="vtable">
																<input name="dhcp6usev4iface" type="checkbox" id="dhcp6usev4iface" value="yes" <?php if ($pconfig['dhcp6usev4iface'] == true) echo "checked=\"checked\""; ?> />
																<?=gettext("Request a IPv6 prefix/information through the IPv4 connectivity link"); ?>
															</td>
														</tr>
														<tr style='display:none' id="basicdhcp6_show_dhcp6_prefix_only">
															<td width="22%" valign="top" class="vncell"><?=gettext("Request only a IPv6 prefix"); ?></td>
															<td width="78%" class="vtable">
																<input name="dhcp6prefixonly" type="checkbox" id="dhcp6prefixonly" value="yes" <?php if ($pconfig['dhcp6prefixonly'] == true) echo "checked=\"checked\""; ?> />
																<?=gettext("Only request a IPv6 prefix, do not request a IPv6 address"); ?>
															</td>
														</tr>
														<tr style='display:none' id="basicdhcp6_show_dhcp6_prefix_delegation_size">
															<td width="22%" valign="top" class="vncell"><?=gettext("DHCPv6 Prefix Delegation size"); ?></td>
															<td width="78%" class="vtable">
2476
																<select name="dhcp6-ia-pd-len" class="selectpicker" data-style="btn-default" id="dhcp6-ia-pd-len">
2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663
																	<?php
																	$sizes = array("none" => "None", 16 => "48", 12 => "52", 8 => "56", 4 => "60", 2 => "62", 1 => "63", 0 => "64");
																	foreach($sizes as $bits => $length) {
																		echo "<option value=\"{$bits}\" ";
																		if (is_numeric($pconfig['dhcp6-ia-pd-len']) && ($bits == $pconfig['dhcp6-ia-pd-len'])) echo "selected=\"selected\"";
																		echo ">" . $length . "</option>";
																	}
																	?>
																</select>
																<br />
																<?=gettext("The value in this field is the delegated prefix length provided by the DHCPv6 server. Normally specified by the ISP."); ?>
															</td>
														</tr>
														<tr style='display:none' id="basicdhcp6_show_dhcp6_prefix_send_hint">
															<td width="22%" valign="top" class="vncell"><?=gettext("Send IPv6 prefix hint"); ?></td>
															<td width="78%" class="vtable">
																<input name="dhcp6-ia-pd-send-hint" type="checkbox" id="dhcp6-ia-pd-send-hint" value="yes" <?php if ($pconfig['dhcp6-ia-pd-send-hint'] == true) echo "checked=\"checked\""; ?> />
																<?=gettext("Send an IPv6 prefix hint to indicate the desired prefix size for delegation"); ?>
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp6_interface_statement">
															<td width="22%" valign="top" class="vncell">
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp6c.conf&amp;sektion=5&amp;apropos=0&amp;manpath=FreeBSD+Ports#Interface_statement\">Interface Statement</a>"); ?>
																<br /><br />
																<input name="adv_dhcp6_interface_statement_information_only_enable" type="checkbox" id="adv_dhcp6_interface_statement_information_only_enable" value="" onclick="show_adv_dhcp6_config(this)" />
																<?=gettext("Information Only"); ?>
															</td>
															<td width="78%" class="vtable">
																<?=gettext("Send Options"); ?><br />
																<input name="adv_dhcp6_interface_statement_send_options" type="text" class="form-control unknown" id="adv_dhcp6_interface_statement_send_options" size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp6_interface_statement_send_options']);?>" />
																<br />
																<?=gettext("The values in this field are DHCP send options to be sent when requesting a DHCP lease.  [option declaration [, ...]] <br />" .
																"Value Substitutions: {interface}, {hostname}, {mac_addr_asciiCD}, {mac_addr_hexCD} <br />" .
																"Where C is U(pper) or L(ower) Case, and D is \" :-.\" Delimiter (space, colon, hyphen, or period) (omitted for none). <br />" .
																"Some DHCP services may require certain options be or not be sent. "); ?>
																<br />
																<br />
																<?=gettext("Request Options"); ?><br />
																<input name="adv_dhcp6_interface_statement_request_options" type="text" class="form-control unknown" id="adv_dhcp6_interface_statement_request_options" size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp6_interface_statement_request_options']);?>" />
																<br />
																<?=gettext("The values in this field are DHCP request options to be sent when requesting a DHCP lease.  [option [, ...]] <br />" .
																"Some DHCP services may require certain options be or not be requested. "); ?>
																<br />
																<br />
																<?=gettext("Script"); ?><br />
																<input name="adv_dhcp6_interface_statement_script" type="text" class="form-control unknown" id="adv_dhcp6_interface_statement_script" size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp6_interface_statement_script']);?>" />
																<br />
																<?=gettext("The value in this field is the absolute path to a script invoked on certain conditions including when a reply message is received. <br />" .
																"[/[dirname/[.../]]filename[.ext]] "); ?>
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp6_id_assoc_statement">
															<td width="22%" valign="top" class="vncell">
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp6c.conf&amp;sektion=5&amp;apropos=0&amp;manpath=FreeBSD+Ports#Identity_association_statement\">Identity Association Statement</a>"); ?>
															</td>
															<td width="78%" class="vtable">

																<input name="adv_dhcp6_id_assoc_statement_address_enable" type="checkbox" id="adv_dhcp6_id_assoc_statement_address_enable" value="" onclick="show_adv_dhcp6_config(this);" />
																<?=gettext("Non-Temporary Address Allocation"); ?>
																<div style='display:none'  id="show_adv_dhcp6_id_assoc_statement_address">
																<?=gettext("id-assoc na"); ?>
																<?=gettext("<i>ID</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_address_id" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_address_id" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_address_id']);?>" />
																<br />
																<?=gettext("Address"); ?>
																<?=gettext("<i>ipv6-address</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_address" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_address" size="34" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_address']);?>" />
																<?=gettext("<i>pltime</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_address_pltime" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_address_pltime" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_address_pltime']);?>" />
																<?=gettext("<i>vltime</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_address_vltime" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_address_vltime" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_address_vltime']);?>" />
																</div>
																<hr/>

																<input name="adv_dhcp6_id_assoc_statement_prefix_enable" type="checkbox" id="adv_dhcp6_id_assoc_statement_prefix_enable" value="" onclick="show_adv_dhcp6_config(this)" />
																<?=gettext("Prefix Delegation"); ?>
																<div style='display:none'  id="show_adv_dhcp6_id_assoc_statement_prefix">
																<?=gettext("id-assoc pd"); ?>
																<?=gettext("<i>ID</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_prefix_id" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_prefix_id" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_prefix_id']);?>" />
																<br />
																<?=gettext("Prefix"); ?>
																<?=gettext("<i>ipv6-prefix</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_prefix" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_prefix" size="37" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_prefix']);?>" />
																<?=gettext("<i>pltime</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_prefix_pltime" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_prefix_pltime" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_prefix_pltime']);?>" />
																<?=gettext("<i>vltime</i>"); ?>
																<input name="adv_dhcp6_id_assoc_statement_prefix_vltime" type="text" class="form-control unknown" id="adv_dhcp6_id_assoc_statement_prefix_vltime" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_prefix_vltime']);?>" />
																</div>
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp6_prefix_interface_statement">
															<td width="22%" valign="top" class="vncell">
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp6c.conf&amp;sektion=5&amp;apropos=0&amp;manpath=FreeBSD+Ports#Prefix_interface_statement\">Prefix Interface Statement</a>"); ?>
															</td>
															<td width="78%" class="vtable">
																<?=gettext("Prefix Interface "); ?>
																<?=gettext("<i>sla-id</i>"); ?>
																<input name="adv_dhcp6_prefix_interface_statement_sla_id" type="text" class="form-control unknown" id="adv_dhcp6_prefix_interface_statement_sla_id" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_prefix_interface_statement_sla_id']);?>" />
																<?=gettext("<i>sla-len</i>"); ?>
																<input name="adv_dhcp6_prefix_interface_statement_sla_len" type="text" class="form-control unknown" id="adv_dhcp6_prefix_interface_statement_sla_len" size="3" value="<?=htmlspecialchars($pconfig['adv_dhcp6_prefix_interface_statement_sla_len']);?>" />
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp6_authentication_statement">
															<td width="22%" valign="top" class="vncell">
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp6c.conf&amp;sektion=5&amp;apropos=0&amp;manpath=FreeBSD+Ports#Authentication_statement\">Authentication Statement</a>"); ?>
															</td>
															<td width="78%" class="vtable">
																<?=gettext("<i>authname</i>"); ?>
																<input name="adv_dhcp6_authentication_statement_authname" type="text" class="form-control unknown" id="adv_dhcp6_authentication_statement_authname" size="10" value="<?=htmlspecialchars($pconfig['adv_dhcp6_authentication_statement_authname']);?>" />
																<?=gettext("<i>protocol</i>"); ?>
																<input name="adv_dhcp6_authentication_statement_protocol" type="text" class="form-control unknown" id="adv_dhcp6_authentication_statement_protocol" size="6" value="<?=htmlspecialchars($pconfig['adv_dhcp6_authentication_statement_protocol']);?>" />
																<?=gettext("<i>algorithm</i>"); ?>
																<input name="adv_dhcp6_authentication_statement_algorithm" type="text" class="form-control unknown" id="adv_dhcp6_authentication_statement_algorithm" size="8" value="<?=htmlspecialchars($pconfig['adv_dhcp6_authentication_statement_algorithm']);?>" />
																<?=gettext("<i>rdm</i>"); ?>
																<input name="adv_dhcp6_authentication_statement_rdm" type="text" class="form-control unknown" id="adv_dhcp6_authentication_statement_rdm" size="9" value="<?=htmlspecialchars($pconfig['adv_dhcp6_authentication_statement_rdm']);?>" />
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp6_key_info_statement">
															<td width="22%" valign="top" class="vncell">
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp6c.conf&amp;sektion=5&amp;apropos=0&amp;manpath=FreeBSD+Ports#Keyinfo_statement\">Keyinfo Statement</a>"); ?>
															</td>
															<td width="78%" class="vtable">
																<?=gettext("<i>keyname</i>"); ?>
																<input name="adv_dhcp6_key_info_statement_keyname" type="text" class="form-control unknown" id="adv_dhcp6_key_info_statement_keyname" size="27" value="<?=htmlspecialchars($pconfig['adv_dhcp6_key_info_statement_keyname']);?>" />
																<?=gettext("<i>realm</i>"); ?>
																<input name="adv_dhcp6_key_info_statement_realm" type="text" class="form-control unknown" id="adv_dhcp6_key_info_statement_realm" size="37" value="<?=htmlspecialchars($pconfig['adv_dhcp6_key_info_statement_realm']);?>" />
																<br />
																<?=gettext("<i>keyid</i>"); ?>
																<input name="adv_dhcp6_key_info_statement_keyid" type="text" class="form-control unknown" id="adv_dhcp6_key_info_statement_keyid" size="2" value="<?=htmlspecialchars($pconfig['adv_dhcp6_key_info_statement_keyid']);?>" />
																<?=gettext("<i>secret</i>"); ?>
																<input name="adv_dhcp6_key_info_statement_secret" type="text" class="form-control unknown" id="adv_dhcp6_key_info_statement_secret" size="36" value="<?=htmlspecialchars($pconfig['adv_dhcp6_key_info_statement_secret']);?>" />
																<?=gettext("<i>expire</i>"); ?>
																<input name="adv_dhcp6_key_info_statement_expire" type="text" class="form-control unknown" id="adv_dhcp6_key_info_statement_expire" size="15" value="<?=htmlspecialchars($pconfig['adv_dhcp6_key_info_statement_expire']);?>" />
															</td>
														</tr>

														<tr style='display:none' id="show_adv_dhcp6_config_file_override">
															<td width="22%" valign="top" class="vncell">
																<?=gettext("<a target=\"FreeBSD_DHCP\" href=\"http://www.freebsd.org/cgi/man.cgi?query=dhcp6c.conf&amp;sektion=5&amp;apropos=0&amp;manpath=FreeBSD+Ports\">Configuration File</a> Override"); ?>
															</td>
															<td width="78%" class="vtable">
																<input name="adv_dhcp6_config_file_override_path"   type="text" class="form-control unknown" id="adv_dhcp6_config_file_override_path"  size="86" value="<?=htmlspecialchars($pconfig['adv_dhcp6_config_file_override_path']);?>" />
																<br />
																<?=gettext("The value in this field is the full absolute path to a DHCP client configuration file.  [/[dirname/[.../]]filename[.ext]] <br /> " .
																"Value Substitutions in Config File: {interface}, {hostname}, {mac_addr_asciiCD}, {mac_addr_hexCD} <br />" .
																"Where C is U(pper) or L(ower) Case, and D is \" :-.\" Delimiter (space, colon, hyphen, or period) (omitted for none). <br />" .
																"Some ISPs may require certain options be or not be sent. "); ?>
															</td>
														</tr>

														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>

													</table>

													<script type="text/javascript">
													//<![CDATA[
														function show_adv_dhcp6_config(T) {

															if (T.checked) T.value = "Selected";
															else T.value = "";

															     if (document.iform.adv_dhcp6_config_file_override.checked)	show_hide_adv_dhcp6('none', 'none', ''    );
															else if (document.iform.adv_dhcp6_config_advanced.checked)		show_hide_adv_dhcp6('none', '',     'none');
															else															show_hide_adv_dhcp6('',     'none', 'none');
														}

														function show_hide_adv_dhcp6(basic, advanced, override) {

															document.getElementById("basicdhcp6_use_pppoeinterface").style.display = basic;
															document.getElementById("basicdhcp6_show_dhcp6_prefix_delegation_size").style.display = basic;
															document.getElementById("basicdhcp6_show_dhcp6_prefix_send_hint").style.display = basic;
															document.getElementById("basicdhcp6_show_dhcp6_prefix_only").style.display = basic;

															document.getElementById("show_adv_dhcp6_interface_statement").style.display = advanced;
															document.getElementById("show_adv_dhcp6_id_assoc_statement").style.display = advanced;

															document.getElementById("show_adv_dhcp6_id_assoc_statement_address").style.display = 'none';
															if (document.iform.adv_dhcp6_id_assoc_statement_address_enable.checked)  {
																document.getElementById("show_adv_dhcp6_id_assoc_statement_address").style.display = advanced;
Ad Schellevis's avatar
Ad Schellevis committed
2664
															}
2665 2666 2667 2668 2669 2670

															document.getElementById("show_adv_dhcp6_id_assoc_statement_prefix").style.display = 'none';
															document.getElementById("show_adv_dhcp6_prefix_interface_statement").style.display = 'none';
															if (document.iform.adv_dhcp6_id_assoc_statement_prefix_enable.checked)  {
																document.getElementById("show_adv_dhcp6_id_assoc_statement_prefix").style.display = advanced;
																document.getElementById("show_adv_dhcp6_prefix_interface_statement").style.display = advanced;
Ad Schellevis's avatar
Ad Schellevis committed
2671
															}
2672

2673 2674 2675 2676 2677
															document.getElementById("show_adv_dhcp6_authentication_statement").style.display = advanced;
															document.getElementById("show_adv_dhcp6_key_info_statement").style.display = advanced;

															document.getElementById("show_adv_dhcp6_config_file_override").style.display = override;
														}
2678

2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727
														<!-- Set the adv_dhcp6_config_advanced checkbox from saved config -->
														if ("<?=htmlspecialchars($pconfig['adv_dhcp6_config_advanced']);?>" == "Selected") document.iform.adv_dhcp6_config_advanced.checked = true;
														show_adv_dhcp6_config(document.iform.adv_dhcp6_config_advanced);

														<!-- Set the adv_dhcp6_config_file_override checkbox from saved config -->
														if ("<?=htmlspecialchars($pconfig['adv_dhcp6_config_file_override']);?>" == "Selected") document.iform.adv_dhcp6_config_file_override.checked = true;
														show_adv_dhcp6_config(document.iform.adv_dhcp6_config_file_override);

														<!-- Set the adv_dhcp6_interface_statement_information_only_enable checkbox from saved config -->
														if ("<?=htmlspecialchars($pconfig['adv_dhcp6_interface_statement_information_only_enable']);?>" == "Selected") document.iform.adv_dhcp6_interface_statement_information_only_enable.checked = true;
														show_adv_dhcp6_config(document.iform.adv_dhcp6_interface_statement_information_only_enable);

														<!-- Set the adv_dhcp6_id_assoc_statement_address_enable checkbox from saved config -->
														if ("<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_address_enable']);?>" == "Selected") document.iform.adv_dhcp6_id_assoc_statement_address_enable.checked = true;
														show_adv_dhcp6_config(document.iform.adv_dhcp6_id_assoc_statement_address_enable);

														<!-- Set the adv_dhcp6_id_assoc_statement_prefix_enable checkbox from saved config -->
														if ("<?=htmlspecialchars($pconfig['adv_dhcp6_id_assoc_statement_prefix_enable']);?>" == "Selected") document.iform.adv_dhcp6_id_assoc_statement_prefix_enable.checked = true;
														show_adv_dhcp6_config(document.iform.adv_dhcp6_id_assoc_statement_prefix_enable);
													//]]>
													</script>

												</td>
											</tr>
											<tr style="display:none;" id="_6rd">
												<td colspan="2" style="padding: 0px;">
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="6rd">
														<tr>
															<td colspan="2" valign="top" class="listtopic"><?=gettext("6RD Rapid Deployment"); ?></td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("6RD prefix"); ?></td>
															<td width="78%" class="vtable">
																<input name="prefix-6rd" type="text" class="form-control unknown" id="prefix-6rd" size="40" value="<?=htmlspecialchars($pconfig['prefix-6rd']);?>" />
																<br />
																<?=gettext("The value in this field is the 6RD IPv6 prefix assigned by your ISP. e.g. '2001:db8::/32'") ?><br />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("6RD Border Relay"); ?></td>
															<td width="78%" class="vtable">
																<input name="gateway-6rd" type="text" class="form-control unknown" id="gateway-6rd" size="40" value="<?=htmlspecialchars($pconfig['gateway-6rd']);?>" />
																<br />
																<?=gettext("The value in this field is 6RD IPv4 gateway address assigned by your ISP") ?><br />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("6RD IPv4 Prefix length"); ?></td>
															<td width="78%" class="vtable">
2728
																<select name="prefix-6rd-v4plen" class="selectpicker" data-style="btn-default" id="prefix-6rd-v4plen">
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755
																	<?php
																	for ($i = 0; $i < 32; $i++) {
																		echo "<option value=\"{$i}\" ";
																		if (is_numeric($pconfig['prefix-6rd-v4plen']) && ($i == $pconfig['prefix-6rd-v4plen'])) echo "selected=\"selected\"";
																		echo ">" . $i . " bits</option>";
																	}
																	?>
																</select>
																<br />
																<?=gettext("The value in this field is the 6RD IPv4 prefix length. Normally specified by the ISP. A value of 0 means we embed the entire IPv4 address in the 6RD prefix."); ?>
															</td>
														</tr>
														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>
													</table>
												</td>
											</tr>
											<tr style="display:none;" id="track6">
												<td colspan="2" style="padding: 0px;">
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="track6">
														<tr>
															<td colspan="2" valign="top" class="listtopic"><?=gettext("Track IPv6 Interface"); ?></td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("IPv6 Interface"); ?></td>
															<td width="78%" class="vtable">
2756
															<select name='track6-interface' class='selectpicker' data-style='btn-default' >
Ad Schellevis's avatar
Ad Schellevis committed
2757
															<?php
2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780
																$interfaces = get_configured_interface_with_descr(false, true);
																$dynv6ifs = array();
																foreach ($interfaces as $iface => $ifacename) {
																	switch($config['interfaces'][$iface]['ipaddrv6']) {
																		case "6to4":
																		case "6rd":
																		case "dhcp6":
																			$dynv6ifs[$iface] = $ifacename;
																			break;
																		default:
																			continue;
																	}
																}
																$rowIndex = 0;
																foreach($dynv6ifs as $iface => $ifacename) {
																	$rowIndex++;
																	echo "<option value=\"{$iface}\"";
																	if ($iface == $pconfig['track6-interface'])
																		echo " selected=\"selected\"";
																	echo ">" . htmlspecialchars($ifacename) . "</option>";
																}
																if ($rowIndex == 0)
																	echo "<option></option>";
Ad Schellevis's avatar
Ad Schellevis committed
2781
															?>
2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
															</select> <br />
																<br />
																<?=gettext("This selects the dynamic IPv6 WAN interface to track for configuration") ?><br />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("IPv6 Prefix ID"); ?></td>
															<td width="78%" class="vtable">
																<?php
																	if ($pconfig['track6-prefix-id'] == "")
																		$pconfig['track6-prefix-id'] = 0;
																	$track6_prefix_id_hex = sprintf("%x", $pconfig['track6-prefix-id']);
																?>
																<input name="track6-prefix-id--hex" type="text" class="form-control unknown" id="track6-prefix-id--hex" size="8" value="<?= $track6_prefix_id_hex ?>" />
																<br />
																<?= gettext("The value in this field is the (Delegated) IPv6 prefix id. This determines the configurable network ID based on the dynamic IPv6 connection"); ?>
																<br />
																<?= sprintf(gettext("Enter a <b>hexadecimal</b> value between %x and %x here, default value is 0."), 0, $ipv6_num_prefix_ids - 1); ?>
															</td>
														</tr>
														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>
													</table>
												</td>
											</tr>
											<tr style="display:none;" id="ppp">
												<td colspan="2" style="padding: 0px;">
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="ppp">
														<tr>
															<td colspan="2" valign="top" class="listtopic"><?=gettext("PPP configuration"); ?></td>
														</tr>
														<tr id="ppp_provider">
															<td width="22%" valign="top" class="vncell"><?=gettext("Service Provider"); ?></td>
															<td width="78%" class="vtable">
																<table border="0" cellpadding="0" cellspacing="0" summary="service provider">
																	<tr id="trcountry">
																		<td><?=gettext("Country:"); ?> </td>
																		<td>
2821
																			<select class="selectpicker" data-style="btn-default" name="country" id="country" onchange="providers_list()">
2822 2823 2824 2825 2826 2827 2828
																				<option></option>
																			</select>
																		</td>
																	</tr>
																	<tr id="trprovider" style="display:none">
																		<td><?=gettext("Provider:"); ?> &nbsp;&nbsp;</td>
																		<td>
2829
																			<select class="selectpicker" data-style="btn-default" name="provider_list" id="provider_list" onchange="providerplan_list()">
2830 2831 2832 2833 2834 2835 2836
																				<option></option>
																			</select>
																		</td>
																	</tr>
																	<tr id="trproviderplan" style="display:none">
																		<td><?=gettext("Plan:"); ?> &nbsp;&nbsp;</td>
																		<td>
2837
																			<select class="selectpicker" data-style="btn-default" name="providerplan" id="providerplan" onchange="prefill_provider()">
2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872
																				<option></option>
																			</select>
																		</td>
																	</tr>
																</table>
																<span class="vexpl"><?=gettext("Select to fill in data for your service provider."); ?></span>
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Username"); ?></td>
															<td width="78%" class="vtable">
															<input name="username" type="text" class="form-control user" id="username" size="20" value="<?=htmlspecialchars($pconfig['username']);?>" />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Password"); ?></td>
															<td width="78%" class="vtable">
															<input name="password" type="password" class="form-control pwd" id="password" size="20" value="<?=htmlspecialchars($pconfig['password']);?>" />
															</td>
														</tr>
														<tr id="phone_num">
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Phone Number"); ?></td>
															<td width="78%" class="vtable">
																<input name="phone" type="text" class="form-control unknown" id="phone" size="12" value="<?=htmlspecialchars($pconfig['phone']);?>" />
															</td>
														</tr>
														<tr id="apn_">
															<td width="22%" valign="top" class="vncell"><?=gettext("Access Point Name (APN)"); ?></td>
															<td width="78%" class="vtable">
																<input name="apn" type="text" class="form-control unknown" id="apn" size="40" value="<?=htmlspecialchars($pconfig['apn']);?>" />
															</td>
														</tr>
														<tr id="interface" >
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Modem Port"); ?></td>
															<td width="78%" class="vtable">
2873
																<select name="port" id="port" class="selectpicker" data-style="btn-default">
2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899
																<?php
																	$portlist = glob("/dev/cua*");
																	$modems = glob("/dev/modem*");
																	$portlist = array_merge($portlist, $modems);
																	$rowIndex = 0;
																	foreach ($portlist as $port) {
																		if(preg_match("/\.(lock|init)$/", $port))
																			continue;
																		$rowIndex++;
																		echo "<option value=\"".trim($port)."\"";
																		if ($pconfig['port'] == $port)
																			echo " selected=\"selected\"";
																		echo ">{$port}</option>";
																	}
																	if ($rowIndex == 0)
																		echo "<option></option>";
																	?>
																</select>
															</td>
														</tr>
														<tr>
														<td width="22%" valign="top" class="vncell"><?=gettext("Advanced PPP"); ?></td>
															<?php if (isset($pconfig['pppid'])): ?>
																<td width="78%" class="vtable">
																<a href="/interfaces_ppps_edit.php?id=<?=htmlspecialchars($pconfig['pppid']);?>" class="navlnk"><?=gettext("Click here"); ?> </a>
																<?=gettext("to edit PPP configuration."); ?>
Ad Schellevis's avatar
Ad Schellevis committed
2900
																</td>
2901 2902 2903 2904
															<?php else: ?>
																<td width="78%" class="vtable">
																<a href="/interfaces_ppps_edit.php" class="navlnk"><?=gettext("Click here"); ?> </a>
																<?=gettext("to create a PPP configuration."); ?>
Ad Schellevis's avatar
Ad Schellevis committed
2905
																</td>
2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958
															<?php endif; ?>
														</tr>
														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>
													</table>
												</td>
											</tr>
											<tr style="display:none;" id="pppoe">
												<td colspan="2" style="padding:0px;">
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="pppoe">
														<tr>
															<td colspan="2" valign="top" class="listtopic"><?=gettext("PPPoE configuration"); ?></td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Username"); ?></td>
															<td width="78%" class="vtable">
																	<input name="pppoe_username" type="text" class="form-control user" id="pppoe_username" size="20" value="<?=htmlspecialchars($pconfig['pppoe_username']);?>" />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Password"); ?></td>
															<td width="78%" class="vtable">
																<input name="pppoe_password" type="password" class="form-control pwd" id="pppoe_password" size="20" value="<?=htmlspecialchars($pconfig['pppoe_password']);?>" />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Service name"); ?></td>
															<td width="78%" class="vtable"><input name="provider" type="text" class="form-control unknown" id="provider" size="20" value="<?=htmlspecialchars($pconfig['provider']);?>" />
																<br /> <span class="vexpl"><?=gettext("Hint: this field can usually be left empty"); ?></span>
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Dial on demand"); ?></td>
															<td width="78%" class="vtable">
																<input name="pppoe_dialondemand" type="checkbox" id="pppoe_dialondemand" value="enable" <?php if ($pconfig['pppoe_dialondemand']) echo "checked=\"checked\""; ?> />
																<strong><?=gettext("Enable Dial-On-Demand mode"); ?></strong><br />
																<?=gettext("This option causes the interface to operate in dial-on-demand mode, allowing you to have a "); ?><i><?=gettext("virtual full time"); ?></i> <?=gettext("connection. The interface is configured, but the actual connection of the link is delayed until qualifying outgoing traffic is detected."); ?>
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Idle timeout"); ?></td>
															<td width="78%" class="vtable">
																<input name="pppoe_idletimeout" type="text" class="form-control unknown" id="pppoe_idletimeout" size="8" value="<?=htmlspecialchars($pconfig['pppoe_idletimeout']);?>" /> <?=gettext("seconds"); ?><br /><?=gettext("If no qualifying outgoing packets are transmitted for the specified number of seconds, the connection is brought down. An idle timeout of zero disables this feature."); ?>
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Periodic reset");?></td>
															<td width="78%" class="vtable">
																<table id="presetwrap" cellspacing="0" cellpadding="0" width="100%" summary="periodic reset">
																	<tr>
																		<td align="left" valign="top">
																			<p style="margin: 4px; padding: 4px 0 4px 0; width: 94%;">
2959
																			<select style="vertical-align:top" id="reset_type" name="pppoe-reset-type" class="selectpicker" data-style="btn-default" onchange="show_reset_settings(this.value);">
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008
																				<option value=""><?=gettext("Disabled"); ?></option>
																				<option value="custom" <?php if ($pconfig['pppoe-reset-type'] == "custom") echo "selected=\"selected\""; ?>><?=gettext("Custom"); ?></option>
																				<option value="preset" <?php if ($pconfig['pppoe-reset-type'] == "preset") echo "selected=\"selected\""; ?>><?=gettext("Pre-Set"); ?></option>
																			</select> <?=gettext("Select a reset timing type"); ?>
																			</p>
																			<?php if ($pconfig['pppoe_pr_custom']): ?>
																				<p style="margin: 2px; padding: 4px; width: 94%;" id="pppoecustomwrap">
																			<?php else: ?>
																				<p style="margin: 2px; padding: 4px; width: 94%; display: none;" id="pppoecustomwrap">
																			<?php endif; ?>
																			<input type="text" name="pppoe_resethour" class="fd_incremental_inp_range_0_23 fd_increment_1 fd_classname_dec_buttonDec fd_classname_inc_buttonInc" maxlength="2" id="pppoe_resethour" value="<?= $pconfig['pppoe_resethour']; ?>" size="3" />
																			<?=gettext("hour (0-23)"); ?><br />
																			<input type="text" name="pppoe_resetminute" class="fd_incremental_inp_range_0_59 fd_increment_1 fd_classname_dec_buttonDec fd_classname_inc_buttonInc" maxlength="2" id="pppoe_resetminute" value="<?= $pconfig['pppoe_resetminute']; ?>" size="3" />
																			<?=gettext("minute (0-59)"); ?><br />
																			<input name="pppoe_resetdate" type="text" class="w8em format-m-d-y highlight-days-67" id="pppoe_resetdate" maxlength="10" size="10" value="<?=htmlspecialchars($pconfig['pppoe_resetdate']);?>" />
																			<?=gettext("reset at a specific date (mm/dd/yyyy)"); ?>
																			<br />&nbsp;<br />
																			<span class="red"><strong><?=gettext("Note:"); ?> </strong></span>
																			<?=gettext("If you leave the date field empty, the reset will be executed each day at the time you did specify using the minutes and hour field."); ?>
																			</p>
																			<?php if ($pconfig['pppoe_pr_preset']): ?>
																				<p style="margin: 2px; padding: 4px; width: 94%;" id="pppoepresetwrap">
																			<?php else: ?>
																				<p style="margin: 2px; padding: 4px; width: 94%; display: none;" id="pppoepresetwrap">
																			<?php endif; ?>
																			<input name="pppoe_pr_preset_val" type="radio" id="pppoe_monthly" value="monthly" <?php if ($pconfig['pppoe_monthly']) echo "checked=\"checked\""; ?> />
																			<?=gettext("reset at each month ('0 0 1 * *')"); ?>
																			<br />
																			<input name="pppoe_pr_preset_val" type="radio" id="pppoe_weekly" value="weekly" <?php if ($pconfig['pppoe_weekly']) echo "checked=\"checked\""; ?> />
																			<?=gettext("reset at each week ('0 0 * * 0')"); ?>
																			<br />
																			<input name="pppoe_pr_preset_val" type="radio" id="pppoe_daily" value="daily" <?php if ($pconfig['pppoe_daily']) echo "checked=\"checked\""; ?> />
																			<?=gettext("reset at each day ('0 0 * * *')"); ?>
																			<br />
																			<input name="pppoe_pr_preset_val" type="radio" id="pppoe_hourly" value="hourly" <?php if ($pconfig['pppoe_hourly']) echo "checked=\"checked\""; ?> />
																			<?=gettext("reset at each hour ('0 * * * *')"); ?>
																			</p>
																		</td>
																	</tr>
																</table>
															</td>
														</tr>

														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Advanced and MLPPP"); ?></td>
															<?php if (isset($pconfig['pppid'])): ?>
																<td width="78%" class="vtable">
																<a href="/interfaces_ppps_edit.php?id=<?=htmlspecialchars($pconfig['pppid']);?>" class="navlnk"><?=gettext("Click here"); ?> </a>
																<?=gettext("for additional PPPoE configuration options. Save first if you made changes."); ?>
Ad Schellevis's avatar
Ad Schellevis committed
3009
																</td>
3010 3011 3012 3013
															<?php else: ?>
																<td width="78%" class="vtable">
																<a href="/interfaces_ppps_edit.php" class="navlnk"><?=gettext("Click here"); ?> </a>
																<?=gettext("for advanced PPPoE configuration options and MLPPP configuration."); ?>
Ad Schellevis's avatar
Ad Schellevis committed
3014
																</td>
3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045
															<?php endif; ?>
														</tr>
														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>
													</table>
												</td>
											</tr>
											<tr style="display:none;" id="pptp">
												<td colspan="2" style="padding:0px;">
													<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="pptp">
														<tr>
															<td colspan="2" valign="top" class="listtopic"><?=gettext("PPTP/L2TP configuration"); ?></td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Username"); ?></td>
															<td width="78%" class="vtable">
																<input name="pptp_username" type="text" class="form-control user" id="pptp_username" size="20" value="<?=htmlspecialchars($pconfig['pptp_username']);?>" />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Password"); ?></td>
															<td width="78%" class="vtable">
																<input name="pptp_password" type="password" class="form-control pwd" id="pptp_password" size="20" value="<?=htmlspecialchars($pconfig['pptp_password']);?>" />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Local IP address"); ?></td>
															<td width="78%" class="vtable">
																<input name="pptp_local" type="text" class="form-control unknown" id="pptp_local" size="20"  value="<?=htmlspecialchars($pconfig['pptp_local'][0]);?>" />
																/
3046
																<select name="pptp_subnet" class="selectpicker" data-style="btn-default" id="pptp_subnet">
3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093
																	<?php for ($i = 31; $i > 0; $i--): ?>
																		<option value="<?=$i;?>" <?php if ($i == $pconfig['pptp_subnet'][0]) echo "selected=\"selected\""; ?>>
																			<?=$i;?></option>
																	<?php endfor; ?>
																</select>
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncellreq"><?=gettext("Remote IP address"); ?></td>
															<td width="78%" class="vtable">
																<input name="pptp_remote" type="text" class="form-control unknown" id="pptp_remote" size="20" value="<?=htmlspecialchars($pconfig['pptp_remote'][0]);?>" />
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Dial on demand"); ?></td>
															<td width="78%" class="vtable">
																<input name="pptp_dialondemand" type="checkbox" id="pptp_dialondemand" value="enable" <?php if ($pconfig['pptp_dialondemand']) echo "checked=\"checked\""; ?> />
																<strong><?=gettext("Enable Dial-On-Demand mode"); ?></strong><br />
																<?=gettext("This option causes the interface to operate in dial-on-demand mode, allowing you to have a"); ?> <i><?=gettext("virtual full time"); ?></i> <?=gettext("connection. The interface is configured, but the actual connection of the link is delayed until qualifying outgoing traffic is detected."); ?>
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Idle timeout"); ?></td>
															<td width="78%" class="vtable">
																<input name="pptp_idletimeout" type="text" class="form-control unknown" id="pptp_idletimeout" size="8" value="<?=htmlspecialchars($pconfig['pptp_idletimeout']);?>" /> <?=gettext("seconds"); ?><br /><?=gettext("If no qualifying outgoing packets are transmitted for the specified number of seconds, the connection is brought down. An idle timeout of zero disables this feature."); ?>
															</td>
														</tr>
														<tr>
															<td width="22%" valign="top" class="vncell"><?=gettext("Advanced"); ?></td>
															<?php if (isset($pconfig['pppid'])): ?>
																<td width="78%" class="vtable">
																<a href="/interfaces_ppps_edit.php?id=<?=htmlspecialchars($pconfig['pppid']);?>" class="navlnk"><?=gettext("Click here");?></a>
																<?=gettext("for additional PPTP and L2TP configuration options. Save first if you made changes.");?>
																</td>
															<?php else: ?>
																<td width="78%" class="vtable">
																<a href="/interfaces_ppps_edit.php" class="navlnk"><?=gettext("Click here");?></a>
																<?=gettext("for advanced PPTP and L2TP configuration options");?>.
																</td>
															<?php endif; ?>
														</tr>
														<tr>
															<td colspan="2" valign="top" height="16"></td>
														</tr>
													</table>
												</td>
											</tr>
Ad Schellevis's avatar
Ad Schellevis committed
3094
											<?php
3095 3096
												/* Wireless interface? */
												if (isset($wancfg['wireless'])):
Ad Schellevis's avatar
Ad Schellevis committed
3097
											?>
3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110
											<tr>
												<td colspan="2" valign="top" class="listtopic"><?=gettext("Common wireless configuration - Settings apply to all wireless networks on"); ?> <?=$wlanbaseif;?>.</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Persist common settings");?></td>
												<td class="vtable">
													<input name="persistcommonwireless" type="checkbox" value="yes"  class="form-control" id="persistcommonwireless" <?php if ($pconfig['persistcommonwireless']) echo "checked=\"checked\"";?> />
													<br /><?=gettext("Enabling this preserves the common wireless configuration through interface deletions and reassignments.");?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncellreq"><?=gettext("Standard"); ?></td>
												<td class="vtable">
3111
												<select name="standard" class="selectpicker" data-style="btn-default" id="standard">
3112 3113 3114 3115
													<?php
													$rowIndex = 0;
													foreach($wl_modes as $wl_standard => $wl_channels) {
														$rowIndex++;
Ad Schellevis's avatar
Ad Schellevis committed
3116
														echo "<option ";
3117
														if ($pconfig['standard'] == "$wl_standard")
Ad Schellevis's avatar
Ad Schellevis committed
3118
															echo "selected=\"selected\" ";
3119
														echo "value=\"$wl_standard\">802.$wl_standard</option>\n";
Ad Schellevis's avatar
Ad Schellevis committed
3120
													}
3121 3122 3123 3124 3125 3126 3127 3128 3129 3130
													if ($rowIndex == 0)
														echo "<option></option>";
													?>
												</select>
												</td>
											</tr>
											<?php if (isset($wl_modes['11g'])): ?>
											<tr>
												<td valign="top" class="vncellreq">802.11g OFDM <?=gettext("Protection Mode"); ?></td>
												<td class="vtable">
3131
													<select name="protmode" class="selectpicker" data-style="btn-default" id="protmode">
3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142
														<option <?php if ($pconfig['protmode'] == 'off') echo "selected=\"selected\"";?> value="off"><?=gettext("Protection mode off"); ?></option>
														<option <?php if ($pconfig['protmode'] == 'cts') echo "selected=\"selected\"";?> value="cts"><?=gettext("Protection mode CTS to self"); ?></option>
														<option <?php if ($pconfig['protmode'] == 'rtscts') echo "selected=\"selected\"";?> value="rtscts"><?=gettext("Protection mode RTS and CTS"); ?></option>
													</select>
													<br />
													<?=gettext("For IEEE 802.11g, use the specified technique for protecting OFDM frames in a mixed 11b/11g network."); ?>
													<br />
												</td>
											</tr>
											<?php else: ?>
											<input name="protmode" type="hidden" id="protmode" value="off" />
Ad Schellevis's avatar
Ad Schellevis committed
3143
											<?php endif; ?>
3144 3145 3146
											<tr>
												<td valign="top" class="vncellreq"><?=gettext("Transmit power"); ?></td>
												<td class="vtable">
3147
													<select name="txpower" class="selectpicker" data-style="btn-default" id="txpower">
3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163
														<?
														for($x = 99; $x > 0; $x--) {
															if($pconfig["txpower"] == $x)
																$SELECTED = " selected=\"selected\"";
															else
																$SELECTED = "";
															echo "<option {$SELECTED}>{$x}</option>\n";
														}
														?>
													</select><br />
													<?=gettext("Note: Typically only a few discreet power settings are available and the driver will use the setting closest to the specified value.  Not all adapters support changing the transmit power setting."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncellreq"><?=gettext("Channel"); ?></td>
												<td class="vtable">
3164
													<select name="channel" class="selectpicker" data-style="btn-default" id="channel">
3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198
														<option <?php if ($pconfig['channel'] == 0) echo "selected=\"selected\""; ?> value="0"><?=gettext("Auto"); ?></option>
														<?php
														foreach($wl_modes as $wl_standard => $wl_channels) {
															if($wl_standard == "11g") { $wl_standard = "11b/g"; }
															else if($wl_standard == "11ng") { $wl_standard = "11b/g/n"; }
															else if($wl_standard == "11na") { $wl_standard = "11a/n"; }
															foreach($wl_channels as $wl_channel) {
																echo "<option ";
																if ($pconfig['channel'] == "$wl_channel") {
																	echo "selected=\"selected\" ";
																}
																echo "value=\"$wl_channel\">$wl_standard - $wl_channel";
																if(isset($wl_chaninfo[$wl_channel]))
																	echo " ({$wl_chaninfo[$wl_channel][1]} @ {$wl_chaninfo[$wl_channel][2]} / {$wl_chaninfo[$wl_channel][3]})";
																echo "</option>\n";
															}
														}
														?>
													</select>
													<br />
													<?=gettext("Legend: wireless standards - channel # (frequency @ max TX power / TX power allowed in reg. domain)"); ?>
													<br />
													<?=gettext("Note: Not all channels may be supported by your card.  Auto may override the wireless standard selected above."); ?>
												</td>
											</tr>
											<?php if (isset($wl_sysctl["{$wl_sysctl_prefix}.diversity"]) || isset($wl_sysctl["{$wl_sysctl_prefix}.txantenna"]) || isset($wl_sysctl["{$wl_sysctl_prefix}.rxantenna"])): ?>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Antenna settings"); ?></td>
												<td class="vtable">
													<table border="0" cellpadding="0" cellspacing="0" summary="antenna settings">
														<tr>
															<?php if (isset($wl_sysctl["{$wl_sysctl_prefix}.diversity"])): ?>
															<td>
																<?=gettext("Diversity"); ?><br />
3199
																<select name="diversity" class="selectpicker" data-style="btn-default" id="diversity">
3200 3201 3202 3203 3204 3205 3206 3207 3208 3209
																	<option <?php if (!isset($pconfig['diversity'])) echo "selected=\"selected\""; ?> value=""><?=gettext("Default"); ?></option>
																	<option <?php if ($pconfig['diversity'] === '0') echo "selected=\"selected\""; ?> value="0"><?=gettext("Off"); ?></option>
																	<option <?php if ($pconfig['diversity'] === '1') echo "selected=\"selected\""; ?> value="1"><?=gettext("On"); ?></option>
																</select>
															</td>
															<td>&nbsp;&nbsp;</td>
															<?php endif; ?>
															<?php if (isset($wl_sysctl["{$wl_sysctl_prefix}.txantenna"])): ?>
															<td>
																<?=gettext("Transmit antenna"); ?><br />
3210
																<select name="txantenna" class="selectpicker" data-style="btn-default" id="txantenna">
3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221
																	<option <?php if (!isset($pconfig['txantenna'])) echo "selected=\"selected\""; ?> value=""><?=gettext("Default"); ?></option>
																	<option <?php if ($pconfig['txantenna'] === '0') echo "selected=\"selected\""; ?> value="0"><?=gettext("Auto"); ?></option>
																	<option <?php if ($pconfig['txantenna'] === '1') echo "selected=\"selected\""; ?> value="1"><?=gettext("#1"); ?></option>
																	<option <?php if ($pconfig['txantenna'] === '2') echo "selected=\"selected\""; ?> value="2"><?=gettext("#2"); ?></option>
																</select>
															</td>
															<td>&nbsp;&nbsp;</td>
															<?php endif; ?>
															<?php if (isset($wl_sysctl["{$wl_sysctl_prefix}.rxantenna"])): ?>
															<td>
																<?=gettext("Receive antenna"); ?><br />
3222
																<select name="rxantenna" class="selectpicker" data-style="btn-default" id="rxantenna">
3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251
																	<option <?php if (!isset($pconfig['rxantenna'])) echo "selected=\"selected\""; ?> value=""><?=gettext("Default"); ?></option>
																	<option <?php if ($pconfig['rxantenna'] === '0') echo "selected=\"selected\""; ?> value="0"><?=gettext("Auto"); ?></option>
																	<option <?php if ($pconfig['rxantenna'] === '1') echo "selected=\"selected\""; ?> value="1"><?=gettext("#1"); ?></option>
																	<option <?php if ($pconfig['rxantenna'] === '2') echo "selected=\"selected\""; ?> value="2"><?=gettext("#2"); ?></option>
																</select>
															</td>
															<?php endif; ?>
														</tr>
													</table>
													<br />
													<?=gettext("Note: The antenna numbers do not always match up with the labels on the card."); ?>
												</td>
											</tr>
											<?php endif; ?>
											<?php if (isset($wl_sysctl["{$wl_sysctl_prefix}.slottime"]) && isset($wl_sysctl["{$wl_sysctl_prefix}.acktimeout"]) && isset($wl_sysctl["{$wl_sysctl_prefix}.ctstimeout"])): ?>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Distance setting"); ?></td>
												<td class="vtable">
													<input name="distance" type="text" class="form-control unknown" id="distance" size="5" value="<?=htmlspecialchars($pconfig['distance']);?>" />
													<br />
													<?=gettext("Note: This field can be used to tune ACK/CTS timers to fit the distance between AP and Client"); ?><br />
													<?=gettext("(measured in Meters and works only for Atheros based cards !)"); ?>
												</td>
											</tr>
											<?php endif; ?>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Regulatory settings"); ?></td>
												<td class="vtable">
													<?=gettext("Regulatory domain"); ?><br />
3252
													<select name="regdomain" class="selectpicker" data-style="btn-default" id="regdomain">
3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267
														<option <?php if (empty($pconfig['regdomain'])) echo "selected=\"selected\""; ?> value=""><?=gettext("Default"); ?></option>
														<?php
														foreach($wl_regdomains as $wl_regdomain_key => $wl_regdomain) {
															echo "<option ";
															if ($pconfig['regdomain'] == $wl_regdomains_attr[$wl_regdomain_key]['ID']) {
																echo "selected=\"selected\" ";
															}
															echo "value=\"{$wl_regdomains_attr[$wl_regdomain_key]['ID']}\">{$wl_regdomain['name']}</option>\n";
														}
														?>
													</select>
													<br />
													<?=gettext("Note: Some cards have a default that is not recognized and require changing the regulatory domain to one in this list for the changes to other regulatory settings to work."); ?>
													<br /><br />
													<?=gettext("Country (listed with country code and regulatory domain)"); ?><br />
3268
													<select name="regcountry" class="selectpicker" data-style="btn-default" id="regcountry">
3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283
														<option <?php if (empty($pconfig['regcountry'])) echo "selected=\"selected\""; ?> value=""><?=gettext("Default"); ?></option>
														<?php
														foreach($wl_countries as $wl_country_key => $wl_country) {
															echo "<option ";
															if ($pconfig['regcountry'] == $wl_countries_attr[$wl_country_key]['ID']) {
																echo "selected=\"selected\" ";
															}
															echo "value=\"{$wl_countries_attr[$wl_country_key]['ID']}\">{$wl_country['name']} -- ({$wl_countries_attr[$wl_country_key]['ID']}, " . strtoupper($wl_countries_attr[$wl_country_key]['rd'][0]['REF']) . ")</option>\n";
														}
														?>
													</select>
													<br />
													<?=gettext("Note: Any country setting other than \"Default\" will override the regulatory domain setting"); ?>.
													<br /><br />
													<?=gettext("Location"); ?><br />
3284
													<select name="reglocation" class="selectpicker" data-style="btn-default" id="reglocation">
3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304
														<option <?php if (empty($pconfig['reglocation'])) echo "selected=\"selected\""; ?> value=""><?=gettext("Default"); ?></option>
														<option <?php if ($pconfig['reglocation'] == 'indoor') echo "selected=\"selected\""; ?> value="indoor"><?=gettext("Indoor"); ?></option>
														<option <?php if ($pconfig['reglocation'] == 'outdoor') echo "selected=\"selected\""; ?> value="outdoor"><?=gettext("Outdoor"); ?></option>
														<option <?php if ($pconfig['reglocation'] == 'anywhere') echo "selected=\"selected\""; ?> value="anywhere"><?=gettext("Anywhere"); ?></option>
													</select>
													<br /><br />
													<?=gettext("These settings may affect which channels are available and the maximum transmit power allowed on those channels.  Using the correct settings to comply with local regulatory requirements is recommended."); ?>
													<br />
													<?=gettext("Note: All wireless networks on this interface will be temporarily brought down when changing regulatory settings.  Some of the regulatory domains or country codes may not be allowed by some cards.  These settings may not be able to add additional channels that are not already supported."); ?>
												</td>
											</tr>
											<tr>
												<td colspan="2" valign="top" height="16"></td>
											</tr>
											<tr>
												<td colspan="2" valign="top" class="listtopic"><?=gettext("Network-specific wireless configuration");?></td>
											</tr>
											<tr>
												<td valign="top" class="vncellreq"><?=gettext("Mode"); ?></td>
												<td class="vtable">
3305
													<select name="mode" class="selectpicker" data-style="btn-default" id="mode">
3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323
														<option <?php if ($pconfig['mode'] == 'bss') echo "selected=\"selected\"";?> value="bss"><?=gettext("Infrastructure (BSS)"); ?></option>
														<option <?php if ($pconfig['mode'] == 'adhoc') echo "selected=\"selected\"";?> value="adhoc"><?=gettext("Ad-hoc (IBSS)"); ?></option>
														<option <?php if ($pconfig['mode'] == 'hostap') echo "selected=\"selected\"";?> value="hostap"><?=gettext("Access Point"); ?></option>
													</select>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncellreq"><?=gettext("SSID"); ?></td>
												<td class="vtable">
													<input name="ssid" type="text" class="form-control unknown" id="ssid" size="20" value="<?=htmlspecialchars($pconfig['ssid']); ?>" />
													<br />
													<?=gettext("Note: Only required in Access Point mode. If left blank in Ad-hoc or Infrastructure mode, this interface will connect to any available SSID"); ?>
												</td>
											</tr>
											<?php if (isset($wl_modes['11ng']) || isset($wl_modes['11na'])): ?>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Minimum wireless standard"); ?></td>
												<td class="vtable">
3324
													<select name="puremode" class="selectpicker" data-style="btn-default" id="puremode">
3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447
														<option <?php if ($pconfig['puremode'] == 'any') echo "selected=\"selected\"";?> value="any"><?=gettext("Any"); ?></option>
														<?php if (isset($wl_modes['11g'])): ?>
														<option <?php if ($pconfig['puremode'] == '11g') echo "selected=\"selected\"";?> value="11g"><?=gettext("802.11g"); ?></option>
														<?php endif; ?>
														<option <?php if ($pconfig['puremode'] == '11n') echo "selected=\"selected\"";?> value="11n"><?=gettext("802.11n"); ?></option>
													</select>
													<br />
													<?=gettext("When operating as an access point, allow only stations capable of the selected wireless standard to associate (stations not capable are not permitted to associate)."); ?>
												</td>
											</tr>
											<?php elseif (isset($wl_modes['11g'])): ?>
											<tr>
												<td valign="top" class="vncell"><?=gettext("802.11g only"); ?></td>
												<td class="vtable">
													<input name="puremode" type="checkbox" value="11g"  class="form-control" id="puremode" <?php if ($pconfig['puremode'] == '11g') echo "checked=\"checked\"";?> />
													<br /><?=gettext("When operating as an access point in 802.11g mode, allow only 11g-capable stations to associate (11b-only stations are not permitted to associate)."); ?>
												</td>
											</tr>
											<?php endif; ?>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Allow intra-BSS communication"); ?></td>
												<td class="vtable">
													<input name="apbridge_enable" type="checkbox" value="yes"  class="form-control" id="apbridge_enable" <?php if ($pconfig['apbridge_enable']) echo "checked=\"checked\"";?> />
													<br />
													<?=gettext("When operating as an access point, enable this if you want to pass packets between wireless clients directly."); ?>
													<br />
													<?=gettext("Disabling the internal bridging is useful when traffic is to be processed with packet filtering."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Enable WME"); ?></td>
												<td class="vtable">
													<input name="wme_enable" type="checkbox" class="form-control" id="wme_enable" value="yes" <?php if ($pconfig['wme_enable']) echo "checked=\"checked\"";?> />
													<br /><?=gettext("Setting this option will force the card to use WME (wireless QoS)."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Enable Hide SSID"); ?></td>
												<td class="vtable">
													<input name="hidessid_enable" type="checkbox" class="form-control" id="hidessid_enable" value="yes" <?php if ($pconfig['hidessid_enable']) echo "checked=\"checked\"";?> />
													<br />
													<?=gettext("Setting this option will force the card to NOT broadcast its SSID"); ?>
													<br />
													<?=gettext("(this might create problems for some clients)."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("WEP"); ?></td>
												<td class="vtable">
													<input name="wep_enable" type="checkbox" id="wep_enable" value="yes" <?php if ($pconfig['wep_enable']) echo "checked=\"checked\""; ?> />
													<strong><?=gettext("Enable WEP"); ?></strong>
													<table border="0" cellspacing="0" cellpadding="0" summary="wep">
														<tr>
															<td>&nbsp;</td>
															<td>&nbsp;</td>
															<td>&nbsp;<?=gettext("TX key"); ?>&nbsp;</td>
														</tr>
														<tr>
															<td><?=gettext("Key 1:"); ?>&nbsp;&nbsp;</td>
															<td>
																<input name="key1" type="text" class="form-control unknown" id="key1" size="30" value="<?=htmlspecialchars($pconfig['key1']);?>" />
															</td>
															<td align="center">
																<input name="txkey" type="radio" value="1" <?php if ($pconfig['txkey'] == 1) echo "checked=\"checked\"";?> />
															</td>
														</tr>
														<tr>
															<td><?=gettext("Key 2:"); ?>&nbsp;&nbsp;</td>
															<td>
																<input name="key2" type="text" class="form-control unknown" id="key2" size="30" value="<?=htmlspecialchars($pconfig['key2']);?>" />
															</td>
															<td align="center">
																<input name="txkey" type="radio" value="2" <?php if ($pconfig['txkey'] == 2) echo "checked=\"checked\"";?> />
															</td>
														</tr>
														<tr>
															<td><?=gettext("Key 3:"); ?>&nbsp;&nbsp;</td>
															<td>
																<input name="key3" type="text" class="form-control unknown" id="key3" size="30" value="<?=htmlspecialchars($pconfig['key3']);?>" />
															</td>
															<td align="center">
																<input name="txkey" type="radio" value="3" <?php if ($pconfig['txkey'] == 3) echo "checked=\"checked\"";?> />
															</td>
														</tr>
														<tr>
															<td><?=gettext("Key 4:"); ?>&nbsp;&nbsp;</td>
															<td>
																<input name="key4" type="text" class="form-control unknown" id="key4" size="30" value="<?=htmlspecialchars($pconfig['key4']);?>" />
															</td>
															<td align="center">
																<input name="txkey" type="radio" value="4" <?php if ($pconfig['txkey'] == 4) echo "checked=\"checked\"";?> />
															</td>
														</tr>
													</table>
													<br />
													<?=gettext("40 (64) bit keys may be entered as 5 ASCII characters or 10 hex digits preceded by '0x'."); ?><br />
													<?=gettext("104 (128) bit keys may be entered as 13 ASCII characters or 26 hex digits preceded by '0x'."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("WPA"); ?></td>
												<td class="vtable">
													<input name="wpa_enable" type="checkbox" class="form-control" id="wpa_enable" value="yes" <?php if ($pconfig['wpa_enable']) echo "checked=\"checked\""; ?> />
													<strong><?=gettext("Enable WPA"); ?></strong>
													<br /><br />
													<table border="0" cellspacing="0" cellpadding="0" summary="wpa">
														<tr>
															<td>&nbsp;</td>
															<td>&nbsp;<?=gettext("WPA Pre-Shared Key"); ?>&nbsp;</td>
														</tr>
														<tr>
															<td><?=gettext("PSK:"); ?>&nbsp;&nbsp;</td>
															<td>
																<input name="passphrase" type="text" class="form-control unknown" id="passphrase" size="66" value="<?=htmlspecialchars($pconfig['passphrase']);?>" />
															</td>
														</tr>
													</table>
													<br /><?=gettext("Passphrase must be from 8 to 63 characters."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("WPA Mode"); ?></td>
												<td class="vtable">
3448
													<select name="wpa_mode" class="selectpicker" data-style="btn-default" id="wpa_mode">
3449 3450 3451 3452 3453 3454 3455 3456 3457
														<option <?php if ($pconfig['wpa_mode'] == '1') echo "selected=\"selected\"";?> value="1"><?=gettext("WPA"); ?></option>
														<option <?php if ($pconfig['wpa_mode'] == '2') echo "selected=\"selected\"";?> value="2"><?=gettext("WPA2"); ?></option>
														<option <?php if ($pconfig['wpa_mode'] == '3') echo "selected=\"selected\"";?> value="3"><?=gettext("Both"); ?></option>
													</select>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("WPA Key Management Mode"); ?></td>
												<td class="vtable">
3458
													<select name="wpa_key_mgmt" class="selectpicker" data-style="btn-default" id="wpa_key_mgmt">
3459 3460 3461 3462 3463 3464 3465 3466 3467
														<option <?php if ($pconfig['wpa_key_mgmt'] == 'WPA-PSK') echo "selected=\"selected\"";?> value="WPA-PSK"><?=gettext("Pre-Shared Key"); ?></option>
														<option <?php if ($pconfig['wpa_key_mgmt'] == 'WPA-EAP') echo "selected=\"selected\"";?> value="WPA-EAP"><?=gettext("Extensible Authentication Protocol"); ?></option>
														<option <?php if ($pconfig['wpa_key_mgmt'] == 'WPA-PSK WPA-EAP') echo "selected=\"selected\"";?> value="WPA-PSK WPA-EAP"><?=gettext("Both"); ?></option>
													</select>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Authentication"); ?></td>
												<td class="vtable">
3468
													<select name="auth_algs" class="selectpicker" data-style="btn-default" id="auth_algs">
3469 3470 3471 3472 3473 3474 3475 3476 3477 3478
														<option <?php if ($pconfig['auth_algs'] == '1') echo "selected=\"selected\"";?> value="1"><?=gettext("Open System Authentication"); ?></option>
														<option <?php if ($pconfig['auth_algs'] == '2') echo "selected=\"selected\"";?> value="2"><?=gettext("Shared Key Authentication"); ?></option>
														<option <?php if ($pconfig['auth_algs'] == '3') echo "selected=\"selected\"";?> value="3"><?=gettext("Both"); ?></option>
													</select>
													<br /><?=gettext("Note: Shared Key Authentication requires WEP."); ?><br />
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("WPA Pairwise"); ?></td>
												<td class="vtable">
3479
													<select name="wpa_pairwise" class="selectpicker" data-style="btn-default" id="wpa_pairwise">
3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618
														<option <?php if ($pconfig['wpa_pairwise'] == 'CCMP TKIP') echo "selected=\"selected\"";?> value="CCMP TKIP"><?=gettext("Both"); ?></option>
														<option <?php if ($pconfig['wpa_pairwise'] == 'CCMP') echo "selected=\"selected\"";?> value="CCMP"><?=gettext("AES (recommended)"); ?></option>
														<option <?php if ($pconfig['wpa_pairwise'] == 'TKIP') echo "selected=\"selected\"";?> value="TKIP"><?=gettext("TKIP"); ?></option>
													</select>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Key Rotation"); ?></td>
												<td class="vtable">
													<input name="wpa_group_rekey" type="text" class="form-control unknown" id="wpa_group_rekey" size="30" value="<?php echo $pconfig['wpa_group_rekey'] ? $pconfig['wpa_group_rekey'] : "60";?>" />
													<br /><?=gettext("Allowed values are 1-9999 but should not be longer than Master Key Regeneration time."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Master Key Regeneration"); ?></td>
												<td class="vtable">
													<input name="wpa_gmk_rekey" type="text" class="form-control" id="wpa_gmk_rekey" size="30" value="<?php echo $pconfig['wpa_gmk_rekey'] ? $pconfig['wpa_gmk_rekey'] : "3600";?>" />
													<br /><?=gettext("Allowed values are 1-9999 but should not be shorter than Key Rotation time."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Strict Key Regeneration"); ?></td>
												<td class="vtable">
													<input name="wpa_strict_rekey" type="checkbox" value="yes"  class="form-control" id="wpa_strict_rekey" <?php if ($pconfig['wpa_strict_rekey']) echo "checked=\"checked\""; ?> />
													<br /><?=gettext("Setting this option will force the AP to rekey whenever a client disassociates."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Enable IEEE802.1X Authentication"); ?></td>
												<td class="vtable">
													<input name="ieee8021x" type="checkbox" value="yes"  class="form-control" id="ieee8021x" <?php if ($pconfig['ieee8021x']) echo "checked=\"checked\"";?> />
													<br /><?=gettext("Setting this option will enable 802.1x authentication."); ?>
													<br /><span class="red"><strong><?=gettext("NOTE"); ?>:</strong></span> <?=gettext("this option requires checking the \"Enable WPA box\"."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("802.1X Authentication Server IP Address"); ?></td>
												<td class="vtable">
													<input name="auth_server_addr" id="auth_server_addr" type="text" class="form-control unknown" size="66" value="<?=htmlspecialchars($pconfig['auth_server_addr']);?>" />
													<br /><?=gettext("Enter the IP address of the 802.1X Authentication Server.  This is commonly a Radius server (FreeRadius, Internet Authentication Services, etc.)"); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("802.1X Authentication Server Port"); ?></td>
												<td class="vtable">
													<input name="auth_server_port" id="auth_server_port" type="text" class="form-control unknown" size="66" value="<?=htmlspecialchars($pconfig['auth_server_port']);?>" />
													<br /><?=gettext("Leave blank for the default 1812 port."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("802.1X Authentication Server Shared Secret"); ?></td>
												<td class="vtable">
													<input name="auth_server_shared_secret" id="auth_server_shared_secret" type="text" class="form-control unknown" size="66" value="<?=htmlspecialchars($pconfig['auth_server_shared_secret']);?>" />
													<br />
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Secondary 802.1X Authentication Server IP Address"); ?></td>
												<td class="vtable">
													<input name="auth_server_addr2" id="auth_server_addr2" type="text" class="form-control unknown" size="66" value="<?=htmlspecialchars($pconfig['auth_server_addr2']);?>" />
													<br /><?=gettext("Enter the IP address of the 802.1X Authentication Server.  This is commonly a Radius server (FreeRadius, Internet Authentication Services, etc.)"); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Secondary 802.1X Authentication Server Port"); ?></td>
												<td class="vtable">
													<input name="auth_server_port2" id="auth_server_port2" type="text" class="form-control unknown" size="66" value="<?=htmlspecialchars($pconfig['auth_server_port2']);?>" />
													<br /><?=gettext("Leave blank for the default 1812 port."); ?>
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell"><?=gettext("Secondary 802.1X Authentication Server Shared Secret"); ?></td>
												<td class="vtable">
													<input name="auth_server_shared_secret2" id="auth_server_shared_secret2" type="text" class="form-control unknown" size="66" value="<?=htmlspecialchars($pconfig['auth_server_shared_secret2']);?>" />
													<br />
												</td>
											</tr>
											<tr>
												<td valign="top" class="vncell">802.1X <?=gettext("Authentication Roaming Preauth"); ?></td>
												<td class="vtable">
													<input name="rsn_preauth" id="rsn_preauth" type="checkbox" class="form-control unknown" size="66" value="yes" <?php if ($pconfig['rsn_preauth']) echo "checked=\"checked\""; ?> />
													<br />
												</td>
											</tr>
											<tr>
												<td colspan="2" valign="top" height="16"></td>
											</tr>
											<?php endif; ?>
											<tr>
												<td colspan="2" valign="top" class="listtopic"><?=gettext("Private networks"); ?></td>
											</tr>
											<tr>
												<td valign="middle" class="vncell">&nbsp;</td>
												<td class="vtable">
													<a name="rfc1918"></a>
													<input name="blockpriv" type="checkbox" id="blockpriv" value="yes" <?php if ($pconfig['blockpriv']) echo "checked=\"checked\""; ?> />
													<strong><?=gettext("Block private networks"); ?></strong><br />
													<?=gettext("When set, this option blocks traffic from IP addresses that are reserved " .
													"for private  networks as per RFC 1918 (10/8, 172.16/12, 192.168/16) as"); ?>
													<?=gettext("well as loopback addresses (127/8)."); ?>&nbsp;&nbsp; <?=gettext("You should generally " .
													"leave this option turned on, unless your WAN network lies in such " .
													"a private address space, too."); ?>
												</td>
											</tr>
											<tr>
												<td valign="middle" class="vncell">&nbsp;</td>
												<td class="vtable">
													<input name="blockbogons" type="checkbox" id="blockbogons" value="yes" <?php if ($pconfig['blockbogons']) echo "checked=\"checked\""; ?> />
													<strong><?=gettext("Block bogon networks"); ?></strong><br />
													<?=gettext("When set, this option blocks traffic from IP addresses that are reserved " .
													"(but not RFC 1918) or not yet assigned by IANA."); ?>&nbsp;&nbsp;
													<?=gettext("Bogons are prefixes that should never appear in the Internet routing table, " .
													"and obviously should not appear as the source address in any packets you receive."); ?>
													<br /><br />
													<?=gettext("Note: The update frequency can be changed under System->Advanced Firewall/NAT settings.")?>
												</td>
											</tr>
										</table> <!-- End "allcfg" table -->
										</div> <!-- End "allcfg" div -->

										<table width="100%" class="table table-striped"  border="0" cellpadding="6" cellspacing="0" summary="buttons">
											<tr>
												<td width="22%" valign="top">
													&nbsp;
												</td>
												<td width="78%">
													<br />
													<input id="save" name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" />
													<input id="cancel" type="button" class="btn btn-default" value="<?=gettext("Cancel");?>" onclick="window.location.href='<?=$referer;?>'" />
													<input name="if" type="hidden" id="if" value="<?=htmlspecialchars($if);?>" />
													<?php if ($wancfg['if'] == $a_ppps[$pppid]['if']) : ?>
													<input name="ppp_port" type="hidden" value="<?=htmlspecialchars($pconfig['port']);?>" />
													<?php endif; ?>
													<input name="ptpid" type="hidden" value="<?=htmlspecialchars($pconfig['ptpid']);?>" />
												</td>
											</tr>
										</table>
									</div>
								</form>
3619
							</div>
3620
						</div>
Ad Schellevis's avatar
Ad Schellevis committed
3621 3622 3623 3624
				</section>
			</div>
		</div>
	</section>
3625

Ad Schellevis's avatar
Ad Schellevis committed
3626 3627 3628 3629 3630 3631 3632 3633 3634
	<script type="text/javascript">
	//<![CDATA[
		var gatewayip;
		var name;
		var gatewayipv6;
		var namev6;
		function show_add_gateway() {
			document.getElementById("addgateway").style.display = '';
			document.getElementById("addgwbox").style.display = 'none';
3635
			jQuery('#gateway').selectpicker('hide');
Ad Schellevis's avatar
Ad Schellevis committed
3636 3637 3638 3639 3640 3641 3642 3643 3644
			document.getElementById("save").style.display = 'none';
			document.getElementById("cancel").style.display = 'none';
			document.getElementById("gwsave").style.display = '';
			document.getElementById("gwcancel").style.display = '';
			jQuery('#notebox').html("");
		}
		function show_add_gateway_v6() {
			document.getElementById("addgatewayv6").style.display = '';
			document.getElementById("addgwboxv6").style.display = 'none';
3645
			jQuery('#gatewayv6').selectpicker('hide');
Ad Schellevis's avatar
Ad Schellevis committed
3646 3647 3648 3649 3650 3651 3652 3653 3654
			document.getElementById("save").style.display = 'none';
			document.getElementById("cancel").style.display = 'none';
			document.getElementById("gwsave").style.display = '';
			document.getElementById("gwcancel").style.display = '';
			jQuery('#noteboxv6').html("");
		}
		function hide_add_gateway() {
			document.getElementById("addgateway").style.display = 'none';
			document.getElementById("addgwbox").style.display = '';
3655
			jQuery('#gateway').selectpicker('show');
Ad Schellevis's avatar
Ad Schellevis committed
3656 3657 3658 3659 3660 3661 3662 3663 3664
			document.getElementById("save").style.display = '';
			document.getElementById("cancel").style.display = '';
			document.getElementById("gwsave").style.display = '';
			document.getElementById("gwcancel").style.display = '';
			jQuery('#status').html('');
		}
		function hide_add_gateway_v6() {
			document.getElementById("addgatewayv6").style.display = 'none';
			document.getElementById("addgwboxv6").style.display = '';
3665
			jQuery('#gatewayv6').selectpicker('show');
Ad Schellevis's avatar
Ad Schellevis committed
3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752
			document.getElementById("save").style.display = '';
			document.getElementById("cancel").style.display = '';
			document.getElementById("gwsave").style.display = '';
			document.getElementById("gwcancel").style.display = '';
			jQuery('#statusv6').html('');
		}
		function hide_add_gatewaysave() {
			document.getElementById("addgateway").style.display = 'none';
			var iface = jQuery('#if').val();
			name = jQuery('#name').val();
			var descr = jQuery('#gatewaydescr').val();
			gatewayip = jQuery('#gatewayip').val();

			var defaultgw = '';
			if (jQuery('#defaultgw').is(':checked'))
				defaultgw = '&defaultgw=on';
			var url = "system_gateways_edit.php";
			var pars = 'isAjax=true&ipprotocol=inet' + defaultgw + '&interface=' + escape(iface) + '&name=' + escape(name) + '&descr=' + escape(descr) + '&gateway=' + escape(gatewayip);
			jQuery.ajax(
				url,
				{
					type: 'post',
					data: pars,
					error: report_failure,
					success: save_callback
				});
		}
		function hide_add_gatewaysave_v6() {
			document.getElementById("addgatewayv6").style.display = 'none';
			var iface = jQuery('#if').val();
			name = jQuery('#namev6').val();
			var descr = jQuery('#gatewaydescrv6').val();
			gatewayip = jQuery('#gatewayipv6').val();
			var defaultgw = '';
			if (jQuery('#defaultgwv6').is(':checked'))
				defaultgw = '&defaultgw=on';
			var url_v6 = "system_gateways_edit.php";
			var pars_v6 = 'isAjax=true&ipprotocol=inet6' + defaultgw + '&interface=' + escape(iface) + '&name=' + escape(name) + '&descr=' + escape(descr) + '&gateway=' + escape(gatewayip);
			jQuery.ajax(
				url_v6,
				{
					type: 'post',
					data: pars_v6,
					error: report_failure_v6,
					success: save_callback_v6
				});
		}
		function addOption(selectbox,text,value)
		{
			var optn = document.createElement("OPTION");
			optn.text = text;
			optn.value = value;
			selectbox.append(optn);
			selectbox.prop('selectedIndex',selectbox.children().length-1);
			jQuery('#notebox').html("<p><strong><?=gettext("NOTE:"); ?><\/strong> <?=gettext("You can manage Gateways"); ?> <a target='_blank' href='system_gateways.php'><?=gettext("here"); ?><\/a>.<\/p>");
		}
		function addOption_v6(selectbox,text,value)
		{
			var optn = document.createElement("OPTION");
			optn.text = text;
			optn.value = value;
			selectbox.append(optn);
			selectbox.prop('selectedIndex',selectbox.children().length-1);
			jQuery('#noteboxv6').html("<p><strong><?=gettext("NOTE:"); ?><\/strong> <?=gettext("You can manage Gateways"); ?> <a target='_blank' href='system_gateways.php'><?=gettext("here"); ?><\/a>.<\/p>");
		}
		function report_failure(request, textStatus, errorThrown) {
			if (textStatus === "error" && request.getResponseHeader("Content-Type") === "text/plain") {
				alert(request.responseText);
			} else {
				alert("Sorry, we could not create your IPv4 gateway at this time.");
			}
			hide_add_gateway();
		}
		function report_failure_v6(request, textStatus, errorThrown) {
			if (textStatus === "error" && request.getResponseHeader("Content-Type") === "text/plain") {
				alert(request.responseText);
			} else {
				alert("Sorry, we could not create your IPv6 gateway at this time.");
			}
			hide_add_gateway_v6();
		}
		function save_callback(response) {
			if(response) {
				document.getElementById("addgateway").style.display = 'none';
				hide_add_gateway();
				var gwtext = escape(name) + " - " + gatewayip;
				addOption(jQuery('#gateway'), gwtext, name);
3753
				jQuery('#gateway').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768
			} else {
				report_failure();
			}
		}
		function show_advanced_media() {
			document.getElementById("showadvmediabox").innerHTML='';
			aodiv = document.getElementById('showmediaadv');
			aodiv.style.display = "block";
		}
		function save_callback_v6(response_v6) {
			if(response_v6) {
				document.getElementById("addgatewayv6").style.display = 'none';
				hide_add_gateway_v6();
				var gwtext_v6 = escape(name) + " - " + gatewayip;
				addOption_v6(jQuery('#gatewayv6'), gwtext_v6, name);
3769
				jQuery('#gateway6').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780
			} else {
				report_failure_v6();
			}
		}
		<?php
		echo "show_allcfg(document.iform.enable);";
		echo "updateType('{$pconfig['type']}');\n";
		echo "updateTypeSix('{$pconfig['type6']}');\n";
		?>
	//]]>
	</script>
3781
	<?php include("foot.inc"); ?>