mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
153 lines
5.4 KiB
PHP
153 lines
5.4 KiB
PHP
<?php
|
|
/* $Id$ */
|
|
/*
|
|
globals.inc
|
|
part of pfSense (www.pfsense.com)
|
|
Copyright (C) 2004-2010 Scott Ullrich
|
|
|
|
Originally Part of m0n0wall
|
|
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.
|
|
|
|
pfSense_MODULE: utils
|
|
|
|
*/
|
|
|
|
function remove_numbers($string) {
|
|
$nums = array("1", "2", "3", "4", "5", "6", "7", "8", "9", "0", " ");
|
|
$string = str_replace($nums, '', $string);
|
|
return $string;
|
|
}
|
|
|
|
$g = array(
|
|
"base_packages" => "siproxd",
|
|
"event_address" => "unix:///var/run/check_reload_status",
|
|
"factory_shipped_username" => "admin",
|
|
"factory_shipped_password" => "pfsense",
|
|
"upload_path" => "/root",
|
|
"dhcpd_chroot_path" => "/var/dhcpd",
|
|
"unbound_chroot_path" => "/var/unbound",
|
|
"varrun_path" => "/var/run",
|
|
"varetc_path" => "/var/etc",
|
|
"vardb_path" => "/var/db",
|
|
"varlog_path" => "/var/log",
|
|
"etc_path" => "/etc",
|
|
"tmp_path" => "/tmp",
|
|
"conf_path" => "/conf",
|
|
"ftmp_path" => "/ftmp",
|
|
"conf_default_path" => "/conf.default",
|
|
"cf_path" => "/cf",
|
|
"cf_conf_path" => "/cf/conf",
|
|
"www_path" => "/usr/local/www",
|
|
"xml_rootobj" => "pfsense",
|
|
"admin_group" => "admins",
|
|
"product_name" => "pfSense",
|
|
"product_copyright" => "BSD Perimeter LLC",
|
|
"product_copyright_url" => "http://www.bsdperimeter.com",
|
|
"product_copyright_years" => "2004 - 2012",
|
|
"product_website" => "www.pfsense.org",
|
|
"product_website_footer" => "http://www.pfsense.org/?gui20",
|
|
"product_email" => "coreteam@pfsense.org",
|
|
"hideplatform" => false,
|
|
"hidedownloadbackup" => false,
|
|
"disablethemeselection" => false,
|
|
"disablehelpmenu" => false,
|
|
"disablehelpicon" => false,
|
|
"disablecrashreporter" => false,
|
|
"crashreporterurl" => "http://crashreporter.pfsense.org/crash_reporter.php",
|
|
"debug" => false,
|
|
"latest_config" => "8.6",
|
|
"nopkg_platforms" => array("cdrom"),
|
|
"minimum_ram_warning" => "101",
|
|
"minimum_ram_warning_text" => "128 MB",
|
|
"minimum_nic_count" => "1",
|
|
"minimum_nic_count_text" => "*AT LEAST* 1",
|
|
"wan_interface_name" => "wan",
|
|
"nopccard_platforms" => array("wrap", "net48xx"),
|
|
"xmlrpcbaseurl" => "www.pfsense.com",
|
|
"captiveportal_path" => "/usr/local/captiveportal",
|
|
"captiveportal_element_path" => "/var/db/cpelements",
|
|
"captiveportal_element_sizelimit" => 1048576,
|
|
"xmlrpcpath" => "/pfSense/xmlrpc.php",
|
|
"embeddedbootupslice" => "/dev/ad0a",
|
|
"services_dhcp_server_enable" => true,
|
|
"wireless_regex" => "/^(ndis|wi|ath|an|ral|ural|iwi|wlan|rum|run|bwn|zyd|mwl|bwi|ipw|iwn|malo|uath|upgt|urtw|wpi)/",
|
|
"help_base_url" => "/help.php"
|
|
);
|
|
|
|
/* IP TOS flags */
|
|
$iptos = array("lowdelay", "throughput", "reliability");
|
|
|
|
/* TCP flags */
|
|
$tcpflags = array("syn", "ack", "fin", "rst", "psh", "urg");
|
|
|
|
if(file_exists("/etc/platform")) {
|
|
$arch = php_uname("m");
|
|
$g['platform'] = trim(file_get_contents("/etc/platform"));
|
|
if($g['platform'] == "nanobsd") {
|
|
$g['update_url']="http://snapshots.pfsense.org/FreeBSD_RELENG_8_3/{$arch}/pfSense_HEAD/.updaters/";
|
|
$g['update_manifest']="http://updates.pfSense.com/nanobsd/manifest";
|
|
$g['firmware_update_text']="pfSense-*.img.gz";
|
|
|
|
} else {
|
|
$g['update_url']="http://snapshots.pfsense.org/FreeBSD_RELENG_8_3/{$arch}/pfSense_HEAD/.updaters/";
|
|
$g['update_manifest']="http://updates.pfSense.com/manifest";
|
|
$g['firmware_update_text']="pfSense-*.tgz";
|
|
}
|
|
}
|
|
|
|
/* Default sysctls */
|
|
$sysctls = array("net.inet.ip.portrange.first" => "1024",
|
|
"net.inet.tcp.blackhole" => "2",
|
|
"net.inet.udp.blackhole" => "1",
|
|
"net.inet.ip.random_id" => "1",
|
|
"net.inet.tcp.drop_synfin" => "1",
|
|
"net.inet.ip.redirect" => "1",
|
|
"net.inet6.ip6.redirect" => "1",
|
|
"net.inet.tcp.syncookies" => "1",
|
|
"net.inet.tcp.recvspace" => "65228",
|
|
"net.inet.tcp.sendspace" => "65228",
|
|
"net.inet.ip.fastforwarding" => "0",
|
|
"net.inet.tcp.delayed_ack" => "0",
|
|
"net.inet.udp.maxdgram" => "57344",
|
|
"net.link.bridge.pfil_onlyip" => "0",
|
|
"net.link.bridge.pfil_member" => "1",
|
|
"net.link.bridge.pfil_bridge" => "0",
|
|
"net.link.tap.user_open" => "1",
|
|
"kern.randompid" => "347",
|
|
"net.inet.ip.intr_queue_maxlen" => "1000",
|
|
"hw.syscons.kbd_reboot" => "0",
|
|
"net.inet.tcp.inflight.enable" => "1",
|
|
"net.inet.tcp.log_debug" => "0",
|
|
"net.inet.tcp.tso" => "1",
|
|
"net.inet.icmp.icmplim" => "0",
|
|
"vfs.read_max" => "32",
|
|
"kern.ipc.maxsockbuf" => "4262144",
|
|
"debug.pfftpproxy" => "0"
|
|
);
|
|
|
|
$config_parsed = false;
|
|
|
|
?>
|