firewall_aliases_edit.php 20.4 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 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
	Copyright (C) 2004 Scott Ullrich
	Copyright (C) 2009 Ermal Luçi
	Copyright (C) 2010 Jim Pingle
	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.
*/

33
require_once("guiconfig.inc");
34
require_once("pfsense-utils.inc");
Ad Schellevis's avatar
Ad Schellevis committed
35

36 37 38 39 40
if (!isset($config['aliases'])) {
        $config['aliases'] = array();
}
if (!isset($config['aliases']['alias'])) {
	$config['aliases']['alias'] = array();
Ad Schellevis's avatar
Ad Schellevis committed
41 42
}

43
$a_aliases = &$config['aliases']['alias'];
Ad Schellevis's avatar
Ad Schellevis committed
44

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
$pconfig = array();
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
		if (isset($_GET['id']) && is_numericint($_GET['id']) && isset($a_aliases[$_GET['id']])) {
				$id = $_GET['id'];
				foreach (array("name","detail","address","type","descr","updatefreq","aliasurl","url") as $fieldname) {
					if (isset($a_aliases[$id][$fieldname])) {
						$pconfig[$fieldname] = $a_aliases[$id][$fieldname];
					} else {
						$pconfig[$fieldname] = null;
					}
				}
				// convert to array if only one is provided
				if (!empty($pconfig['aliasurl']) && !is_array($pconfig['aliasurl'])) {
					$pconfig['aliasurl'] = array($pconfig['aliasurl']);
				}
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
		} elseif (isset($_GET['name'])) {
        // search alias by name
        foreach ($a_aliases as $alias_id => $alias_data) {
            if (strtolower($alias_data['name']) == strtolower(trim($_GET['name']))) {
                $id = $alias_id;
                break;
            }
        }
        // initialize form fields, when not found present empty form
        foreach (array("name","detail","address","type","descr","updatefreq","aliasurl","url") as $fieldname) {
					if (isset($id) && isset($a_aliases[$id][$fieldname])) {
						$pconfig[$fieldname] = $a_aliases[$id][$fieldname];
					} else {
						$pconfig[$fieldname] = null;
					}
				}
    } else {
77 78 79 80 81 82 83 84 85 86 87
				// init empty
				$init_fields = array("name","detail","address","type","descr","updatefreq","url");
				foreach ($init_fields as $fieldname) {
					$pconfig[$fieldname] = null;
				}
		}
} elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
		$pconfig = $_POST;
		if (isset($_POST['id']) && is_numericint($_POST['id']) && isset($a_aliases[$_POST['id']])) {
				$id = $_POST['id'];
		}
Ad Schellevis's avatar
Ad Schellevis committed
88

89 90 91 92 93 94 95 96 97 98 99 100
		// fix form type conversions ( list to string, as saved in config )
		// -- fill in default row description and make sure separators are removed
		if (strpos($pconfig['type'],'urltable') !== false) {
				$pconfig['url'] = $pconfig['host_url'][0];
		} elseif (strpos($pconfig['type'],'url') !== false) {
				$pconfig['aliasurl'] = $pconfig['host_url'];
		} else {
				$pconfig['address'] = implode(' ',$pconfig['host_url']);
		}
		unset($pconfig['host_url']);
		foreach ($pconfig['detail'] as &$detailDescr) {
				if (empty($detailDescr)) {
101 102 103 104
						$detailDescr = sprintf(gettext("Entry added %s"), date('r'));
				} else {
						// trim and strip pipes
						$detailDescr = trim(str_replace('|',' ' , $detailDescr));
105 106
				}
		}
107
		$pconfig['detail'] = implode('||', $pconfig['detail']);
Ad Schellevis's avatar
Ad Schellevis committed
108 109


110 111 112
		if (isset($pconfig['submit'])) {
				$input_errors = array();
				// validate data
Ad Schellevis's avatar
Ad Schellevis committed
113

114 115 116
				/* Check for reserved keyword names */
				// Keywords not allowed in names
				$reserved_keywords = array("all", "pass", "block", "out", "queue", "max", "min", "pptp", "pppoe", "L2TP", "OpenVPN", "IPsec");
Ad Schellevis's avatar
Ad Schellevis committed
117

118 119 120 121
				// Add all Load balance names to reserved_keywords
				if (is_array($config['load_balancer']['lbpool']))
					foreach ($config['load_balancer']['lbpool'] as $lbpool)
						$reserved_keywords[] = $lbpool['name'];
Ad Schellevis's avatar
Ad Schellevis committed
122

123 124 125 126 127 128 129 130 131 132 133
				$reserved_ifs = get_configured_interface_list(false, true);
				$reserved_keywords = array_merge($reserved_keywords, $reserved_ifs, $reserved_table_names);
				foreach($reserved_keywords as $rk)
					if($rk == $pconfig['name'])
						$input_errors[] = sprintf(gettext("Cannot use a reserved keyword as alias name %s"), $rk);

				/* check for name interface description conflicts */
				foreach($config['interfaces'] as $interface) {
					if($interface['descr'] == $pconfig['name']) {
						$input_errors[] = gettext("An interface description with this name already exists.");
						break;
Ad Schellevis's avatar
Ad Schellevis committed
134 135
					}
				}
136 137
				if ( is_validaliasname($pconfig['name']) !== true) {
						$input_errors[] = gettext("The alias name must be less than 32 characters long and may only consist of the characters") . " a-z, A-Z, 0-9, _.";
Ad Schellevis's avatar
Ad Schellevis committed
138 139
				}

140 141 142
				if (!empty($pconfig['updatefreq']) && !is_numericint($pconfig['updatefreq'])) {
						$input_errors[] = gettext("Update Frequency should by a number");
				}
Ad Schellevis's avatar
Ad Schellevis committed
143

144 145 146 147 148 149
				/* check for name conflicts */
				if (empty($a_aliases[$id])) {
					foreach ($a_aliases as $alias) {
						if ($alias['name'] == $_POST['name']) {
							$input_errors[] = gettext("An alias with this name already exists.");
							break;
Ad Schellevis's avatar
Ad Schellevis committed
150 151 152 153
						}
					}
				}

154 155 156 157 158
				/* user may not change type */
				if (isset($id) && $pconfig['type'] != $a_aliases[$id]['type']) {
						$input_errors[] = gettext("Alias type may not be changed for an existing alias.");
				}

159 160 161 162 163
				if ($pconfig['type'] == 'urltable') {
						if (empty($pconfig['url']) || !is_URL($pconfig['url'])) {
								$input_errors[] = gettext("You must provide a valid URL.");
						}
				}
Ad Schellevis's avatar
Ad Schellevis committed
164

165 166 167 168 169 170 171 172 173
				if (count($input_errors) == 0) {
						// save to config
						$copy_fields = array("name","detail","address","type","descr","updatefreq","aliasurl","url");
						$confItem = array();
						foreach ($copy_fields as $fieldname) {
								if (!empty($pconfig[$fieldname])) {
										$confItem[$fieldname] = $pconfig[$fieldname];
								}
						}
Ad Schellevis's avatar
Ad Schellevis committed
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
						/*   Check to see if alias name needs to be
						 *   renamed on referenced rules and such
						 */
						if (isset($id) && $pconfig['name'] <> $pconfig['origname']) {
							// Firewall rules
							$origname = $pconfig['origname'];
							update_alias_names_upon_change(array('filter', 'rule'), array('source', 'address'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('filter', 'rule'), array('destination', 'address'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('filter', 'rule'), array('source', 'port'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('filter', 'rule'), array('destination', 'port'), $pconfig['name'], $origname);
							// NAT Rules
							update_alias_names_upon_change(array('nat', 'rule'), array('source', 'address'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'rule'), array('source', 'port'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'rule'), array('destination', 'address'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'rule'), array('destination', 'port'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'rule'), array('target'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'rule'), array('local-port'), $pconfig['name'], $origname);
							// NAT 1:1 Rules
							update_alias_names_upon_change(array('nat', 'onetoone'), array('destination', 'address'), $pconfig['name'], $origname);
							// NAT Outbound Rules
							update_alias_names_upon_change(array('nat', 'advancedoutbound', 'rule'), array('source', 'network'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'advancedoutbound', 'rule'), array('sourceport'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'advancedoutbound', 'rule'), array('destination', 'address'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'advancedoutbound', 'rule'), array('dstport'), $pconfig['name'], $origname);
							update_alias_names_upon_change(array('nat', 'advancedoutbound', 'rule'), array('target'), $pconfig['name'], $origname);
							// Alias in an alias
							update_alias_names_upon_change(array('aliases', 'alias'), array('address'), $pconfig['name'], $origname);
						}
Ad Schellevis's avatar
Ad Schellevis committed
203 204


205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
						// save to config
						if (isset($id)) {
								$a_aliases[$id] = $confItem;
						} else {
								$a_aliases[] = $confItem;
						}
						// Sort list
						$a_aliases = msort($a_aliases, "name");

						if (write_config()) {
							// post save actions
							mark_subsystem_dirty('aliases');
							if (strpos($pconfig['type'],'url') !== false) {
									// update URL Table Aliases
									configd_run('filter refresh_url_alias', true);
							}
						}
Ad Schellevis's avatar
Ad Schellevis committed
222

223 224 225 226 227 228 229 230
						if(!empty($pconfig['type']) == 'host') {
								header("Location: firewall_aliases.php?tab=ip");
						} elseif (strpos($pconfig['type'],'url') !== false) {
								header("Location: firewall_aliases.php?tab=url");
						} else {
								header("Location: firewall_aliases.php?tab=".$pconfig['type']);
						}
						exit;
Ad Schellevis's avatar
Ad Schellevis committed
231

232
				}
Ad Schellevis's avatar
Ad Schellevis committed
233 234 235
		}
}

236 237 238 239 240
$pgtitle = array(gettext("Firewall"),gettext("Aliases"),gettext("Edit"));
$referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '/firewall_aliases.php');

legacy_html_escape_form_data($pconfig);
include("head.inc");
Ad Schellevis's avatar
Ad Schellevis committed
241
?>
242
<body>
Ad Schellevis's avatar
Ad Schellevis committed
243 244 245
<?php
	include("fbegin.inc");
?>
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
<script type="text/javascript">
	$( document ).ready(function() {
		// add new detail record
		$("#addNew").click(function(){
				// copy last row and reset values
				$('#detailTable > tbody').append('<tr>'+$('#detailTable > tbody > tr:last').html()+'</tr>');
				$('#detailTable > tbody > tr:last > td > input').each(function(){
					$(this).val("");
				});
		});

		function toggleType() {
			if ($("#typeSelect").val() == 'urltable' || $("#typeSelect").val() == 'urltable_ports'  ) {
				$("#updatefreq").removeClass('show');
				$("#updatefreq").removeClass('hidden');
				$("#updatefreqHeader").removeClass('show');
				$("#updatefreqHeader").removeClass('hidden');
				$("#addNew").addClass('hidden');
				$("#addNew").addClass('show');
				$('#detailTable > tbody > tr:gt(0)').remove();
			} else {
				$("#updatefreq").addClass('hidden');
				$("#updatefreq").addClass('show');
				$("#updatefreqHeader").addClass('hidden');
				$("#updatefreqHeader").addClass('show');
				$("#addNew").removeClass('show');
				$("#addNew").removeClass('hidden');
			}
			switch($("#typeSelect").val()) {
			    case 'urltable':
			        $("#detailsHeading1").html("<?=gettext("IP or FQDN");?>");
			        break;
					case 'urltable_ports':
			        $("#detailsHeading1").html("<?=gettext("IP or FQDN");?>");
			        break;
					case 'url':
			        $("#detailsHeading1").html("<?=gettext("IP or FQDN");?>");
			        break;
					case 'url_ports':
			        $("#detailsHeading1").html("<?=gettext("IP or FQDN");?>");
			        break;
					case 'host':
			        $("#detailsHeading1").html("<?=gettext("Host(s)");?>");
			        break;
					case 'network':
			        $("#detailsHeading1").html("<?=gettext("Network(s)");?>");
			        break;
					case 'port':
			        $("#detailsHeading1").html("<?=gettext("Port(s)");?>");
			        break;
			}
		}
Ad Schellevis's avatar
Ad Schellevis committed
298

299 300 301
		$("#typeSelect").change(function(){
			toggleType();
		});
Ad Schellevis's avatar
Ad Schellevis committed
302

303 304
		toggleType();
	});
Ad Schellevis's avatar
Ad Schellevis committed
305 306 307
</script>


Ad Schellevis's avatar
Ad Schellevis committed
308
	<section class="page-content-main">
309
		<div class="container-fluid">
Ad Schellevis's avatar
Ad Schellevis committed
310
			<div class="row">
311
<?php	if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
Ad Schellevis's avatar
Ad Schellevis committed
312
				<div id="inputerrors"></div>
313 314
					<section class="col-xs-12">
						<div class="content-box">
315
							<header class="content-box-head container-fluid">
316
				        <h3><?=gettext("Alias Edit");?></h3>
317
							</header>
318
					<div class="content-box-main">
319
								<form action="firewall_aliases_edit.php" method="post" name="iform" id="iform">
320
				<div class="table-responsive">
321 322 323 324 325 326 327 328
		                <table class="table table-striped">
											<tr>
												<td colspan="2" align="right">
													<small><?=gettext("full help"); ?> </small>
													<i class="fa fa-toggle-off text-danger"  style="cursor: pointer;" id="show_all_help_opnvpn_server" type="button"></i></a>
												</td>
											</tr>
											<tr>
329 330
												<td width="22%"><a id="help_for_name" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Name"); ?></td>
												<td width="78%">
331 332 333 334 335 336 337 338 339 340 341 342
													<input name="origname" type="hidden" id="origname" class="form-control unknown" size="40" value="<?=$pconfig['name'];?>" />
													<?php if (isset($id)): ?>
														<input name="id" type="hidden" value="<?=$id;?>" />
													<?php endif; ?>
													<input name="name" type="text" id="name" class="form-control unknown" size="40" maxlength="31" value="<?=$pconfig['name'];?>" />
													<div class="hidden" for="help_for_name">
														<?=gettext("The name of the alias may only consist of the characters \"a-z, A-Z, 0-9 and _\"."); ?>
													</div>
												</td>
											</tr>
											<tr>
												<td><a id="help_for_description" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Description"); ?></td>
343
												<td>
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
													<input name="descr" type="text" class="form-control unknown" id="descr" size="40" value="<?=$pconfig['descr'];?>" />
													<div class="hidden" for="help_for_description">
														<?=gettext("You may enter a description here for your reference (not parsed)."); ?>
													</div>
												</td>
											</tr>
											<tr>
												<td><a id="help_for_type" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Type"); ?></td>
												<td>
													<select name="type" class="form-control" id="typeSelect">
														<option value="host" <?=$pconfig['type'] == "host" ? "selected=\"selected\"" : ""; ?>><?=gettext("Host(s)"); ?></option>
														<option value="network" <?=$pconfig['type'] == "network" ? "selected=\"selected\"" : ""; ?>><?=gettext("Network(s)"); ?></option>
														<option value="port" <?=$pconfig['type'] == "port" ? "selected=\"selected\"" : ""; ?>><?=gettext("Port(s)"); ?></option>
														<option value="url" <?=$pconfig['type'] == "url" ? "selected=\"selected\"" : ""; ?>><?=gettext("URL (IPs)");?></option>
														<option value="url_ports" <?=$pconfig['type'] == "url_ports" ? "selected=\"selected\"" : ""; ?>><?=gettext("URL (Ports)");?></option>
														<option value="urltable" <?=$pconfig['type'] == "urltable" ? "selected=\"selected\"" : ""; ?>><?=gettext("URL Table (IPs)"); ?></option>
														<option value="urltable_ports" <?=$pconfig['type'] == "urltable_ports" ? "selected=\"selected\"" : ""; ?>><?=gettext("URL Table (Ports)"); ?></option>
													</select>
												</td>
Ad Schellevis's avatar
Ad Schellevis committed
363 364
										</tr>
										<tr>
365 366 367 368
											<td><div id="addressnetworkport"><a id="help_for_hosts" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Host(s)"); ?></div></td>
											<td>
												<table class="table table-striped table-condensed" id="detailTable">
													<thead>
Ad Schellevis's avatar
Ad Schellevis committed
369
														<tr>
370 371 372
															<th id="detailsHeading1"><?=gettext("Network"); ?></th>
															<th id="detailsHeading3"><?=gettext("Description"); ?></th>
															<th id="updatefreqHeader" ><?=gettext("Update Freq. (days)");?></th>
Ad Schellevis's avatar
Ad Schellevis committed
373
														</tr>
374 375 376 377 378 379
													</thead>
													<tbody>
<?php											if (is_array($pconfig['aliasurl'])):
														$detail_desc = explode("||", $pconfig['detail']);
														foreach ($pconfig['aliasurl'] as $aliasid => $aliasurl):
?>
Ad Schellevis's avatar
Ad Schellevis committed
380 381
														<tr>
															<td>
382
																<input type="text" class="form-control" name="host_url[]" value="<?=$aliasurl;?>"/>
Ad Schellevis's avatar
Ad Schellevis committed
383 384
															</td>
															<td>
385
																<input type="text" class="form-control" name="detail[]" value="<?= isset($detail_desc[$aliasid])?$detail_desc[$aliasid]:"";?>"?>
Ad Schellevis's avatar
Ad Schellevis committed
386 387
															</td>
															<td>
388
<?php													if ($aliasid ==0):
389 390
?>
																<input type="text" class="form-control input-sm" id="updatefreq"  name="updatefreq" value="<?=$pconfig['updatefreq'];?>" >
391
<?php													endif;
392
?>
Ad Schellevis's avatar
Ad Schellevis committed
393
															</td>
394 395 396 397 398 399 400 401 402 403 404 405
														</tr>
<?php												endforeach;
													else:
														$detail_desc = explode("||", $pconfig['detail']);
														if (empty($pconfig['address']) && isset($pconfig['url'])) {
															$addresslst = array($pconfig['url']);
														} else {
															$addresslst = explode(' ', $pconfig['address']);
														}
														foreach ($addresslst as $addressid => $address):
?>
														<tr>
Ad Schellevis's avatar
Ad Schellevis committed
406
															<td>
407 408 409 410 411 412
																<input type="text" class="form-control"  name="host_url[]" value="<?=$address;?>"/>
															</td>
															<td>
																<input type="text" class="form-control" name="detail[]" value="<?= isset($detail_desc[$addressid])?$detail_desc[$addressid]:"";?>"?>
															</td>
															<td>
413
<?php													if ($addressid ==0):
414 415
?>
																<input type="text" class="form-control  input-sm" id="updatefreq" name="updatefreq" value="<?=$pconfig['updatefreq'];?>" >
416
<?php													endif;
417
?>
Ad Schellevis's avatar
Ad Schellevis committed
418 419
															</td>
														</tr>
420

421
<?php											endforeach;
422 423
													endif;
?>
Ad Schellevis's avatar
Ad Schellevis committed
424
													</tbody>
425 426 427 428 429 430 431
													<tfoot>
														<tr>
															<td colspan="3">
																<div id="addNew" style="cursor:pointer;" class="btn btn-default btn-xs" alt="add"><span class="glyphicon glyphicon-plus"></span></div>
															</td>
														</tr>
													</tfoot>
Ad Schellevis's avatar
Ad Schellevis committed
432
												</table>
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
												<div class="hidden" for="help_for_hosts">
													<span class="text-info">
														<?=gettext("Networks")?><br/>
													</span>
													<small>
														<?=gettext("Networks are specified in CIDR format.  Select the CIDR mask that pertains to each entry. /32 specifies a single IPv4 host, /128 specifies a single IPv6 host, /24 specifies 255.255.255.0, /64 specifies a normal IPv6 network, etc. Hostnames (FQDNs) may also be specified, using a /32 mask for IPv4 or /128 for IPv6. You may also enter an IP range such as 192.168.1.1-192.168.1.254 and a list of CIDR networks will be derived to fill the range.");?>
														<br/>
													</small>
													<span class="text-info">
														<?=gettext("Hosts")?><br/>
													</span>
													<small>
														<?=gettext("Enter as many hosts as you would like.  Hosts must be specified by their IP address or fully qualified domain name (FQDN). FQDN hostnames are periodically re-resolved and updated. If multiple IPs are returned by a DNS query, all are used.");?>
														<br/>
													</small>
													<span class="text-info">
														<?=gettext("Ports")?><br/>
													</span>
													<small>
														<?=gettext("Enter as many ports as you wish.  Port ranges can be expressed by separating with a colon.");?>
														<br/>
													</small>
													<span class="text-info">
														<?=gettext("URL's")?><br/>
													</span>
													<small>
														<?=gettext("Enter a URL containing a large number of IPs,ports and/or Subnets. After saving the lists will be downloaded and scheduled for automatic updates when a frequency is provided.");?>
													</small>
Ad Schellevis's avatar
Ad Schellevis committed
461 462 463
												</div>
											</td>
										<tr>
464 465
											<td>&nbsp;</td>
											<td>
Ad Schellevis's avatar
Ad Schellevis committed
466 467 468 469 470 471
												<input id="submit" 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;?>'" />
											</td>
										</tr>
									</table>
		                        </div>
472 473 474
						</form>
				    </div>
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
475
			    </section>
Ad Schellevis's avatar
Ad Schellevis committed
476
			</div>
Ad Schellevis's avatar
Ad Schellevis committed
477 478
		</div>
	</section>
479
<?php include("foot.inc"); ?>