system_hasync.php 17.3 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
	Copyright (C) 2012 Darren Embry <dse@webonastick.com>.
	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.
*/

30
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
31 32 33

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

34 35 36
if (!is_array($config['hasync'])) {
    $config['hasync'] = array();
}
Ad Schellevis's avatar
Ad Schellevis committed
37 38 39 40

$a_hasync = &$config['hasync'];

$checkbox_names = array('pfsyncenabled',
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
            'synchronizeusers',
            'synchronizeauthservers',
            'synchronizecerts',
            'synchronizerules',
            'synchronizeschedules',
            'synchronizealiases',
            'synchronizenat',
            'synchronizeipsec',
            'synchronizeopenvpn',
            'synchronizedhcpd',
            'synchronizewol',
            'synchronizestaticroutes',
            'synchronizelb',
            'synchronizevirtualip',
            'synchronizetrafficshaper',
            'synchronizednsforwarder',
            'synchronizecaptiveportal');
Ad Schellevis's avatar
Ad Schellevis committed
58 59

if ($_POST) {
60 61 62 63 64 65 66 67 68 69 70 71 72
    $pconfig = $_POST;
    foreach ($checkbox_names as $name) {
        $a_hasync[$name] = $pconfig[$name] ? $pconfig[$name] : false;
    }
    $a_hasync['pfsyncpeerip']    = $pconfig['pfsyncpeerip'];
    $a_hasync['pfsyncinterface'] = $pconfig['pfsyncinterface'];
    $a_hasync['synchronizetoip'] = $pconfig['synchronizetoip'];
    $a_hasync['username']        = $pconfig['username'];
    $a_hasync['password']        = $pconfig['password'];
    write_config("Updated High Availability configuration");
    interfaces_carp_setup();
    header("Location: system_hasync.php");
    exit();
Ad Schellevis's avatar
Ad Schellevis committed
73 74 75
}

foreach ($checkbox_names as $name) {
76
    $pconfig[$name] = $a_hasync[$name];
Ad Schellevis's avatar
Ad Schellevis committed
77 78 79 80 81 82 83 84 85 86
}
$pconfig['pfsyncpeerip']    = $a_hasync['pfsyncpeerip'];
$pconfig['pfsyncinterface'] = $a_hasync['pfsyncinterface'];
$pconfig['synchronizetoip'] = $a_hasync['synchronizetoip'];
$pconfig['username']        = $a_hasync['username'];
$pconfig['password']        = $a_hasync['password'];

$ifaces = get_configured_interface_with_descr();
$ifaces["lo0"] = "loopback";

87
$pgtitle = array(gettext("System"),gettext("High Availability"));
Ad Schellevis's avatar
Ad Schellevis committed
88 89 90 91
$shortcut_section = "carp";
include("head.inc");
?>

92 93
<body>
<?php include("fbegin.inc"); ?>
Ad Schellevis's avatar
Ad Schellevis committed
94

95
<!-- row -->
96

97 98
<section class="page-content-main">
	<div class="container-fluid">
99

100
        <div class="row">
101

102
            <section class="col-xs-12">
103 104
                <div class="content-box">

105
                    <div class="table-responsive">
Ad Schellevis's avatar
Ad Schellevis committed
106

107
                        <form action="system_hasync.php" method="post" name="iform" id="iform">
108

Jos Schellevis's avatar
Jos Schellevis committed
109
				<table class="table table-primary table-striped" width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
110 111 112 113 114 115 116 117 118
				<thead>
					<tr>
						<th colspan="2" class="listtopic">State Synchronization Settings (pfsync)</th>
					</tr>
				</thead>
				<tbody>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize States</td>
						<td class="vtable">
119 120 121
							<input id='pfsyncenabled' type='checkbox' name='pfsyncenabled' value='on' <?php if ($pconfig['pfsyncenabled'] === "on") {
                                echo "checked='checked'";
} ?> />
122
							pfsync transfers state insertion, update, and deletion messages between firewalls.<br/>
123
							Each firewall sends these messages out via multicast on a specified interface, using the PFSYNC protocol <a href="http://www.openbsd.org/faq/pf/carp.html" target="_blank">(IP Protocol 240)</a>.
124 125 126
							<br/>It also listens on that interface for similar messages from other firewalls, and imports them into the local state table.
							<br/>This setting should be enabled on all members of a failover group.
							<div class="well well-sm" ><b>Clicking save will force a configuration sync if it is enabled! (see Configuration Synchronization Settings below)</b></div>
127 128 129 130 131
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Interface</td>
						<td class="vtable">
132
							<select id='pfsyncinterface' name="pfsyncinterface" class="selectpicker" data-style="btn-default" data-live-search="true" data-width="auto">
133 134
							<?php foreach ($ifaces as $ifname => $iface) {
?>
135
								<?php $selected = ($pconfig['pfsyncinterface'] === $ifname) ? 'selected="selected"' : ''; ?>
136 137 138 139
								<option value="<?= htmlentities($ifname);
?>" <?= $selected ?>><?= htmlentities($iface); ?></option>
							<?php
} ?>
140
							</select>
141 142 143 144 145 146 147 148
							If Synchronize States is enabled, it will utilize this interface for communication.<br/><br/>
							<div class="well">
								<lu>
								<li>We recommend setting this to a interface other than LAN!  A dedicated interface works the best.</li>
								<li>You must define a IP on each machine participating in this failover group.</li>
								<li>You must have an IP assigned to the interface on any participating sync nodes.</li>
								</lu>
							</div>
149 150 151 152 153
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">pfsync Synchronize Peer IP</td>
						<td class="vtable">
154
							<input  id='pfsyncpeerip' name='pfsyncpeerip' type='text' class='formfld unknown' value='<?= htmlentities($pconfig['pfsyncpeerip']); ?>' />
155 156 157 158
							Setting this option will force pfsync to synchronize its state table to this IP address.  The default is directed multicast.
						</td>
					</tr>
					<tr>
159
                                        <td></td>
160 161 162 163 164
						<td>&nbsp;</td>
					</tr>
				</tbody>
				</table>

Jos Schellevis's avatar
Jos Schellevis committed
165
				<table class="table table-primary table-striped" width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
166 167 168 169 170 171 172 173 174
				<thead>
					<tr>
						<th colspan="2" class="listtopic">Configuration Synchronization Settings (XMLRPC Sync)</th>
					</tr>
				</thead>
				<tbody>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Config to IP</td>
						<td class="vtable">
175
							<input  id='synchronizetoip' name='synchronizetoip' type='text' class='formfld unknown' value='<?= htmlentities($pconfig['synchronizetoip']); ?>' />
176
							Enter the IP address of the firewall to which the selected configuration sections should be synchronized.<br />
177 178 179 180 181 182
							<div class="well">
								<lu>
									<li>XMLRPC sync is currently only supported over connections using the same protocol and port as this system - make sure the remote system's port and protocol are set accordingly!</li>
									<li><b>Do not use the Synchronize Config to IP and password option on backup cluster members!</b></li>
								</lu>
							</div>
183 184 185 186 187
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Remote System Username</td>
						<td class="vtable">
188
							<input  id='username' name='username' type='text' class='formfld unknown' value='<?= htmlentities($pconfig['username']); ?>' />
189 190
							<br />
							Enter the webConfigurator username of the system entered above for synchronizing your configuration.<br />
191 192 193
							<div class="well well-sm">
								<b>Do not use the Synchronize Config to IP and username option on backup cluster members!</b>
							</div>
194 195 196 197 198
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Remote System Password</td>
						<td class="vtable">
199
							<input  id='password' type='password' name='password' class='formfld pwd' value='<?= htmlentities($pconfig['password']); ?>' />
200 201
							<br />
							Enter the webConfigurator password of the system entered above for synchronizing your configuration.<br />
202 203 204
							<div class="well well-sm">
								<b>Do not use the Synchronize Config to IP and password option on backup cluster members!</b>
							</div>
205 206 207 208 209
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Users and Groups</td>
						<td class="vtable">
210 211 212
							<input id='synchronizeusers' type='checkbox' name='synchronizeusers' value='on' <?php if ($pconfig['synchronizeusers'] === "on") {
                                echo "checked='checked'";
} ?> />
213
							Automatically sync the users and groups over to the other HA host when changes are made.
214 215 216 217 218
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Auth Servers</td>
						<td class="vtable">
219 220 221
							<input id='synchronizeauthservers' type='checkbox' name='synchronizeauthservers' value='on' <?php if ($pconfig['synchronizeauthservers'] === "on") {
                                echo "checked='checked'";
} ?> />
222
							Automatically sync the authentication servers (e.g. LDAP, RADIUS) over to the other HA host when changes are made.
223 224 225 226 227
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Certificates</td>
						<td class="vtable">
228 229 230
							<input id='synchronizecerts' type='checkbox' name='synchronizecerts' value='on' <?php if ($pconfig['synchronizecerts'] === "on") {
                                echo "checked='checked'";
} ?> />
231
							Automatically sync the Certificate Authorities, Certificates, and Certificate Revocation Lists over to the other HA host when changes are made.
232 233 234 235 236
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize rules</td>
						<td class="vtable">
237 238 239
							<input id='synchronizerules' type='checkbox' name='synchronizerules' value='on' <?php if ($pconfig['synchronizerules'] === "on") {
                                echo "checked='checked'";
} ?> />
240
							Automatically sync the firewall rules to the other HA host when changes are made.
241 242 243 244 245
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Firewall Schedules</td>
						<td class="vtable">
246 247 248
							<input id='synchronizeschedules' type='checkbox' name='synchronizeschedules' value='on' <?php if ($pconfig['synchronizeschedules'] === "on") {
                                echo "checked='checked'";
} ?> />
249
							Automatically sync the firewall schedules to the other HA host when changes are made.
250 251 252 253 254
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize aliases</td>
						<td class="vtable">
255 256 257
							<input id='synchronizealiases' type='checkbox' name='synchronizealiases' value='on' <?php if ($pconfig['synchronizealiases'] === "on") {
                                echo "checked='checked'";
} ?> />
258
							Automatically sync the aliases over to the other HA host when changes are made.
259 260 261 262 263
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize NAT</td>
						<td class="vtable">
264 265 266
							<input id='synchronizenat' type='checkbox' name='synchronizenat' value='on' <?php if ($pconfig['synchronizenat'] === "on") {
                                echo "checked='checked'";
} ?> />
267
							Automatically sync the NAT rules over to the other HA host when changes are made.
268 269 270 271 272
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize IPsec</td>
						<td class="vtable">
273 274 275
							<input id='synchronizeipsec' type='checkbox' name='synchronizeipsec' value='on' <?php if ($pconfig['synchronizeipsec'] === "on") {
                                echo "checked='checked'";
} ?> />
276
							Automatically sync the IPsec configuration to the other HA host when changes are made.
277 278 279 280 281
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize OpenVPN</td>
						<td class="vtable">
282 283 284
							<input id='synchronizeopenvpn' type='checkbox' name='synchronizeopenvpn' value='on' <?php if ($pconfig['synchronizeopenvpn'] === "on") {
                                echo "checked='checked'";
} ?> />
285 286
							Automatically sync the OpenVPN configuration to the other HA host when changes are made.
							<div class="well well-sm"><b>Using this option implies "Synchronize Certificates" as they are required for OpenVPN.</b></div>
287 288 289 290 291
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize DHCPD</td>
						<td class="vtable">
292 293 294
							<input id='synchronizedhcpd' type='checkbox' name='synchronizedhcpd' value='on' <?php if ($pconfig['synchronizedhcpd'] === "on") {
                                echo "checked='checked'";
} ?> />
295
							Automatically sync the DHCP Server settings over to the other HA host when changes are made. This only applies to DHCP for IPv4.
296 297 298 299 300
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Wake on LAN</td>
						<td class="vtable">
301 302 303
							<input id='synchronizewol' type='checkbox' name='synchronizewol' value='on' <?php if ($pconfig['synchronizewol'] === "on") {
                                echo "checked='checked'";
} ?> />
304
							Automatically sync the WoL configuration to the other HA host when changes are made.
305 306 307 308 309
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Static Routes</td>
						<td class="vtable">
310 311 312
							<input id='synchronizestaticroutes' type='checkbox' name='synchronizestaticroutes' value='on' <?php if ($pconfig['synchronizestaticroutes'] === "on") {
                                echo "checked='checked'";
} ?> />
313
							Automatically sync the Static Route configuration to the other HA host when changes are made.
314 315 316 317 318
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Load Balancer</td>
						<td class="vtable">
319 320 321
							<input id='synchronizelb' type='checkbox' name='synchronizelb' value='on' <?php if ($pconfig['synchronizelb'] === "on") {
                                echo "checked='checked'";
} ?> />
322
							Automatically sync the Load Balancer configuration to the other HA host when changes are made.
323 324 325 326 327
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Virtual IPs</td>
						<td class="vtable">
328 329 330
							<input id='synchronizevirtualip' type='checkbox' name='synchronizevirtualip' value='on' <?php if ($pconfig['synchronizevirtualip'] === "on") {
                                echo "checked='checked'";
} ?> />
331
							Automatically sync the CARP Virtual IPs to the other HA host when changes are made.
332 333 334 335 336
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize traffic shaper(queues)</td>
						<td class="vtable">
337 338 339
							<input id='synchronizetrafficshaper' type='checkbox' name='synchronizetrafficshaper' value='on' <?php if ($pconfig['synchronizetrafficshaper'] === "on") {
                                echo "checked='checked'";
} ?> />
340
							Automatically sync the traffic shaper configuration for queues to the other HA host when changes are made.
341 342 343 344 345
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize traffic shaper(limiter)</td>
						<td class="vtable">
346 347 348
							<input id='synchronizetrafficshaperlimiter' type='checkbox' name='synchronizetrafficshaperlimiter' value='on' <?php if ($pconfig['synchronizetrafficshaperlimiter'] === "on") {
                                echo "checked='checked'";
} ?> />
349
							Automatically sync the traffic shaper configuration for limiters to the other HA host when changes are made.
350 351 352 353 354
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize DNS Forwarder</td>
						<td class="vtable">
355 356 357
							<input id='synchronizednsforwarder' type='checkbox' name='synchronizednsforwarder' value='on' <?php if ($pconfig['synchronizednsforwarder'] === "on") {
                                echo "checked='checked'";
} ?> />
358
							Automatically sync the DNS Forwarder configuration to the other HA host when changes are made.
359 360 361 362 363
						</td>
					</tr>
					<tr valign="top">
						<td width="22%" class="vncell">Synchronize Captive Portal</td>
						<td class="vtable">
364 365 366
							<input id='synchronizecaptiveportal' type='checkbox' name='synchronizecaptiveportal' value='on' <?php if ($pconfig['synchronizecaptiveportal'] === "on") {
                                echo "checked='checked'";
} ?> />
367
							Automatically sync the Captive Portal configuration to the other HA host when changes are made.
368 369 370 371 372 373 374
						</td>
					</tr>
					<tr>
						<td width="22%" valign="top">&nbsp;</td>
						<td width="78%">
							<input name="id" type="hidden" value="0" />
							<input name="Submit" type="submit" class="btn btn-primary" value="Save" />
375 376
							<input type="button" class="btn btn-default" value="<?=gettext("Cancel");
?>" onclick="window.location.href='<?=$referer;?>'" />
377 378 379
						</td>
					</tr>
				</tbody>
380 381
                            </table>
                        </form>
382

383
                       </div>
384

385 386
                </div>
            </section>
387

388
        </div>
389

390
	</div>
391 392 393
</section>


394
<?php include("foot.inc");