diff options
-rw-r--r-- | config/bind/bind.inc | 67 | ||||
-rw-r--r-- | config/haproxy-devel/haproxy.inc | 95 | ||||
-rw-r--r-- | pkg_config.10.xml | 43 | ||||
-rw-r--r-- | pkg_config.7.xml | 162 | ||||
-rw-r--r-- | pkg_config.8.xml | 3 | ||||
-rw-r--r-- | pkg_config.8.xml.amd64 | 3 |
6 files changed, 191 insertions, 182 deletions
diff --git a/config/bind/bind.inc b/config/bind/bind.inc index 156e9eb8..17d171d1 100644 --- a/config/bind/bind.inc +++ b/config/bind/bind.inc @@ -445,35 +445,46 @@ EOD; $zone_conf .= "$hostname \t IN $hosttype $hostvalue \t$hostdst\n"; } + + # Register DHCP static mappings if (($zone[regdhcpstatic] == 'on') && is_array($config['dhcpd'])) { - foreach ($config['dhcpd'] as $dhcpif => $dhcpifconf) - if(is_array($dhcpifconf['staticmap']) && isset($dhcpifconf['enable'])) - foreach ($dhcpifconf['staticmap'] as $host) - if ($host['ipaddr'] && $host['hostname']) { - if($zonereverso == "on") { - $hostdomain = $dhcpifconf['domain']; - if(strlen($hostdomain) == 0) { - $hostdomain = $config['system']['domain']; - } - if(strlen($hostdomain) != 0) { - $hostdomain .= '.'; - } - $zoneparts = array_reverse(explode('.',$zonename)); - $addressparts = explode('.',$host['ipaddr']); - $addressstart = 0; - while($addressstart < count($zoneparts) && $addressstart < count($addressparts) && $zoneparts[$addressstart] == $addressparts[$addressstart]) { - $addressstart++; - } - $shortaddress=''; - for($addresspointer = count($addressparts)-1; $addresspointer >= $addressstart; $addresspointer--) { - $shortaddress .= (strlen($shortaddress) > 0 ? '.' : '') . $addressparts[$addresspointer]; - } - $zone_conf .= "{$shortaddress}\tIN PTR\t{$host['hostname']}.{$hostdomain}\n"; - } else { - $zone_conf .= "{$host['hostname']}\tIN A\t{$host['ipaddr']}\n"; - } - } - } + $zoneparts = array_reverse(explode('.',$zonename)); + foreach ($config['dhcpd'] as $dhcpif => $dhcpifconf) { + if (!isset($dhcpifconf['enable']) || !is_array($dhcpifconf['staticmap'])) { + continue; + } + foreach ($dhcpifconf['staticmap'] as $host) { + if (is_domain($host['domain'])) { + $domain = $host['domain']; + } elseif (is_domain($dhcpifconf['domain'])) { + $domain = $dhcpifconf['domain']; + } elseif (is_domain($config['system']['domain'])) { + $domain = $config['system']['domain']; + } else { + continue; + } + if (!is_hostname($host['hostname']) || !is_ipaddr($host['ipaddr'])) { + continue; + } + if ($zonereverso == "on") { + $parts = explode('.',$host['ipaddr']); + $intersect = array_intersect_assoc($parts,$zoneparts); + if (count($zoneparts) == count($intersect)) { + $diff = array_diff_assoc($parts,$zoneparts); + $shortaddr = implode('.',array_reverse($diff)); + $zone_conf .= "{$shortaddr}\tIN PTR\t{$host['hostname']}.{$domain}.\n"; + } + } else { + $parts = array_reverse(explode('.',$domain)); + $diff = array_diff_assoc($parts,$zoneparts); + if (count($diff) == 0) { + $zone_conf .= "{$host['hostname']}\tIN A\t{$host['ipaddr']}\n"; + } + } + } + } + } + if ($zone['customzonerecords']!=""){ $zone_conf .= "\n\n;\n;custom zone records\n;\n".base64_decode($zone['customzonerecords'])."\n"; } diff --git a/config/haproxy-devel/haproxy.inc b/config/haproxy-devel/haproxy.inc index 2099f646..8b7fbb1e 100644 --- a/config/haproxy-devel/haproxy.inc +++ b/config/haproxy-devel/haproxy.inc @@ -37,6 +37,7 @@ require_once("haproxy_xmlrpcsyncclient.inc"); $d_haproxyconfdirty_path = $g['varrun_path'] . "/haproxy.conf.dirty"; +global $a_acltypes; $a_acltypes = array(); $a_acltypes["host_starts_with"] = array('name' => 'Host starts with', 'mode' => 'http', 'syntax' => 'hdr_beg(host) -i %1$s'); @@ -66,6 +67,7 @@ $a_acltypes["backendservercount"] = array('name' => 'Minimum count usable server $a_acltypes["ssl_sni_matches"] = array('name' => 'Server Name Indication TLS extension matches', 'mode' => 'https', 'syntax' => 'req_ssl_sni -i %1$s', 'advancedoptions' => "tcp-request inspect-delay 5s\n\ttcp-request content accept if { req_ssl_hello_type 1 }"); +global $a_checktypes; $a_checktypes = array(); $a_checktypes['none'] = array('name' => 'none', 'syntax' => '', 'descr' => 'No health checks will be performed.'); @@ -92,6 +94,7 @@ $a_checktypes['ESMTP'] = array('name' => 'ESMTP', 'syntax' => 'smtpchk EHLO', $a_checktypes['SSL'] = array('name' => 'SSL', 'syntax' => 'ssl-hello-chk', 'descr' => 'Use SSLv3 client hello health checks for server testing.'); +global $a_httpcheck_method; $a_httpcheck_method = array(); $a_httpcheck_method['OPTIONS'] = array('name' => 'OPTIONS', 'syntax' => 'OPTIONS'); $a_httpcheck_method['HEAD'] = array('name' => 'HEAD', 'syntax' => 'HEAD'); @@ -101,6 +104,7 @@ $a_httpcheck_method['PUT'] = array('name' => 'PUT', 'syntax' => 'PUT'); $a_httpcheck_method['DELETE'] = array('name' => 'DELETE', 'syntax' => 'DELETE'); $a_httpcheck_method['TRACE'] = array('name' => 'TRACE', 'syntax' => 'TRACE'); +global $a_closetypes; $a_closetypes = array(); $a_closetypes['none'] = array('name' => 'none', 'syntax' => '', 'descr' => 'No close headers will be changed.'); @@ -113,6 +117,7 @@ $a_closetypes['forceclose'] = array('name' => 'forceclose', 'syntax' => 'forcecl $a_closetypes['http-keep-alive'] = array('name' => 'http-keep-alive', 'syntax' => 'http-keep-alive', 'descr' => 'By default, when a client communicates with a server, HAProxy will only analyze, log, and process the first request of each connection. Setting "option http-keep-alive" enables HTTP keep-alive mode on the client- and server- sides. This provides the lowest latency on the client side (slow network) and the fastest session reuse on the server side at the expense of maintaining idle connections to the servers. In general, it is possible with this option to achieve approximately twice the request rate that the "http-server-close" option achieves on small objects. There are mainly two situations where this option may be useful : - when the server is non-HTTP compliant and authenticates the connection instead of requests (eg: NTLM authentication) - when the cost of establishing the connection to the server is significant compared to the cost of retrieving the associated object from the server.'); +global $a_servermodes; $a_servermodes = array(); $a_servermodes["active"]['name'] = "active"; $a_servermodes["backup"]['name'] = "backup"; @@ -120,6 +125,7 @@ $a_servermodes["disabled"]['name'] = "disabled"; $a_servermodes["inactive"]['name'] = "inactive"; // http://www.exceliance.fr/sites/default/files/biblio/aloha_load_balancer_haproxy_cookie_persistence_methods_memo.pdf +global $a_cookiemode; $a_cookiemode = array(); $a_cookiemode['passive'] = array('name' => 'Passive', 'syntax' => 'cookie <cookie name>', 'descr' => 'Cookie is analysed on incoming request to choose server. HAProxy does not perform any insertion update or deletion on the Cookie or Set-Cookie. If the Cookie is not set, then the load-balancing algorithm is applied.'); @@ -142,6 +148,7 @@ $a_cookiemode['passive-session-prefix'] = array('name' => 'Passive-session-prefi foreach($a_cookiemode as &$cookiemode) $cookiemode['descr'] = $cookiemode['descr'] . "\n\n" . $cookiemode['syntax'] . ""; +global $a_sticky_type; $a_sticky_type = array(); $a_sticky_type['none'] = array('name' => 'none', 'descr' => "No stick-table will be used"); @@ -212,21 +219,16 @@ function group_ports($ports) { function haproxy_portoralias_to_list($port_or_alias) { // input: a port or aliasname: 80 https MyPortAlias // returns: a array of ports and portranges 80 443 8000:8010 - global $config; + global $aliastable; $portresult = array(); - if (is_alias($port_or_alias)) { - if (is_array($config['aliases']['alias'])) { - foreach ($config['aliases']['alias'] as $alias) { - if ($alias['name'] == $port_or_alias && preg_match("/port/i", $alias['type'])) { - $ports = explode(' ',$alias['address']); - foreach($ports as $port) { - $portresults = haproxy_portoralias_to_list($port); - $portresult = array_merge($portresult, $portresults); - } - return $portresult; - } - } + if (alias_get_type($port_or_alias) == "port") { + $aliasports = $aliastable[$port_or_alias]; + $ports = explode(' ',$aliasports); + foreach($ports as $port) { + $portresults = haproxy_portoralias_to_list($port); + $portresult = array_merge($portresult, $portresults); } + return $portresult; } else if (is_portrange($port_or_alias)) { return (array)$port_or_alias; } else if (is_port($port_or_alias)) { @@ -241,25 +243,30 @@ function haproxy_portoralias_to_list($port_or_alias) { } function haproxy_custom_php_deinstall_command() { - exec("cd /var/db/pkg && pkg_delete `ls | grep haproxy`"); - exec("rm /usr/local/pkg/haproxy*"); - exec("rm /usr/local/www/haproxy*"); + global $static_output; + $static_output .= "HAProxy, running haproxy_custom_php_deinstall_command()\n"; + update_output_window($static_output); + $static_output .= "HAProxy, deleting haproxy webgui\n"; + update_output_window($static_output); exec("rm /usr/local/etc/rc.d/haproxy.sh"); - exec("rm /etc/devd/haproxy.conf"); - exec("/etc/rc.d/devd restart"); + $static_output .= "HAProxy, installing cron job if needed\n"; + update_output_window($static_output); haproxy_install_cron(false); + $static_output .= "HAProxy, running haproxy_custom_php_deinstall_command() DONE\n"; + update_output_window($static_output); } function haproxy_custom_php_install_command() { - global $g, $config; + global $g, $config, $static_output; + $static_output .= "HAProxy, running haproxy_custom_php_install_command()\n"; + update_output_window($static_output); + + $static_output .= "HAProxy, conf_mount_rw\n"; + update_output_window($static_output); conf_mount_rw(); - - $freebsd_version = substr(trim(`uname -r`), 0, 1); - if(!file_exists("/usr/bin/limits")) { - exec("fetch -q -o /usr/bin/limits https://files.pfsense.org/extras/{$freebsd_version}/limits"); - exec("chmod a+rx /usr/bin/limits"); - } + $static_output .= "HAProxy, create '/usr/local/etc/rc.d/haproxy.sh'\n"; + update_output_window($static_output); $haproxy = <<<EOD #!/bin/sh @@ -323,27 +330,11 @@ EOD; fclose($fd); exec("chmod a+rx /usr/local/etc/rc.d/haproxy.sh"); - $devd = <<<EOD -notify 0 { - match "system" "IFNET"; - match "subsystem" "carp[0-9]+"; - match "type" "LINK_UP"; - action "/usr/local/etc/rc.d/haproxy.sh check"; -}; -notify 0 { - match "system" "IFNET"; - match "subsystem" "carp[0-9]+"; - match "type" "LINK_DOWN"; - action "/usr/local/etc/rc.d/haproxy.sh check"; -}; -EOD; - exec("mkdir -p /etc/devd"); - $fd = fopen("/etc/devd/haproxy.conf", "w"); - fwrite($fd, $devd); - fclose($fd); - exec("/etc/rc.d/devd restart"); + $static_output .= "HAProxy, update configuration\n"; + update_output_window($static_output); + $writeconfigupdate = false; /* Do XML upgrade from haproxy 0.31 to haproxy-dev */ if (is_array($config['installedpackages']['haproxy']['ha_servers'])) { @@ -435,12 +426,22 @@ EOD; } } } - if ($writeconfigupdate) - write_config("haproxy, update xml config version"); + if ($writeconfigupdate) { + $static_output .= "HAProxy, write updated config\n"; + update_output_window($static_output); + write_config("HAProxy, update xml config version"); + } + $static_output .= "HAProxy, conf_mount_ro\n"; + update_output_window($static_output); conf_mount_ro(); - exec("/usr/local/etc/rc.d/haproxy.sh start"); + $static_output .= "HAProxy, starting haproxy (if previously enabled)\n"; + update_output_window($static_output); + haproxy_check_run(1); + + $static_output .= "HAProxy, running haproxy_custom_php_install_command() DONE\n"; + update_output_window($static_output); } function haproxy_install_cron($should_install) { diff --git a/pkg_config.10.xml b/pkg_config.10.xml index ac36592f..5e6f1459 100644 --- a/pkg_config.10.xml +++ b/pkg_config.10.xml @@ -53,12 +53,12 @@ <descr><![CDATA[The most widely used name server software]]></descr> <website>http://www.isc.org/downloads/BIND/</website> <category>Services</category> - <version>9.9.5 pkg v 0.3.2</version> + <version>9.9.5_5 pkg v 0.3.2</version> <status>RC</status> <required_version>2.2</required_version> <config_file>https://packages.pfsense.org/packages/config/bind/bind.xml</config_file> <configurationfile>bind.xml</configurationfile> - <depends_on_package_pbi>bind-9.9.5-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>bind-9.9.5_5-##ARCH##.pbi</depends_on_package_pbi> <build_pbi> <custom_name>bind</custom_name> <port>dns/bind99</port> @@ -213,7 +213,7 @@ <status>ALPHA</status> <required_version>2.2</required_version> <config_file>https://packages.pfsense.org/packages/config/apache_mod_security-dev/apache_virtualhost.xml</config_file> - <depends_on_package_pbi>proxy_mod_security-2.4.6_1-##ARCH##.pbi git-1.8.5.2-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>proxy_mod_security-2.4.6_1-##ARCH##.pbi git-1.9.0-##ARCH##.pbi</depends_on_package_pbi> <configurationfile>apache_virtualhost.xml</configurationfile> <build_pbi> <custom_name>proxy_mod_security</custom_name> @@ -475,8 +475,8 @@ <category>Services</category> <config_file>https://packages.pfsense.org/packages/config/mailscanner/mailscanner.xml</config_file> <pkginfolink>https://forum.pfsense.org/index.php/topic,43687.0.html</pkginfolink> - <depends_on_package_pbi>mailscanner-4.84.5_3-##ARCH##.pbi</depends_on_package_pbi> - <version>4.84.5_3 pkg v.0.2.4</version> + <depends_on_package_pbi>mailscanner-4.84.6-##ARCH##.pbi</depends_on_package_pbi> + <version>4.84.6 pkg v.0.2.4</version> <status>beta</status> <required_version>2.2</required_version> <configurationfile>mailscanner.xml</configurationfile> @@ -585,12 +585,12 @@ <website>http://varnish-cache.org</website> <pkginfolink>https://doc.pfsense.org/index.php/Varnish_package</pkginfolink> <category>Services</category> - <version>3.0.4 pkg v.0.2.1</version> + <version>3.0.5_2 pkg v.0.2.1</version> <status>RC</status> <required_version>2.2</required_version> <config_file>https://packages.pfsense.org/packages/config/varnish3/varnish_backends.xml</config_file> <configurationfile>varnish_backends.xml</configurationfile> - <depends_on_package_pbi>varnish-3.0.5-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>varnish-3.0.5_2-##ARCH##.pbi</depends_on_package_pbi> <build_pbi> <ports_before>lang/gcc</ports_before> <port>www/varnish</port> @@ -648,7 +648,6 @@ <port>dns/djbdns</port> </build_pbi> <build_options>WITH_IPV6=true;WITH_SRV=true;WITHOUT_DUMPCACHE=true;WITHOUT_IGNOREIP=true;WITHOUT_JUMBO=true;WITHOUT_MAN=true;WITHOUT_PERSISTENT_MMAP=true</build_options> - <supportedbybsdperimeter>YES</supportedbybsdperimeter> </package> <package> <name>Open-VM-Tools</name> @@ -664,7 +663,7 @@ <build_pbi> <port>emulators/open-vm-tools-nox11</port> </build_pbi> - <depends_on_package_pbi>open-vm-tools-nox11-1280544_2-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>open-vm-tools-nox11-1280544_4-##ARCH##.pbi</depends_on_package_pbi> </package> <package> <name>AutoConfigBackup</name> @@ -853,8 +852,8 @@ <website>http://www.stunnel.org/</website> <descr>An SSL encryption wrapper between remote client and local or remote servers. </descr> <category>Network Management</category> - <depends_on_package_pbi>stunnel-4.56-##ARCH##.pbi</depends_on_package_pbi> - <version>4.43.0</version> + <depends_on_package_pbi>stunnel-5.00-##ARCH##.pbi</depends_on_package_pbi> + <version>5.00.0</version> <status>Stable</status> <pkginfolink>https://doc.pfsense.org/index.php/Stunnel_package</pkginfolink> <required_version>2.2</required_version> @@ -1021,11 +1020,11 @@ <descr>Arpwatch monitors ethernet/ip address pairings. It also logs certain changes to syslog.</descr> <website>http://www-nrg.ee.lbl.gov/</website> <category>Security</category> - <depends_on_package_pbi>arpwatch-2.1.a15_7-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>arpwatch-2.1.a15_8-##ARCH##.pbi</depends_on_package_pbi> <build_pbi> <port>net-mgmt/arpwatch</port> </build_pbi> - <version>2.1.a15_7 pkg v1.1.1</version> + <version>2.1.a15_8 pkg v1.1.1</version> <status>ALPHA</status> <required_version>2.2</required_version> <config_file>https://packages.pfsense.org/packages/config/arpwatch.xml</config_file> @@ -1236,14 +1235,14 @@ <website>http://wiki.nagios.org/index.php/Howtos:nrpe_nsca</website> <descr>NRPE is an addon for Nagios that allows you to execute plugins on remote Linux/Unix hosts. This is useful if you need to monitor local resources/attributes like disk usage, CPU load, memory usage, etc. on a remote host.</descr> <category>Services</category> - <depends_on_package_pbi>nrpe-2.15-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>nrpe-2.15_1-##ARCH##.pbi</depends_on_package_pbi> <build_pbi> <ports_before>net-mgmt/nagios-plugins</ports_before> <port>net-mgmt/nrpe</port> </build_pbi> <build_options>nrpe_SET_FORCE=SSL;nrpe_UNSET_FORCE=ARGS</build_options> <config_file>https://packages.pfsense.org/packages/config/nrpe2/nrpe2.xml</config_file> - <version>2.15 v2.2</version> + <version>2.15_1 v2.2</version> <status>Beta</status> <required_version>2.2</required_version> <maintainer>erik@erikkristensen.com</maintainer> @@ -1394,7 +1393,7 @@ <pkginfolink>https://forum.pfsense.org/</pkginfolink> <descr><![CDATA[GIT Source Code Management (console/shell only)]]></descr> <category>Services</category> - <version>1.8.5.2</version> + <version>1.9.0</version> <status>Beta</status> <required_version>2.2</required_version> <config_file>https://packages.pfsense.org/packages/config/git/git.xml</config_file> @@ -1404,7 +1403,7 @@ <build_pbi> <port>devel/git</port> </build_pbi> - <depends_on_package_pbi>git-1.8.5.2-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>git-1.9.0-##ARCH##.pbi</depends_on_package_pbi> </package> <package> <name>tinc</name> @@ -1433,10 +1432,10 @@ <website>http://www.balabit.com/network-security/syslog-ng/</website> <descr>Syslog-ng syslog server. This service is not intended to replace the default pfSense syslog server but rather acts as an independent syslog server.</descr> <category>Services</category> - <version>3.3.7_4</version> + <version>3.4.7_1</version> <status>ALPHA</status> <required_version>2.2</required_version> - <depends_on_package_pbi>syslog-ng-3.4.7-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>syslog-ng-3.4.7_1-##ARCH##.pbi</depends_on_package_pbi> <build_pbi> <ports_before>sysutils/logrotate</ports_before> <port>sysutils/syslog-ng</port> @@ -1485,7 +1484,7 @@ <pkginfolink>https://forum.pfsense.org/</pkginfolink> <descr><![CDATA[IPMI Tools for local/remote data retrieval and control (Console only, no GUI)]]></descr> <category>Services</category> - <version>1.8.12_4</version> + <version>1.8.12_5</version> <status>Beta</status> <required_version>2.2</required_version> <config_file>https://packages.pfsense.org/packages/config/ipmitool/ipmitool.xml</config_file> @@ -1495,7 +1494,7 @@ <port>sysutils/ipmitool</port> </build_pbi> <build_options>ipmitool_SET_FORCE=FREEIPMI;freeipmi_UNSET_FORCE=DOCS DEBUG IOPERM</build_options> - <depends_on_package_pbi>ipmitool-1.8.12_4-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>ipmitool-1.8.12_5-##ARCH##.pbi</depends_on_package_pbi> </package> <package> <name>sudo</name> @@ -1511,7 +1510,7 @@ <build_pbi> <port>security/sudo</port> </build_pbi> - <depends_on_package_pbi>sudo-1.8.8-##ARCH##.pbi</depends_on_package_pbi> + <depends_on_package_pbi>sudo-1.8.10p2-##ARCH##.pbi</depends_on_package_pbi> </package> <package> <name>Service Watchdog</name> diff --git a/pkg_config.7.xml b/pkg_config.7.xml index 296f7a47..f3fce773 100644 --- a/pkg_config.7.xml +++ b/pkg_config.7.xml @@ -8,7 +8,7 @@ <descr>Allows you to create and overwrite files from the GUI.</descr> <category>File Management</category> <pkginfolink>https://doc.pfsense.org/index.php/Filer_package</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/filer/filer.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/filer/filer.xml</config_file> <version>0.60</version> <status>Beta</status> <required_version>1.2.3</required_version> @@ -21,7 +21,7 @@ <descr>PHP File Manager</descr> <category>Diagnostics</category> <pkginfolink>https://forum.pfsense.org/index.php/topic,26974.0.html</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/filemgr/filemgr.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/filemgr/filemgr.xml</config_file> <version>0.1.3</version> <status>Beta</status> <required_version>1.2.2</required_version> @@ -34,7 +34,7 @@ <descr>Block countries</descr> <category>Firewall</category> <pkginfolink>https://forum.pfsense.org/index.php/topic,25732.0.html</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/countryblock/countryblock.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/countryblock/countryblock.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.2.4</version> <status>Beta</status> @@ -48,7 +48,7 @@ <descr>IP-Blocklist is the new PeerBlock. IP lists are used to add deny/allow rules to the firewall for in & out traffic.</descr> <category>Firewall</category> <pkginfolink>https://forum.pfsense.org/index.php/topic,24769.0.html</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/ipblocklist/7/ipblocklist.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/ipblocklist/7/ipblocklist.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.3.4</version> <status>Beta</status> @@ -65,7 +65,7 @@ <version>0.5</version> <status>BETA</status> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/anyterm/anyterm.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/anyterm/anyterm.xml</config_file> <configurationfile>anyterm.xml</configurationfile> </package> <package> @@ -77,7 +77,7 @@ <version>0.32</version> <status>BETA</status> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/haproxy/haproxy.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/haproxy/haproxy.xml</config_file> <configurationfile>haproxy.xml</configurationfile> </package> <package> @@ -89,7 +89,7 @@ <version>0.30</version> <status>BETA</status> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/haproxy-stable/haproxy.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/haproxy-stable/haproxy.xml</config_file> <configurationfile>haproxy.xml</configurationfile> </package> <package> @@ -101,7 +101,7 @@ <version>0.1.2</version> <status>ALPHA</status> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/apache_mod_security/apache_mod_security.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/apache_mod_security/apache_mod_security.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>mod_security-2.5.9.tbz</depends_on_package> <depends_on_package>apache-2.2.11_7.tbz</depends_on_package> @@ -116,7 +116,7 @@ <website>http://www.pureftpd.org/</website> <descr>*DO NOT RUN THIS ON A FIREWALL. USE A DEDICATED MACHINE!* Pure FTPd Server is a fast, production quality, standards-conformant FTP server based on Troll-FTPd. It has no known vulnerabilities, is trivial to set up, and is especially designed for modern kernels. Features include PAM support, IPv6, chroot()ed home directories, virtual domains, built-in 'ls', FXP protocol, anti-warez system, bandwidth throttling, restricted ports for passive downloads, an LDAP backend, XML output, and more.</descr> <category>FTP</category> - <config_file>https://packages.pfsense.org/packages/config/pure-ftpd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/pure-ftpd.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>pure-ftpd-1.0.20_3.tbz</depends_on_package> <version>1.0.21</version> @@ -138,7 +138,7 @@ <version>0.6.25_2</version> <status>ALPHA</status> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/avahi/avahi.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/avahi/avahi.xml</config_file> <configurationfile>avahi.xml</configurationfile> <after_install_info>Please visit the Avahi settings tab and select which interfaces you do not wish Avahi to listen on and click save to start the service.</after_install_info> </package> @@ -154,7 +154,7 @@ <version>3.3.8</version> <status>BETA</status> <required_version>1.2.1</required_version> - <config_file>https://packages.pfsense.org/packages/config/ntop/ntop.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/ntop/ntop.xml</config_file> <configurationfile>ntop.xml</configurationfile> <noembedded>true</noembedded> </package> @@ -167,7 +167,7 @@ <required_version>1.0</required_version> <status>RELEASE</status> <pkginfolink>https://doc.pfsense.org/index.php/Pubkey_package</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/pubkey.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/pubkey.xml</config_file> <configurationfile>pubkey.xml</configurationfile> <after_install_info>The pfSense release key has been updated.</after_install_info> </package> @@ -175,7 +175,7 @@ <name>Dashboard</name> <descr>Adds pfSense dashboard that will be included with 2.0. WARNING! Cannot be deinstalled.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/dashboard/dashboard.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/dashboard/dashboard.xml</config_file> <version>0.8.8</version> <status>BETA</status> <required_version>1.2</required_version> @@ -186,7 +186,7 @@ <name>Dashboard Widget: Snort</name> <descr>Dashboard widget for Snort.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/widget-snort/widget-snort.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/widget-snort/widget-snort.xml</config_file> <version>0.3</version> <status>BETA</status> <required_version>1.2</required_version> @@ -196,7 +196,7 @@ <name>Dashboard Widget: HAVP</name> <descr>Dashboard widget for HAVP alerts.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/widget-havp/widget-havp.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/widget-havp/widget-havp.xml</config_file> <version>0.1</version> <status>BETA</status> <required_version>1.2</required_version> @@ -206,7 +206,7 @@ <name>Dashboard Widget: Antivirus Status</name> <descr>Dashboard widget for HAVP status.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/widget-antivirus/widget-antivirus.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/widget-antivirus/widget-antivirus.xml</config_file> <version>0.1</version> <status>BETA</status> <required_version>1.2</required_version> @@ -218,7 +218,7 @@ <descr>FreeSWITCH is an open source telephony platform designed to facilitate the creation of voice and chat driven products scaling from a soft-phone up to a soft-switch. It can be used as a simple switching engine, a PBX, a media gateway or a media server to host IVR applications using simple scripts or XML to control the callflow. pfSense 1.2.3 or higher is recommended.</descr> <category>Services</category> <pkginfolink>https://doc.pfsense.org/index.php/FreeSWITCH</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/freeswitch/freeswitch.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/freeswitch/freeswitch.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.9.6</version> <status>Beta</status> @@ -233,7 +233,7 @@ <descr>FreeSWITCH package development version.</descr> <category>Services</category> <pkginfolink>https://doc.pfsense.org/index.php/FreeSWITCH</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/freeswitch_dev/freeswitch.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/freeswitch_dev/freeswitch.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.9.7.26</version> <status>Beta</status> @@ -248,7 +248,7 @@ <descr>Track things you want to note for this system.</descr> <category>Status</category> <pkginfolink/> - <config_file>https://packages.pfsense.org/packages/config/notes/notes.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/notes/notes.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.2.4</version> <status>Stable</status> @@ -262,7 +262,7 @@ <descr>Trivial File Transport Protocol is a very simple file transfer protocol. Often used with routers, voip phones and more.</descr> <category>Services</category> <pkginfolink/> - <config_file>https://packages.pfsense.org/packages/config/tftp/tftp.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/tftp/tftp.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>1.0.7</version> <status>Stable</status> @@ -276,7 +276,7 @@ <descr>PHP run as a service it can do anything PHP can do including but not limited to monitoring files, CPU, RAM, and send alerts to the syslog.</descr> <category>Services</category> <pkginfolink>https://doc.pfsense.org/index.php/PHPService</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/phpservice/phpservice.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/phpservice/phpservice.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.4.1</version> <status>Beta</status> @@ -290,7 +290,7 @@ <descr>Tool to Backup and Restore files and directories.</descr> <category>System</category> <pkginfolink></pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/backup/backup.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/backup/backup.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.1.7</version> <status>Stable</status> @@ -304,7 +304,7 @@ <descr>The cron utility is used to manage commands on a schedule.</descr> <category>Services</category> <pkginfolink></pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/cron/cron.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/cron/cron.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.2.2</version> <status>Beta</status> @@ -318,7 +318,7 @@ <descr>The shellcmd utility is used to manage commands on system startup.</descr> <category>Services</category> <pkginfolink></pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/shellcmd/shellcmd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/shellcmd/shellcmd.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.5</version> <status>Beta</status> @@ -332,7 +332,7 @@ <descr>DenyHosts analyzes logs for SSH login attempts and blocks offending IP addresses.</descr> <category>Services</category> <pkginfolink></pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/denyhosts/denyhosts.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/denyhosts/denyhosts.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.5.1</version> <status>Beta</status> @@ -346,7 +346,7 @@ <descr>DNS Blacklist uses dnsmasq entries to block domain names by category.</descr> <category>Services</category> <pkginfolink></pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/dnsblacklist/dnsblacklist.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/dnsblacklist/dnsblacklist.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.2.4</version> <status>Beta</status> @@ -360,7 +360,7 @@ <descr>It is a web server package that can host HTML, Javascript, CSS, and PHP. It uses the lighttpd web server that is already installed. It uses PHP5 in FastCGI mode and has access to PHP Data Ojbects and PDO SQLite.</descr> <category>Services</category> <pkginfolink>https://doc.pfsense.org/index.php/vhosts</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/vhosts/vhosts.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/vhosts/vhosts.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <version>0.7.4</version> <status>Stable</status> @@ -380,7 +380,7 @@ <depends_on_package>perl-5.8.9_3.tbz</depends_on_package> <depends_on_package>mysql-client-5.1.34.tbz</depends_on_package> <depends_on_package>snort-2.8.4.1_1.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/snort-old/snort.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/snort-old/snort.xml</config_file> <version>2.8.4.1_5 pkg v.1.8</version> <required_version>1.2.3</required_version> <status>legacy</status> @@ -393,11 +393,11 @@ <website>http://www.snort.org</website> <descr>Used by fortune 500 companies and governments Snort is the most widely deployed IDS/IPS technology worldwide. It features rules based logging and can perform content searching/matching in addition to being used to detect a variety of other attacks and probes, such as buffer overflows, stealth port scans, CGI attacks, SMB probes, and much more.</descr> <category>Security</category> - <depends_on_package_base_url>https://packages.pfsense.org/packages/config/snort/bin/7.3.x86/</depends_on_package_base_url> + <depends_on_package_base_url>http://packages.pfsense.org/packages/config/snort/bin/7.3.x86/</depends_on_package_base_url> <depends_on_package>pcre-8.10.tbz</depends_on_package> <depends_on_package>mysql-client-5.1.50_1.tbz</depends_on_package> <depends_on_package>snort-2.8.6.1.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/snort/snort.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/snort/snort.xml</config_file> <version>2.8.6.1 pkg v. 1.35</version> <required_version>1.2.3</required_version> <status>Stable</status> @@ -409,7 +409,7 @@ <website>http://siproxd.sourceforge.net/</website> <descr>Proxy for handling NAT of multiple SIP devices to a single public IP.</descr> <category>Services</category> - <config_file>https://packages.pfsense.org/packages/config/siproxd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/siproxd.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>siproxd-0.8.0.tbz</depends_on_package> <pkginfolink>https://doc.pfsense.org/index.php/Siproxd_package</pkginfolink> @@ -422,7 +422,7 @@ <name>OpenBGPD</name> <descr>OpenBGPD is a FREE implementation of the Border Gateway Protocol, Version 4. It allows ordinary machines to be used as routers exchanging routes with other systems speaking the BGP protocol.</descr> <category>NET</category> - <config_file>https://packages.pfsense.org/packages/config/openbgpd/openbgpd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/openbgpd/openbgpd.xml</config_file> <version>0.4.2</version> <status>STABLE</status> <required_version>1.3</required_version> @@ -442,7 +442,7 @@ <depends_on_package>perl-5.8.8_1.tbz</depends_on_package> <status>Beta1</status> <required_version>1.2.1</required_version> - <config_file>https://packages.pfsense.org/packages/config/lightsquid/lightsquid.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/lightsquid/lightsquid.xml</config_file> <configurationfile>lightsquid.xml</configurationfile> <noembedded>true</noembedded> </package> @@ -458,7 +458,7 @@ <status>Stable</status> <required_version>1.2.3</required_version> <maintainer>crazypark2@yahoo.dk</maintainer> - <config_file>https://packages.pfsense.org/packages/config/vnstat/vnstat.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/vnstat/vnstat.xml</config_file> <configurationfile>vnstat.xml</configurationfile> <after_install_info></after_install_info> </package> @@ -472,7 +472,7 @@ <required_version>1.0</required_version> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>mbmon-205_4.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/phpsysinfo/phpsysinfo.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/phpsysinfo/phpsysinfo.xml</config_file> <configurationfile>phpsysinfo.xml</configurationfile> <noembedded>true</noembedded> </package> @@ -486,7 +486,7 @@ <required_version>1.2.3</required_version> <maximum_version>1.2.3</maximum_version> <maintainer>crazypark2@yahoo.dk</maintainer> - <config_file>https://packages.pfsense.org/packages/config/Fit123/fit123.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/Fit123/fit123.xml</config_file> <configurationfile>fit123.xml</configurationfile> </package> <package> @@ -498,7 +498,7 @@ <status>Beta</status> <pkginfolink>https://doc.pfsense.org/index.php/Tinydns_package</pkginfolink> <required_version>1.2</required_version> - <config_file>https://packages.pfsense.org/packages/config/tinydns/tinydns.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/tinydns/tinydns.xml</config_file> <configurationfile>tinydns.xml</configurationfile> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>ucspi-tcp-0.88_2.tbz</depends_on_package> @@ -514,7 +514,7 @@ <status>Stable</status> <pkginfolink>https://doc.pfsense.org/index.php/Open_VM_Tools_package</pkginfolink> <required_version>1.2.1</required_version> - <config_file>https://packages.pfsense.org/packages/config/open-vm-tools/open-vm-tools.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/open-vm-tools/open-vm-tools.xml</config_file> <configurationfile>open-vm-tools.xml</configurationfile> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>open-vm-tools-nox11-253928.tbz</depends_on_package> @@ -528,7 +528,7 @@ </package> <package> <name>AutoConfigBackup</name> - <maintainer>portal@bsdperimeter.com</maintainer> + <maintainer>portal@pfsense.org</maintainer> <descr>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from https://portal.pfsense.org</descr> <website>https://portal.pfsense.org</website> <category>Services</category> @@ -536,7 +536,7 @@ <status>Stable</status> <required_version>1.2</required_version> <pkginfolink>https://doc.pfsense.org/index.php/AutoConfigBackup</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/autoconfigbackup/autoconfigbackup.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/autoconfigbackup/autoconfigbackup.xml</config_file> <configurationfile>autoconfigbackup.xml</configurationfile> </package> <package> @@ -548,7 +548,7 @@ <status>Stable</status> <pkginfolink>https://doc.pfsense.org/index.php/Arping_package</pkginfolink> <required_version>1.0.1</required_version> - <config_file>https://packages.pfsense.org/packages/config/arping/arping.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/arping/arping.xml</config_file> <configurationfile>arping.xml</configurationfile> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>arping-2.06.tbz</depends_on_package> @@ -560,7 +560,7 @@ <category>Security</category> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>nmap-4.76.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/nmap/nmap.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/nmap/nmap.xml</config_file> <version>4.76</version> <status>Stable</status> <pkginfolink>https://doc.pfsense.org/index.php/Nmap_package</pkginfolink> @@ -577,7 +577,7 @@ <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>openospfd-4.6.tbz</depends_on_package> <depends_on_package>libevent-1.4.14b_2.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/openospfd/openospfd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/openospfd/openospfd.xml</config_file> <pkginfolink></pkginfolink> <required_version>1.2.1</required_version> <configurationfile>openospfd.xml</configurationfile> @@ -592,7 +592,7 @@ <required_version>1.2.1</required_version> <status>BETA</status> <pkginfolink>https://doc.pfsense.org/index.php/IMSpector_package</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/imspector/imspector.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/imspector/imspector.xml</config_file> <configurationfile>imspector.xml</configurationfile> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>imspector-0.8.tbz</depends_on_package> @@ -609,7 +609,7 @@ <status>BETA</status> <required_version>1.2.1</required_version> <maintainer>rswagoner@gmail.com</maintainer> - <config_file>https://packages.pfsense.org/packages/config/nut/nut.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/nut/nut.xml</config_file> <configurationfile>nut.xml</configurationfile> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>nut-2.2.2.tbz</depends_on_package> @@ -624,8 +624,8 @@ <maintainer>ptaylor@addressplus.net</maintainer> <required_version>1.2.1</required_version> <status>BETA</status> - <config_file>https://packages.pfsense.org/packages/config/diag_states_pt/diag_new_states.xml</config_file> - <configurationfile>https://packages.pfsense.org/packages/config/diag_states_pt/diag_new_states.xml</configurationfile> + <config_file>http://packages.pfsense.org/packages/config/diag_states_pt/diag_new_states.xml</config_file> + <configurationfile>http://packages.pfsense.org/packages/config/diag_states_pt/diag_new_states.xml</configurationfile> </package> <package> <name>darkstat</name> @@ -639,7 +639,7 @@ <status>Stable</status> <required_version>1.2.1</required_version> <maintainer>sullrich+pfsp@gmail.com</maintainer> - <config_file>https://packages.pfsense.org/packages/config/darkstat/darkstat.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/darkstat/darkstat.xml</config_file> <configurationfile>darkstat.xml</configurationfile> </package> <package> @@ -647,7 +647,7 @@ <website>http://www.mindrot.org/pfflowd.html</website> <descr>pfflowd converts OpenBSD PF status messages (sent via the pfsync interface) to Cisco NetFlow datagrams. These datagrams may be sent (via UDP) to a host of one's choice. Utilising the OpenBSD stateful packet filter infrastructure means that flow tracking is very fast and accurate.</descr> <category>Network Management</category> - <config_file>https://packages.pfsense.org/packages/config/pfflowd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/pfflowd.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>pfflowd-0.8.tbz</depends_on_package> <version>0.8.2</version> @@ -667,7 +667,7 @@ <status>Stable</status> <pkginfolink>https://doc.pfsense.org/index.php/Widentd_package</pkginfolink> <required_version>1.2.1</required_version> - <config_file>https://packages.pfsense.org/packages/config/widentd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/widentd.xml</config_file> <configurationfile>widentd.xml</configurationfile> </package> <package> @@ -682,7 +682,7 @@ <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>freeradius-1.1.7_3.tbz</depends_on_package> <depends_on_package>libltdl-1.5.26.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/freeradius.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/freeradius.xml</config_file> <configurationfile>freeradius.xml</configurationfile> </package> <package> @@ -696,7 +696,7 @@ <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>bandwidthd-2.0.1_1.tbz</depends_on_package> <depends_on_package>libiconv-1.11_1.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/bandwidthd/bandwidthd.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/bandwidthd/bandwidthd.xml</config_file> <configurationfile>bandwidthd.xml</configurationfile> <noembedded>true</noembedded> </package> @@ -711,7 +711,7 @@ <status>Stable</status> <pkginfolink>https://doc.pfsense.org/index.php/Stunnel_package</pkginfolink> <required_version>1.2.1</required_version> - <config_file>https://packages.pfsense.org/packages/config/stunnel.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/stunnel.xml</config_file> <configurationfile>stunnel.xml</configurationfile> </package> <package> @@ -719,7 +719,7 @@ <website>http://dast.nlanr.net/Projects/Iperf/</website> <descr>Iperf is a tool for testing network throughput, loss, and jitter.</descr> <category>Network Management</category> - <config_file>https://packages.pfsense.org/packages/config/iperf.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/iperf.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>iperf-2.0.4.tbz</depends_on_package> <version>2.0.2_1</version> @@ -733,7 +733,7 @@ <website>http://freshmeat.net/projects/netio/</website> <descr>This is a network benchmark for DOS, OS/2 2.x, Windows NT/2000 and Unix. It measures the net throughput of a network via NetBIOS and/or TCP/IP protocols (Unix and DOS only support TCP/IP) using various different packet sizes.</descr> <category>Network Management</category> - <config_file>https://packages.pfsense.org/packages/config/netio.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/netio.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All</depends_on_package_base_url> <depends_on_package>netio-1.26.tbz</depends_on_package> <version>1.26</version> @@ -752,7 +752,7 @@ <version>0.65_2</version> <status>Stable</status> <required_version>2.0</required_version> - <config_file>https://packages.pfsense.org/packages/config/mtr-nox11.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/mtr-nox11.xml</config_file> <configurationfile>mtr-nox11.xml</configurationfile> </package> <package> @@ -768,7 +768,7 @@ <depends_on_package>squid-2.7.9.tbz</depends_on_package> <depends_on_package>squid_radius_auth-1.10.tbz</depends_on_package> <depends_on_package>openldap-sasl-client-2.4.25_1.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/squid/squid.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/squid/squid.xml</config_file> <configurationfile>squid.xml</configurationfile> </package> <package> @@ -782,7 +782,7 @@ <maintainer>seth.mos@dds.nl</maintainer> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>lcdproc-0.5.2_2.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/lcdproc/lcdproc.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/lcdproc/lcdproc.xml</config_file> <configurationfile>lcdproc.xml</configurationfile> </package> <package> @@ -795,7 +795,7 @@ <version>2.1.a13</version> <status>ALPHA</status> <required_version>2.0</required_version> - <config_file>https://packages.pfsense.org/packages/config/arpwatch.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/arpwatch.xml</config_file> <configurationfile>arpwatch.xml</configurationfile> <logging> <facilityname>arpwatch</facilityname> @@ -813,14 +813,14 @@ <required_version>1.1</required_version> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>squidGuard-1.4_3.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/squidGuard/squidguard.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/squidGuard/squidguard.xml</config_file> <configurationfile>squidguard.xml</configurationfile> </package> <package> <name>Zabbix Agent</name> <descr>Monitoring agent.</descr> <category>Services</category> - <config_file>https://packages.pfsense.org/packages/config/zabbix-agent/zabbix-agent.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/zabbix-agent/zabbix-agent.xml</config_file> <version>1.8.2_2</version> <status>FINAL</status> <required_version>1.2.3</required_version> @@ -833,7 +833,7 @@ <name>Zabbix Proxy</name> <descr>Monitoring agent proxy.</descr> <category>Services</category> - <config_file>https://packages.pfsense.org/packages/config/zabbix-proxy/zabbix-proxy.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/zabbix-proxy/zabbix-proxy.xml</config_file> <version>1.8.3,2_1</version> <status>FINAL</status> <required_version>1.2.3</required_version> @@ -851,7 +851,7 @@ <version>0.1</version> <status>BETA</status> <required_version>2.0</required_version> - <config_file>https://packages.pfsense.org/packages/config/openvpn-client-export/openvpn-client-export.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/openvpn-client-export/openvpn-client-export.xml</config_file> <configurationfile>openvpn-client-export.xml</configurationfile> </package> <package> @@ -865,7 +865,7 @@ <version>0.91</version> <status>BETA</status> <required_version>1.2.2</required_version> - <config_file>https://packages.pfsense.org/packages/config/havp/havp.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/havp/havp.xml</config_file> <configurationfile>havp.xml</configurationfile> <maintainer>dv_serg@mail.ru</maintainer> <after_install_info>Please check the HAVP settings.</after_install_info> @@ -876,7 +876,7 @@ <name>onatproto</name> <descr>Patch to add Protocol options to Manual Outbound NAT. WARNING! Cannot be uninstalled.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/onatproto/onatproto.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/onatproto/onatproto.xml</config_file> <version>0.1</version> <status>BETA</status> <required_version>1.2.1</required_version> @@ -891,7 +891,7 @@ <required_version>1.2.3</required_version> <status>BETA</status> <pkginfolink>https://doc.pfsense.org/index.php/PfJailctl_package</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/jailctl.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/jailctl.xml</config_file> <configurationfile>jailctl.xml</configurationfile> <maintainer>ltning-jailctl@anduin.net</maintainer> <noembedded>true</noembedded> @@ -905,7 +905,7 @@ <required_version>1.2.3</required_version> <status>BETA</status> <pkginfolink>https://doc.pfsense.org/index.php/PfJailctl_package</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/jail_template.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/jail_template.xml</config_file> <configurationfile>jail_template.xml</configurationfile> <maintainer>ltning-jailctl@anduin.net</maintainer> <noembedded>true</noembedded> @@ -918,7 +918,7 @@ <required_version>1.2.2</required_version> <status>BETA</status> <pkginfolink>https://doc.pfsense.org/index.php/IGMPproxy</pkginfolink> - <config_file>https://packages.pfsense.org/packages/config/igmpproxy/igmpproxy.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/igmpproxy/igmpproxy.xml</config_file> <configurationfile>igmpproxy.xml</configurationfile> <maintainer>eri@pfsense.org</maintainer> </package> @@ -932,7 +932,7 @@ <depends_on_package>nagios-plugins-1.4.13,1.tbz</depends_on_package> <depends_on_package>libiconv-1.11_1.tbz</depends_on_package> <depends_on_package>gettext-0.17_1.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/nrpe2/nrpe2.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/nrpe2/nrpe2.xml</config_file> <version>2.11</version> <status>Beta</status> <required_version>1.2</required_version> @@ -949,7 +949,7 @@ <status>STABLE</status> <required_version>1.2</required_version> <maximum_version>1.2.9</maximum_version> - <config_file>https://packages.pfsense.org/packages/config/ovpnenhance/ovpnenhance.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/ovpnenhance/ovpnenhance.xml</config_file> <configurationfile>ovpnenhance.xml</configurationfile> </package> <package> @@ -962,7 +962,7 @@ <required_version>1.2.2</required_version> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> <depends_on_package>rate-0.9.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/rate/rate.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/rate/rate.xml</config_file> <configurationfile>rate.xml</configurationfile> </package> <package> @@ -973,7 +973,7 @@ <status>So Alpha it's Omega</status> <maintainer>jimp@pfsense.org</maintainer> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/blinkled/blinkled.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/blinkled/blinkled.xml</config_file> <configurationfile>blinkled.xml</configurationfile> </package> <package> @@ -984,7 +984,7 @@ <status>Beta</status> <maintainer>jimp@pfsense.org</maintainer> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/openvpn-status/openvpn-status.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/openvpn-status/openvpn-status.xml</config_file> <configurationfile>openvpn-status.xml</configurationfile> </package> <package> @@ -995,14 +995,14 @@ <status>Beta</status> <maintainer>jimp@pfsense.org</maintainer> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/states-summary/states-summary.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/states-summary/states-summary.xml</config_file> <configurationfile>states-summary.xml</configurationfile> </package> <package> <name>IP Range Aliases</name> <descr>Patch to add IP Range support to Network Aliases. WARNING! Cannot be uninstalled. Probably does not play nice with URL Table patch.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/iprangealiases/iprangealiases.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/iprangealiases/iprangealiases.xml</config_file> <version>0.2</version> <status>BETA</status> <required_version>1.2.3</required_version> @@ -1012,7 +1012,7 @@ <name>URL Table Aliases</name> <descr>Patch to add URL Table alias support to pull a list of CIDRs/IPs from a file by URL into a persist table. WARNING! Cannot be uninstalled. Probably does not play nice with IP Range Aliases patch. This is NOT a way to add an alias for host URLs.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/urltables/urltables.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/urltables/urltables.xml</config_file> <version>0.1</version> <status>BETA</status> <required_version>1.2.3</required_version> @@ -1022,7 +1022,7 @@ <name>dnsmasq EDNS size increase</name> <descr>Patch to increase dnsmasq EDNS size to 4096 if needed. WARNING! Cannot be uninstalled.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/dnsmasq-edns/dnsmasq-edns.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/dnsmasq-edns/dnsmasq-edns.xml</config_file> <version>0.1</version> <status>BETA</status> <required_version>1.2.3</required_version> @@ -1032,7 +1032,7 @@ <name>Packet Capture Fix</name> <descr>Patch to fix packet capture on 1.2.3 embedded (NanoBSD)</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/packetcapturefix/packetcapturefix.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/packetcapturefix/packetcapturefix.xml</config_file> <version>0.2</version> <status>BETA</status> <required_version>1.2.3</required_version> @@ -1046,14 +1046,14 @@ <status>Beta</status> <maintainer>jimp@pfsense.org</maintainer> <required_version>1.2.3</required_version> - <config_file>https://packages.pfsense.org/packages/config/rrd-summary/rrd-summary.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/rrd-summary/rrd-summary.xml</config_file> <configurationfile>rrd-summary.xml</configurationfile> </package> <package> <name>Patch rc to leave filter_dirty</name> <descr>Patch to stop /etc/rc from removing /tmp/filter_dirty on boot. Fixes boot issues with some packages on certain platforms.</descr> <category>System</category> - <config_file>https://packages.pfsense.org/packages/config/patch_rc_filter_dirty/patch_rc_filter_dirty.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/patch_rc_filter_dirty/patch_rc_filter_dirty.xml</config_file> <version>0.1</version> <status>BETA</status> <required_version>1.2.3</required_version> @@ -1065,7 +1065,7 @@ <category>Diagnostics</category> <depends_on_package_base_url>http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/ports/i386/packages-7.2-release/All/</depends_on_package_base_url> <depends_on_package>libxml2-2.7.3.tbz</depends_on_package> - <config_file>https://packages.pfsense.org/packages/config/pre2upgrade/pre2upgrade.xml</config_file> + <config_file>http://packages.pfsense.org/packages/config/pre2upgrade/pre2upgrade.xml</config_file> <version>1.0</version> <status>Stable</status> <required_version>1.2</required_version> diff --git a/pkg_config.8.xml b/pkg_config.8.xml index d71d4257..573de46f 100644 --- a/pkg_config.8.xml +++ b/pkg_config.8.xml @@ -876,7 +876,6 @@ <port>dns/djbdns</port> </build_pbi> <build_options>WITH_IPV6=true;WITH_SRV=true;WITHOUT_DUMPCACHE=true;WITHOUT_IGNOREIP=true;WITHOUT_JUMBO=true;WITHOUT_MAN=true;WITHOUT_PERSISTENT_MMAP=true</build_options> - <supportedbybsdperimeter>YES</supportedbybsdperimeter> </package> <package> <name>Open-VM-Tools</name> @@ -919,7 +918,7 @@ </package> <package> <name>AutoConfigBackup</name> - <maintainer>portal@bsdperimeter.com</maintainer> + <maintainer>portal@pfsense.org</maintainer> <descr>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from https://portal.pfsense.org</descr> <website>https://portal.pfsense.org</website> <category>Services</category> diff --git a/pkg_config.8.xml.amd64 b/pkg_config.8.xml.amd64 index cd35c35b..6925b13e 100644 --- a/pkg_config.8.xml.amd64 +++ b/pkg_config.8.xml.amd64 @@ -863,7 +863,6 @@ <port>dns/djbdns</port> </build_pbi> <build_options>WITH_IPV6=true;WITH_SRV=true;WITHOUT_DUMPCACHE=true;WITHOUT_IGNOREIP=true;WITHOUT_JUMBO=true;WITHOUT_MAN=true;WITHOUT_PERSISTENT_MMAP=true</build_options> - <supportedbybsdperimeter>YES</supportedbybsdperimeter> </package> <package> <name>Open-VM-Tools</name> @@ -906,7 +905,7 @@ </package> <package> <name>AutoConfigBackup</name> - <maintainer>portal@bsdperimeter.com</maintainer> + <maintainer>portal@pfsense.org</maintainer> <descr>Automatically backs up your pfSense configuration. All contents are encrypted on the server. Requires pfSense Premium Support Portal Subscription from https://portal.pfsense.org</descr> <website>https://portal.pfsense.org</website> <category>Services</category> |