firewall_nat_1to1_edit.php 22.8 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
	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.
*/

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

$referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/firewall_nat_1to1.php');

$specialsrcdst = explode(" ", "any pptp pppoe l2tp openvpn");
$ifdisp = get_configured_interface_with_descr();
foreach ($ifdisp as $kif => $kdescr) {
	$specialsrcdst[] = "{$kif}";
	$specialsrcdst[] = "{$kif}ip";
}

if (!is_array($config['nat']['onetoone']))
	$config['nat']['onetoone'] = array();

$a_1to1 = &$config['nat']['onetoone'];

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

$after = $_GET['after'];
if (isset($_POST['after']))
	$after = $_POST['after'];

if (isset($_GET['dup']))  {
	$id = $_GET['dup'];
	$after = $_GET['dup'];
}

if (isset($id) && $a_1to1[$id]) {
	$pconfig['disabled'] = isset($a_1to1[$id]['disabled']);

	address_to_pconfig($a_1to1[$id]['source'], $pconfig['src'],
		$pconfig['srcmask'], $pconfig['srcnot'],
		$pconfig['srcbeginport'], $pconfig['srcendport']);

	address_to_pconfig($a_1to1[$id]['destination'], $pconfig['dst'],
		$pconfig['dstmask'], $pconfig['dstnot'],
		$pconfig['dstbeginport'], $pconfig['dstendport']);

	$pconfig['interface'] = $a_1to1[$id]['interface'];
	if (!$pconfig['interface'])
		$pconfig['interface'] = "wan";

	$pconfig['external'] = $a_1to1[$id]['external'];
	$pconfig['descr'] = $a_1to1[$id]['descr'];
	$pconfig['natreflection'] = $a_1to1[$id]['natreflection'];
} else
	$pconfig['interface'] = "wan";

if (isset($_GET['dup']))
	unset($id);

if ($_POST) {

	unset($input_errors);
	$pconfig = $_POST;
	/*  run through $_POST items encoding HTML entties so that the user
	 *  cannot think he is slick and perform a XSS attack on the unwilling
	 */
	foreach ($_POST as $key => $value) {
		$temp = str_replace(">", "", $value);
		$newpost = htmlentities($temp);
		if($newpost <> $temp)
			$input_errors[] = sprintf(gettext("Invalid characters detected (%s).  Please remove invalid characters and save again."),$temp);
	}

	/* input validation */
	$reqdfields = explode(" ", "interface external");
	$reqdfieldsn = array(gettext("Interface"), gettext("External subnet"));
	if ($_POST['srctype'] == "single" || $_POST['srctype'] == "network") {
		$reqdfields[] = "src";
		$reqdfieldsn[] = gettext("Source address");
	}
	if ($_POST['dsttype'] == "single" || $_POST['dsttype'] == "network") {
		$reqdfields[] = "dst";
		$reqdfieldsn[] = gettext("Destination address");
	}

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

	if ($_POST['external'])
		$_POST['external'] = trim($_POST['external']);
	if ($_POST['src'])
		$_POST['src'] = trim($_POST['src']);
	if ($_POST['dst'])
		$_POST['dst'] = trim($_POST['dst']);

	if (is_specialnet($_POST['srctype'])) {
		$_POST['src'] = $_POST['srctype'];
		$_POST['srcmask'] = 0;
	} else if ($_POST['srctype'] == "single") {
		$_POST['srcmask'] = 32;
	}
	if (is_specialnet($_POST['dsttype'])) {
		$_POST['dst'] = $_POST['dsttype'];
		$_POST['dstmask'] = 0;
	} else if ($_POST['dsttype'] == "single") {
		$_POST['dstmask'] = 32;
	} else if (is_ipaddr($_POST['dsttype'])) {
		$_POST['dst'] = $_POST['dsttype'];
		$_POST['dstmask'] = 32;
		$_POST['dsttype'] = "single";
	}

	/* For external, user can enter only ip's */
	if (($_POST['external'] && !is_ipaddr($_POST['external'])))
		$input_errors[] = gettext("A valid external subnet must be specified.");

	/* For dst, if user enters an alias and selects "network" then disallow. */
	if ($_POST['dsttype'] == "network" && is_alias($_POST['dst']) )
		$input_errors[] = gettext("You must specify single host or alias for alias entries.");

	/* For src, user can enter only ip's or networks */
	if (!is_specialnet($_POST['srctype'])) {
		if (($_POST['src'] && !is_ipaddr($_POST['src']))) {
			$input_errors[] = sprintf(gettext("%s is not a valid internal IP address."), $_POST['src']);
		}
		if (($_POST['srcmask'] && !is_numericint($_POST['srcmask']))) {
			$input_errors[] = gettext("A valid internal bit count must be specified.");
		}
	}

	/* For dst, user can enter ip's, networks or aliases */
	if (!is_specialnet($_POST['dsttype'])) {
		if (($_POST['dst'] && !is_ipaddroralias($_POST['dst']))) {
			$input_errors[] = sprintf(gettext("%s is not a valid destination IP address or alias."), $_POST['dst']);
		}
		if (($_POST['dstmask'] && !is_numericint($_POST['dstmask']))) {
			$input_errors[] = gettext("A valid destination bit count must be specified.");
		}
	}

	/* check for overlaps with other 1:1 */
	foreach ($a_1to1 as $natent) {
		if (isset($id) && ($a_1to1[$id]) && ($a_1to1[$id] === $natent))
			continue;

		if (check_subnets_overlap($_POST['internal'], $_POST['subnet'], $natent['internal'], $natent['subnet'])) {
			//$input_errors[] = "Another 1:1 rule overlaps with the specified internal subnet.";
			//break;
		}
	}

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

		$natent['disabled'] = isset($_POST['disabled']) ? true:false;
		$natent['external'] = $_POST['external'];
		$natent['descr'] = $_POST['descr'];
		$natent['interface'] = $_POST['interface'];

		pconfig_to_address($natent['source'], $_POST['src'],
			$_POST['srcmask'], $_POST['srcnot']);

		pconfig_to_address($natent['destination'], $_POST['dst'],
			$_POST['dstmask'], $_POST['dstnot']);

		if ($_POST['natreflection'] == "enable" || $_POST['natreflection'] == "disable")
			$natent['natreflection'] = $_POST['natreflection'];
		else
			unset($natent['natreflection']);

		if (isset($id) && $a_1to1[$id])
			$a_1to1[$id] = $natent;
		else {
			if (is_numeric($after))
				array_splice($a_1to1, $after+1, 0, array($natent));
			else
				$a_1to1[] = $natent;
		}

		if (write_config())
			mark_subsystem_dirty('natconf');
		header("Location: firewall_nat_1to1.php");
		exit;
	}
}

$pgtitle = array(gettext("Firewall"),gettext("NAT"),gettext("1:1"),gettext("Edit"));
include("head.inc");

?>

Ad Schellevis's avatar
Ad Schellevis committed
217 218
<body>
<?php include("fbegin.inc"); ?>
219

Ad Schellevis's avatar
Ad Schellevis committed
220 221 222 223 224 225 226 227
	<script type="text/javascript" src="/javascript/suggestions.js"></script>
	<script type="text/javascript" src="/javascript/autosuggest.js"></script>
	<script type="text/javascript">
	//<![CDATA[
	function typesel_change() {
		switch (document.iform.srctype.selectedIndex) {
			case 1: /* single */
				document.iform.src.disabled = 0;
228 229 230 231 232
				//document.iform.srcmask.value = "";
				//document.iform.srcmask.disabled = 1;
				jQuery('#srcmask').selectpicker('val','');
				jQuery('#srcmask').prop('disabled',true);
				jQuery('#srcmask').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
233 234 235
				break;
			case 2: /* network */
				document.iform.src.disabled = 0;
236 237 238
				//document.iform.srcmask.disabled = 0;
				jQuery('#srcmask').prop('disabled',false);
				jQuery('#srcmask').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
239 240 241 242
				break;
			default:
				document.iform.src.value = "";
				document.iform.src.disabled = 1;
243 244 245 246 247
				//document.iform.srcmask.value = "";
				//document.iform.srcmask.disabled = 1;
				jQuery('#srcmask').selectpicker('val','');
				jQuery('#srcmask').prop('disabled',true);
				jQuery('#srcmask').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
248 249 250 251 252
				break;
		}
		switch (document.iform.dsttype.selectedIndex) {
			case 1: /* single */
				document.iform.dst.disabled = 0;
253 254 255 256 257
				//document.iform.dstmask.value = "";
				//document.iform.dstmask.disabled = 1;
				jQuery('#dstmask').selectpicker('val','');
				jQuery('#dstmask').prop('disabled',true);
				jQuery('#dstmask').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
258 259 260
				break;
			case 2: /* network */
				document.iform.dst.disabled = 0;
261 262 263
				//document.iform.dstmask.disabled = 0;
				jQuery('#dstmask').prop('disabled',false);
				jQuery('#dstmask').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
264 265 266 267
				break;
			default:
				document.iform.dst.value = "";
				document.iform.dst.disabled = 1;
268 269 270 271 272
				//document.iform.dstmask.value = "";
				//document.iform.dstmask.disabled = 1;
				jQuery('#dstmask').selectpicker('val','');
				jQuery('#dstmask').prop('disabled',true);
				jQuery('#dstmask').selectpicker('refresh');
Ad Schellevis's avatar
Ad Schellevis committed
273 274
				break;
		}
Ad Schellevis's avatar
Ad Schellevis committed
275
	}
Ad Schellevis's avatar
Ad Schellevis committed
276 277 278 279 280 281
	//]]>
	</script>

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

		<div class="container-fluid">
282 283 284

			<div class="row">

Ad Schellevis's avatar
Ad Schellevis committed
285 286 287 288
				<?php
				if ($input_errors)
					print_input_errors($input_errors);
				?>
289

Ad Schellevis's avatar
Ad Schellevis committed
290
			    <section class="col-xs-12">
291 292 293 294 295 296 297

				<div class="content-box">

                        <form action="firewall_nat_1to1_edit.php" method="post" name="iform" id="iform">

				<div class="table-responsive">
					<table class="table table-striped table-sort">
Ad Schellevis's avatar
Ad Schellevis committed
298 299 300 301 302 303 304 305 306 307 308 309 310 311
									<tr>
										<td colspan="2" valign="top" class="listtopic"><?=gettext("Edit NAT 1:1 entry"); ?></td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Disabled"); ?></td>
										<td width="78%" class="vtable">
											<input name="disabled" type="checkbox" id="disabled" value="yes" <?php if ($pconfig['disabled']) echo "checked=\"checked\""; ?> />
											<strong><?=gettext("Disable this rule"); ?></strong><br />
											<span class="vexpl"><?=gettext("Set this option to disable this rule without removing it from the list."); ?></span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Interface"); ?></td>
										<td width="78%" class="vtable">
312
											<select name="interface" class="selectpicker" data-live-search="true">
Ad Schellevis's avatar
Ad Schellevis committed
313 314 315 316
							<?php
												foreach ($ifdisp as $if => $ifdesc)
													if(have_ruleint_access($if))
														$interfaces[$if] = $ifdesc;
317

Ad Schellevis's avatar
Ad Schellevis committed
318 319 320
												if ($config['l2tp']['mode'] == "server")
													if(have_ruleint_access("l2tp"))
														$interfaces['l2tp'] = "L2TP VPN";
321

Ad Schellevis's avatar
Ad Schellevis committed
322 323 324
												if ($config['pptpd']['mode'] == "server")
													if(have_ruleint_access("pptp"))
														$interfaces['pptp'] = "PPTP VPN";
325

Ad Schellevis's avatar
Ad Schellevis committed
326 327
												if (is_pppoe_server_enabled() && have_ruleint_access("pppoe"))
													$interfaces['pppoe'] = "PPPoE VPN";
328

Ad Schellevis's avatar
Ad Schellevis committed
329 330 331 332
												/* add ipsec interfaces */
												if (isset($config['ipsec']['enable']) || isset($config['ipsec']['client']['enable']))
													if(have_ruleint_access("enc0"))
														$interfaces["enc0"] = "IPsec";
333

Ad Schellevis's avatar
Ad Schellevis committed
334 335 336
												/* add openvpn/tun interfaces */
												if  ($config['openvpn']["openvpn-server"] || $config['openvpn']["openvpn-client"])
													$interfaces["openvpn"] = "OpenVPN";
337

Ad Schellevis's avatar
Ad Schellevis committed
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
												foreach ($interfaces as $iface => $ifacename):
							?>
													<option value="<?=$iface;?>" <?php if ($iface == $pconfig['interface']) echo "selected=\"selected\""; ?>>
														<?=htmlspecialchars($ifacename);?>
													</option>
							<?php
												endforeach;
							?>
											</select><br />
										  <span class="vexpl"><?=gettext("Choose which interface this rule applies to"); ?>.<br />
										  <?=gettext("Hint: in most cases, you'll want to use WAN here"); ?>.</span></td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("External subnet IP"); ?></td>
										<td width="78%" class="vtable">
											<input name="external" type="text" class="formfld" id="external" size="20" value="<?=htmlspecialchars($pconfig['external']);?>" />
											<br />
											<span class="vexpl">
												<?=gettext("Enter the external (usually on a WAN) subnet's starting address for the 1:1 mapping.  " .
													"The subnet mask from the internal address below will be applied to this IP address."); ?><br />
												<?=gettext("Hint: this is generally an address owned by the router itself on the selected interface."); ?>
											</span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Internal IP"); ?></td>
										<td width="78%" class="vtable">
											<input name="srcnot" type="checkbox" id="srcnot" value="yes" <?php if ($pconfig['srcnot']) echo "checked=\"checked\""; ?> />
											<strong><?=gettext("not"); ?></strong>
											<br />
											<?=gettext("Use this option to invert the sense of the match."); ?>
											<br />
											<br />
											<table border="0" cellspacing="0" cellpadding="0" summary="source">
												<tr>
													<td><?=gettext("Type:"); ?>&nbsp;&nbsp;</td>
													<td>
375
														<select name="srctype" class="selectpicker" onchange="typesel_change()">
Ad Schellevis's avatar
Ad Schellevis committed
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
							<?php
														$sel = is_specialnet($pconfig['src']);
							?>
															<option value="any"     <?php if ($pconfig['src'] == "any") { echo "selected=\"selected\""; } ?>><?=gettext("any"); ?></option>
															<option value="single"  <?php if ((($pconfig['srcmask'] == 32) || !isset($pconfig['srcmask'])) && !$sel) { echo "selected=\"selected\""; $sel = 1; } ?>>
																<?=gettext("Single host"); ?>
															</option>
															<option value="network" <?php if (!$sel) echo "selected=\"selected\""; ?>><?=gettext("Network"); ?></option>
							<?php
														if(have_ruleint_access("pptp")):
							?>
															<option value="pptp"    <?php if ($pconfig['src'] == "pptp") { echo "selected=\"selected\""; } ?>><?=gettext("PPTP clients"); ?></option>
							<?php
														endif;
														if(have_ruleint_access("pppoe")):
							?>
															<option value="pppoe"   <?php if ($pconfig['src'] == "pppoe") { echo "selected=\"selected\""; } ?>><?=gettext("PPPoE clients"); ?></option>
							<?php
														endif;
														if(have_ruleint_access("l2tp")):
							?>
															<option value="l2tp"   <?php if ($pconfig['src'] == "l2tp") { echo "selected=\"selected\""; } ?>><?=gettext("L2TP clients"); ?></option>
							<?php
														endif;
														foreach ($ifdisp as $ifent => $ifdesc):
															if(have_ruleint_access($ifent)):
							?>
																<option value="<?=$ifent;?>" <?php if ($pconfig['src'] == $ifent) { echo "selected=\"selected\""; } ?>>
																	<?=htmlspecialchars($ifdesc);?> <?=gettext("net"); ?>
																</option>
																<option value="<?=$ifent;?>ip"<?php if ($pconfig['src'] ==  $ifent . "ip") { echo "selected=\"selected\""; } ?>>
																	<?=$ifdesc?> <?=gettext("address");?>
																</option>
							<?php
															endif;
														endforeach;
							?>
														</select>
													</td>
												</tr>
												<tr>
													<td><?=gettext("Address:"); ?>&nbsp;&nbsp;</td>
													<td>
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
														<table>
					                                        <tr>
							                                    <td width="348px">
																	<input name="src" type="text" class="formfld" id="src" size="20" value="<?php if (!is_specialnet($pconfig['src'])) echo htmlspecialchars($pconfig['src']);?>" />
																</td>
																<td>
																	<select name="srcmask" class="selectpicker" id="srcmask" data-width="auto">
																		<?php
																			for ($i = 31; $i > 0; $i--):
																		?>
																		<option value="<?=$i;?>" <?php if ($i == $pconfig['srcmask']) echo "selected=\"selected\""; ?>><?=$i;?></option>
																		<?php
																			endfor;
																		?>
																	</select>
																</td>
															</tr>
														</table>
Ad Schellevis's avatar
Ad Schellevis committed
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
													</td>
												</tr>
											</table>
											<br />
											<span class="vexpl"><?=gettext("Enter the internal (LAN) subnet for the 1:1 mapping. The subnet size specified for the internal subnet will be applied to the external subnet."); ?></span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Destination"); ?></td>
										<td width="78%" class="vtable">
											<input name="dstnot" type="checkbox" id="dstnot" value="yes" <?php if ($pconfig['dstnot']) echo "checked=\"checked\""; ?> />
											<strong><?=gettext("not"); ?></strong>
											<br />
											<?=gettext("Use this option to invert the sense of the match."); ?>
											<br />
											<br />
											<table border="0" cellspacing="0" cellpadding="0" summary="destination">
												<tr>
													<td><?=gettext("Type:"); ?>&nbsp;&nbsp;</td>
													<td>
457
														<select name="dsttype" class="selectpicker" onchange="typesel_change()">
Ad Schellevis's avatar
Ad Schellevis committed
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
							<?php
														$sel = is_specialnet($pconfig['dst']); ?>
															<option value="any" <?php if (empty($pconfig['dst']) || $pconfig['dst'] == "any") { echo "selected=\"selected\""; } ?>><?=gettext("any"); ?></option>
															<option value="single" <?php if (($pconfig['dstmask'] == 32) && !$sel) { echo "selected=\"selected\""; $sel = 1; } ?>>
																<?=gettext("Single host or alias"); ?>
															</option>
															<option value="network" <?php if (!$sel && !empty($pconfig['dst'])) echo "selected=\"selected\""; ?>>
																<?=gettext("Network"); ?>
															</option>
							<?php
														if(have_ruleint_access("pptp")):
							?>
															<option value="pptp" <?php if ($pconfig['dst'] == "pptp") { echo "selected=\"selected\""; } ?>>
																<?=gettext("PPTP clients"); ?>
															</option>
							<?php
														endif;
														if(have_ruleint_access("pppoe")):
							?>
															<option value="pppoe" <?php if ($pconfig['dst'] == "pppoe") { echo "selected=\"selected\""; } ?>>
																<?=gettext("PPPoE clients"); ?>
															</option>
							<?php
														endif;
														if(have_ruleint_access("l2tp")):
							?>
															<option value="l2tp" <?php if ($pconfig['dst'] == "l2tp") { echo "selected=\"selected\""; } ?>>
																<?=gettext("L2TP clients"); ?>
															</option>
							<?php
														endif;
489

Ad Schellevis's avatar
Ad Schellevis committed
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
														foreach ($ifdisp as $if => $ifdesc):
															if(have_ruleint_access($if)):
							?>
																<option value="<?=$if;?>" <?php if ($pconfig['dst'] == $if) { echo "selected=\"selected\""; } ?>><?=htmlspecialchars($ifdesc);?>
																	<?=gettext("net"); ?>
																</option>
																<option value="<?=$if;?>ip"<?php if ($pconfig['dst'] == $if . "ip") { echo "selected=\"selected\""; } ?>>
																	<?=$ifdesc;?> <?=gettext("address");?>
																</option>
							<?php
															endif;
														endforeach;
							?>
														</select>
													</td>
												</tr>
												<tr>
													<td><?=gettext("Address:"); ?>&nbsp;&nbsp;</td>
													<td>
509
														<table>
510 511
											<tr>
													<td width="348px">
512 513 514 515 516 517 518 519 520 521 522 523 524 525
																	<input name="dst" type="text" autocomplete="off" class="formfldalias" id="dst" size="20" value="<?php if (!is_specialnet($pconfig['dst'])) echo htmlspecialchars($pconfig['dst']);?>" />
																</td>
																<td>
																	<select name="dstmask" class="selectpicker" id="dstmask" data-width="auto">
																	<?php
																								for ($i = 31; $i > 0; $i--):
																	?>
																									<option value="<?=$i;?>" <?php if ($i == $pconfig['dstmask']) echo "selected=\"selected\""; ?>><?=$i;?></option>
																	<?php
																								endfor;
																	?>
																</td>
															</tr>
														</table>
Ad Schellevis's avatar
Ad Schellevis committed
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
														</select>
													</td>
												</tr>
											</table>
											<br />
											<span class="vexpl">
												<?=gettext("The 1:1 mapping will only be used for connections to or from the specified destination."); ?><br />
												<?=gettext("Hint: this is usually 'any'."); ?>
											</span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("Description"); ?></td>
										<td width="78%" class="vtable">
											<input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>" />
											<br />
											<span class="vexpl">
												<?=gettext("You may enter a description here for your reference (not parsed)."); ?>
											</span>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("NAT reflection"); ?></td>
										<td width="78%" class="vtable">
550
											<select name="natreflection" class="selectpicker">
Ad Schellevis's avatar
Ad Schellevis committed
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
												<option value="default" <?php if ($pconfig['natreflection'] != "enable" && $pconfig['natreflection'] != "disable") echo "selected=\"selected\""; ?>>
													<?=gettext("use system default"); ?>
												</option>
												<option value="enable" <?php if ($pconfig['natreflection'] == "enable") echo "selected=\"selected\""; ?>>
													<?=gettext("enable"); ?>
												</option>
												<option value="disable" <?php if ($pconfig['natreflection'] == "disable") echo "selected=\"selected\""; ?>>
													<?=gettext("disable"); ?>
												</option>
											</select>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top">&nbsp;</td>
										<td width="78%">
											<input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" />
											<input type="button" class="btn btn-default" value="<?=gettext("Cancel");?>" onclick="window.location.href='<?=$referer;?>'" />
											<?php if (isset($id) && $a_1to1[$id]): ?>
											<input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
											<?php endif; ?>
										</td>
									</tr>
								</table>
574
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
575
                        </form>
576
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
577 578 579 580
			    </section>
			</div>
		</div>
	</section>
Ad Schellevis's avatar
Ad Schellevis committed
581 582 583 584 585 586 587 588 589 590 591 592

<script type="text/javascript">
//<![CDATA[
	typesel_change();
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
	var addressarray = <?= json_encode(get_alias_list(array("host", "network", "openvpn", "urltable"))) ?>;
	var oTextbox1 = new AutoSuggestControl(document.getElementById("dst"), new StateSuggestions(addressarray));
//]]>
</script>
593
<?php include("foot.inc"); ?>