1 |
b46bfcf5
|
Bill Marquette
|
<?php
|
2 |
|
|
/* $Id$ */
|
3 |
6b07c15a
|
Matthew Grooms
|
/*
|
4 |
|
|
license.php
|
5 |
|
|
|
6 |
|
|
Redistribution and use in source and binary forms, with or without
|
7 |
|
|
modification, are permitted provided that the following conditions are met:
|
8 |
|
|
|
9 |
|
|
1. Redistributions of source code must retain the above copyright notice,
|
10 |
|
|
this list of conditions and the following disclaimer.
|
11 |
|
|
|
12 |
|
|
2. Redistributions in binary form must reproduce the above copyright
|
13 |
|
|
notice, this list of conditions and the following disclaimer in the
|
14 |
|
|
documentation and/or other materials provided with the distribution.
|
15 |
|
|
|
16 |
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
17 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
18 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
19 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
20 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
21 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
22 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
23 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
24 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
25 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
26 |
|
|
*/
|
27 |
7ac5a4cb
|
Scott Ullrich
|
/*
|
28 |
|
|
pfSense_MODULE: routing
|
29 |
|
|
*/
|
30 |
544195a5
|
Erik Kristensen
|
|
31 |
6b07c15a
|
Matthew Grooms
|
##|+PRIV
|
32 |
|
|
##|*IDENT=page-system-license
|
33 |
|
|
##|*NAME=System: License page
|
34 |
|
|
##|*DESCR=Allow access to the 'System: License' page.
|
35 |
|
|
##|*MATCH=license.php*
|
36 |
|
|
##|-PRIV
|
37 |
|
|
|
38 |
|
|
require("guiconfig.inc");
|
39 |
544195a5
|
Erik Kristensen
|
include("head.inc");
|
40 |
|
|
|
41 |
6b07c15a
|
Matthew Grooms
|
?>
|
42 |
5b237745
|
Scott Ullrich
|
|
43 |
|
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
44 |
|
|
<?php include("fbegin.inc"); ?>
|
45 |
|
|
<p class="pgtitle">License</p>
|
46 |
6484d9e0
|
Scott Ullrich
|
|
47 |
0ecc7729
|
Scott Ullrich
|
<p><strong><?=$g['product_name'];?> is Copyright © <?=$g['product_copyright_years'];?> by <?=$g['product_copyright'];?><br>
|
48 |
6484d9e0
|
Scott Ullrich
|
All rights reserved.</strong></p>
|
49 |
|
|
|
50 |
0cbaf12b
|
Scott Ullrich
|
<p><strong>m0n0wall is Copyright © 2002-2007 by Manuel Kasper
|
51 |
5b237745
|
Scott Ullrich
|
(<a href="mailto:mk@neon1.net">mk@neon1.net</a>).<br>
|
52 |
|
|
All rights reserved.</strong></p>
|
53 |
|
|
<p> Redistribution and use in source and binary forms, with or without<br>
|
54 |
6484d9e0
|
Scott Ullrich
|
modification, are permitted provided that the following conditions
|
55 |
5b237745
|
Scott Ullrich
|
are met:<br>
|
56 |
|
|
<br>
|
57 |
6484d9e0
|
Scott Ullrich
|
1. Redistributions of source code must retain the above copyright
|
58 |
5b237745
|
Scott Ullrich
|
notice,<br>
|
59 |
|
|
this list of conditions and the following disclaimer.<br>
|
60 |
|
|
<br>
|
61 |
|
|
2. Redistributions in binary form must reproduce the above copyright<br>
|
62 |
6484d9e0
|
Scott Ullrich
|
notice, this list of conditions and the following disclaimer in
|
63 |
5b237745
|
Scott Ullrich
|
the<br>
|
64 |
|
|
documentation and/or other materials provided with the distribution.<br>
|
65 |
|
|
<br>
|
66 |
6484d9e0
|
Scott Ullrich
|
<strong>THIS SOFTWARE IS PROVIDED "AS IS'' AND ANY EXPRESS
|
67 |
5b237745
|
Scott Ullrich
|
OR IMPLIED WARRANTIES,<br>
|
68 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY<br>
|
69 |
6484d9e0
|
Scott Ullrich
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
70 |
5b237745
|
Scott Ullrich
|
SHALL THE<br>
|
71 |
6484d9e0
|
Scott Ullrich
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
72 |
5b237745
|
Scott Ullrich
|
EXEMPLARY,<br>
|
73 |
6484d9e0
|
Scott Ullrich
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
74 |
5b237745
|
Scott Ullrich
|
OF<br>
|
75 |
6484d9e0
|
Scott Ullrich
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
76 |
5b237745
|
Scott Ullrich
|
BUSINESS<br>
|
77 |
6484d9e0
|
Scott Ullrich
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
78 |
5b237745
|
Scott Ullrich
|
IN<br>
|
79 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)<br>
|
80 |
6484d9e0
|
Scott Ullrich
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
81 |
5b237745
|
Scott Ullrich
|
OF THE<br>
|
82 |
|
|
POSSIBILITY OF SUCH DAMAGE</strong>.</p>
|
83 |
|
|
<hr size="1">
|
84 |
|
|
<p>The following persons have contributed code to m0n0wall:</p>
|
85 |
|
|
<p>Bob Zoller (<a href="mailto:bob@kludgebox.com">bob@kludgebox.com</a>)<br>
|
86 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">Diagnostics: Ping
|
87 |
5b237745
|
Scott Ullrich
|
function; WLAN channel auto-select; DNS forwarder</font></em><br>
|
88 |
|
|
<br>
|
89 |
|
|
Michael Mee (<a href="mailto:mikemee2002@pobox.com">mikemee2002@pobox.com</a>)<br>
|
90 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">Timezone and NTP
|
91 |
5b237745
|
Scott Ullrich
|
client support</font></em><br>
|
92 |
|
|
<br>
|
93 |
|
|
Magne Andreassen (<a href="mailto:magne.andreassen@bluezone.no">magne.andreassen@bluezone.no</a>)<br>
|
94 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">Remote syslog'ing;
|
95 |
5b237745
|
Scott Ullrich
|
some code bits for DHCP server on optional interfaces</font></em><br>
|
96 |
|
|
<br>
|
97 |
|
|
Rob Whyte (<a href="mailto:rob@g-labs.com">rob@g-labs.com</a>)<br>
|
98 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">Idea/code bits
|
99 |
709cc6e0
|
Bill Marquette
|
for encrypted webConfigurator passwords; minimalized SNMP agent</font></em><br>
|
100 |
5b237745
|
Scott Ullrich
|
<br>
|
101 |
|
|
Petr Verner (<a href="mailto:verner@ipps.cz">verner@ipps.cz</a>)<br>
|
102 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">Advanced outbound
|
103 |
5b237745
|
Scott Ullrich
|
NAT: destination selection</font></em><br>
|
104 |
|
|
<br>
|
105 |
|
|
Bruce A. Mah (<a href="mailto:bmah@acm.org">bmah@acm.org</a>)<br>
|
106 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">Filtering bridge
|
107 |
5b237745
|
Scott Ullrich
|
patches </font></em><br>
|
108 |
|
|
<br>
|
109 |
|
|
Jim McBeath (<a href="mailto:monowall@j.jimmc.org">monowall@j.jimmc.org</a>)<br>
|
110 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">Filter rule patches
|
111 |
5b237745
|
Scott Ullrich
|
(ordering, block/pass, disabled); better status page;<br>
|
112 |
709cc6e0
|
Bill Marquette
|
webConfigurator assign network ports page </font></em><br>
|
113 |
5b237745
|
Scott Ullrich
|
<br>
|
114 |
|
|
Chris Olive (<a href="mailto:chris@technologEase.com">chris@technologEase.com</a>)<br>
|
115 |
6484d9e0
|
Scott Ullrich
|
<em><font color="#666666">enhanced "execute
|
116 |
5b237745
|
Scott Ullrich
|
command" page</font></em><br>
|
117 |
|
|
<br>
|
118 |
|
|
Pauline Middelink (<a href="mailto:middelink@polyware.nl">middelink@polyware.nl</a>)<br>
|
119 |
|
|
<em><font color="#666666">DHCP client: send hostname patch</font></em><br>
|
120 |
|
|
<br>
|
121 |
|
|
Bj?rn P?lsson (<a href="mailto:bjorn@networksab.com">bjorn@networksab.com</a>)<br>
|
122 |
|
|
<em><font color="#666666">DHCP lease list page</font></em><br>
|
123 |
|
|
<br>
|
124 |
|
|
Peter Allgeyer (<a href="mailto:allgeyer@web.de">allgeyer@web.de</a>)<br>
|
125 |
|
|
<em><font color="#666666">"reject" type filter rules; dial-on-demand</font></em><br>
|
126 |
|
|
<br>
|
127 |
|
|
Thierry Lechat (<a href="mailto:dev@lechat.org">dev@lechat.org</a>)<br>
|
128 |
|
|
<em><font color="#666666">SVG-based traffic grapher</font></em><br>
|
129 |
|
|
<br>
|
130 |
|
|
Steven Honson (<a href="mailto:steven@honson.org">steven@honson.org</a>)<br>
|
131 |
|
|
<em><font color="#666666">per-user IP address assignments for PPTP VPN</font></em><br>
|
132 |
|
|
<br>
|
133 |
|
|
Kurt Inge Sm?dal (<a href="mailto:kurt@emsp.no">kurt@emsp.no</a>)<br>
|
134 |
|
|
<em><font color="#666666">NAT on optional interfaces</font></em><br>
|
135 |
|
|
<br>
|
136 |
|
|
Dinesh Nair (<a href="mailto:dinesh@alphaque.com">dinesh@alphaque.com</a>)<br>
|
137 |
|
|
<em><font color="#666666">captive portal: pass-through MAC/IP addresses, RADIUS authentication & accounting;<br>
|
138 |
|
|
<em><font color="#666666"></font></em>HTTP server concurrency limit</font></em><br>
|
139 |
|
|
<br>
|
140 |
|
|
Justin Ellison (<a href="mailto:justin@techadvise.com">justin@techadvise.com</a>)<br>
|
141 |
|
|
<em><font color="#666666">traffic shaper TOS matching; magic shaper; DHCP deny unknown clients;<br>
|
142 |
|
|
IPsec user FQDNs; DHCP relay</font></em><br>
|
143 |
|
|
<br>
|
144 |
|
|
Michael Hanselmann (<a href="mailto:m0n0@hansmi.ch">m0n0@hansmi.ch</a>)<br>
|
145 |
|
|
<em><font color="#666666">IDE hard disk standby</font></em><br>
|
146 |
|
|
<br>
|
147 |
|
|
Audun Larsen (<a href="mailto:larsen@xqus.com">larsen@xqus.com</a>)<br>
|
148 |
|
|
<em><font color="#666666">CPU/memory usage display</font></em><br>
|
149 |
|
|
<br>
|
150 |
|
|
Peter Curran (<a href="mailto:peter@closeconsultants.com">peter@closeconsultants.com</a>)<br>
|
151 |
|
|
<em><font color="#666666">OpenVPN support</font></em></p>
|
152 |
|
|
<hr size="1">
|
153 |
36d0358b
|
Scott Ullrich
|
<p>{$g['product_name']} is based upon/includes various free software packages,
|
154 |
5b237745
|
Scott Ullrich
|
listed below.<br>
|
155 |
36d0358b
|
Scott Ullrich
|
The author of {$g['product_name']} would like to thank the authors of these
|
156 |
5b237745
|
Scott Ullrich
|
software packages for their efforts.</p>
|
157 |
|
|
<p>FreeBSD (<a href="http://www.freebsd.org" target="_blank">http://www.freebsd.org</a>)<br>
|
158 |
|
|
Copyright © 1994-2003 FreeBSD, Inc. All rights reserved.<br>
|
159 |
|
|
<br>
|
160 |
|
|
This product includes PHP, freely available from <a href="http://www.php.net/" target="_blank">http://www.php.net</a>.<br>
|
161 |
|
|
Copyright © 1999 - 2003 The PHP Group. All rights reserved.<br>
|
162 |
|
|
<br>
|
163 |
b7515bf9
|
Scott Ullrich
|
LightTPD (<a href="http://www.lighttpd.net" target="_blank">http://www.lighttpd.net)</a><br>
|
164 |
|
|
Copyright © 2004 by Jan Kneschke <jan@kneschke.de>
|
165 |
5b237745
|
Scott Ullrich
|
All rights reserved.<br>
|
166 |
|
|
<br>
|
167 |
|
|
ISC DHCP server (<a href="http://www.isc.org/products/DHCP/" target="_blank">http://www.isc.org/products/DHCP</a>)<br>
|
168 |
6484d9e0
|
Scott Ullrich
|
Copyright © 1996-2003 Internet Software Consortium. All rights
|
169 |
5b237745
|
Scott Ullrich
|
reserved.<br>
|
170 |
|
|
<br>
|
171 |
949fe2ff
|
Scott Ullrich
|
PF (<a href="http://www.openbsd.org/faq/pf" target="_blank">http://www.openbsd.org</a>)<br>
|
172 |
|
|
<br>
|
173 |
5b237745
|
Scott Ullrich
|
MPD - Multi-link PPP daemon for FreeBSD (<a href="http://www.dellroad.org/mpd" target="_blank">http://www.dellroad.org/mpd</a>)<br>
|
174 |
|
|
Copyright © 2003-2004, Archie L. Cobbs, Michael Bretterklieber, Alexander Motin<br>
|
175 |
b7515bf9
|
Scott Ullrich
|
All rights reserved.<br>
|
176 |
5b237745
|
Scott Ullrich
|
<br>
|
177 |
|
|
Circular log support for FreeBSD syslogd (<a href="http://software.wwwi.com/syslogd/" target="_blank">http://software.wwwi.com/syslogd</a>)<br>
|
178 |
|
|
Copyright © 2001 Jeff Wheelhouse (jdw@wwwi.com)<br>
|
179 |
|
|
<br>
|
180 |
|
|
Dnsmasq - a DNS forwarder for NAT firewalls (<a href="http://www.thekelleys.org.uk" target="_blank">http://www.thekelleys.org.uk</a>)<br>
|
181 |
|
|
Copyright © 2000-2003 Simon Kelley.<br>
|
182 |
|
|
<br>
|
183 |
|
|
Racoon (<a href="http://www.kame.net/racoon" target="_blank">http://www.kame.net/racoon</a>)<br>
|
184 |
|
|
Copyright © 1995-2002 WIDE Project. All rights reserved.<br>
|
185 |
|
|
<br>
|
186 |
|
|
msntp (<a href="http://www.hpcf.cam.ac.uk/export" target="_blank">http://www.hpcf.cam.ac.uk/export</a>)<br>
|
187 |
6484d9e0
|
Scott Ullrich
|
Copyright © 1996, 1997, 2000 N.M. Maclaren, University of Cambridge.
|
188 |
5b237745
|
Scott Ullrich
|
All rights reserved.<br>
|
189 |
|
|
<br>
|
190 |
|
|
UCD-SNMP (<a href="http://www.ece.ucdavis.edu/ucd-snmp" target="_blank">http://www.ece.ucdavis.edu/ucd-snmp</a>)<br>
|
191 |
|
|
Copyright © 1989, 1991, 1992 by Carnegie Mellon University.<br>
|
192 |
6484d9e0
|
Scott Ullrich
|
Copyright © 1996, 1998-2000 The Regents of the University of
|
193 |
5b237745
|
Scott Ullrich
|
California. All rights reserved.<br>
|
194 |
6484d9e0
|
Scott Ullrich
|
Copyright © 2001-2002, Network Associates Technology, Inc.
|
195 |
5b237745
|
Scott Ullrich
|
All rights reserved.<br>
|
196 |
6484d9e0
|
Scott Ullrich
|
Portions of this code are copyright © 2001-2002, Cambridge
|
197 |
5b237745
|
Scott Ullrich
|
Broadband Ltd. All rights reserved.<br>
|
198 |
|
|
<br>
|
199 |
|
|
choparp (<a href="http://choparp.sourceforge.net/" target="_blank">http://choparp.sourceforge.net</a>)<br>
|
200 |
|
|
Copyright © 1997 Takamichi Tateoka (tree@mma.club.uec.ac.jp)<br>
|
201 |
b7515bf9
|
Scott Ullrich
|
Copyright © 2002 Thomas Quinot (thomas@cuivre.fr.eu.org)<br>
|
202 |
5b237745
|
Scott Ullrich
|
<br>
|
203 |
|
|
BPALogin (<a href="http://bpalogin.sourceforge.net/" target="_blank">http://bpalogin.sourceforge.net</a>) - lightweight portable BIDS2 login client<br>
|
204 |
|
|
Copyright © 2001-3 Shane Hyde, and others.<br>
|
205 |
|
|
<br>
|
206 |
|
|
php-radius (<a href="http://www.mavetju.org/programming/php.php" target="_blank">http://www.mavetju.org/programming/php.php</a>)<br>
|
207 |
|
|
Copyright 2000, 2001, 2002 by Edwin Groothuis. All rights reserved.<br>
|
208 |
|
|
This product includes software developed by Edwin Groothuis.<br>
|
209 |
|
|
<br>
|
210 |
|
|
wol (<a href="http://ahh.sourceforge.net/wol" target="_blank">http://ahh.sourceforge.net/wol</a>)<br>
|
211 |
|
|
Copyright © 2000,2001,2002,2003,2004 Thomas Krennwallner <krennwallner@aon.at>
|
212 |
b7515bf9
|
Scott Ullrich
|
<br>
|
213 |
|
|
OpenVPN (<a href="http://openvpn.net/" target="_blank">http://openvpn.net/</a>)
|
214 |
|
|
Copyright (C) 2002-2005 OpenVPN Solutions LLC <info@openvpn.net>
|
215 |
5b237745
|
Scott Ullrich
|
<?php include("fend.inc"); ?>
|
216 |
|
|
</body>
|
217 |
|
|
</html>
|