aboutsummaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Add "auto apply" bit to system patches which will attempt to apply a patch ↵jim-p2013-03-295-4/+90
| | | | during earlyshellcmd at boot time, to help patches survive across reboots and upgrades.
* Add one more little note.jim-p2013-03-291-1/+1
|
* Some more refinements for the mail reports package.jim-p2013-03-296-10/+44
|
* Add command output and log output capabilities to the "mail reports" package.jim-p2013-03-288-41/+494
|
* pfBlocker allow list ranges that are not exact subnetsPhil Davis2013-03-281-27/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #2892 I made a "nasty" list as follows: 192.168.100.0-192.168.101.255 192.168.103.8-192.168.103.23 192.168.104.1-192.168.104.254 192.168.105.22-192.168.106.66 192.168.107.3-192.168.107.33 And this code turns it into: 192.168.100.0/23 192.168.103.8/29 192.168.103.16/29 192.168.104.1/32 192.168.104.2/31 192.168.104.4/30 192.168.104.8/29 192.168.104.16/28 192.168.104.32/27 192.168.104.64/26 192.168.104.128/26 192.168.104.192/27 192.168.104.224/28 192.168.104.240/29 192.168.104.248/30 192.168.104.252/31 192.168.104.254/32 192.168.105.22/31 192.168.105.24/29 192.168.105.32/27 192.168.105.64/26 192.168.105.128/25 192.168.106.0/26 192.168.106.64/31 192.168.106.66/32 192.168.107.3/32 192.168.107.4/30 192.168.107.8/29 192.168.107.16/28 192.168.107.32/31 Which is the correct group of CIDRs to represent the given ranges.
* Correct permission otherwise openbgpd does not startErmal2013-03-281-2/+2
|
* Correctly write config file and also properly avoid php errors with some ↵Ermal2013-03-281-22/+24
| | | | extra safety belts
* Do not make mandatory the local addr but use the listenip if local address ↵Ermal2013-03-282-2/+12
| | | | is not set to easy configuration same as was previously done with setkey
* No need anymore for the setkey commandErmal2013-03-281-32/+6
|
* Actually the md5sigkey is directly given in hex revert partially previous commitErmal2013-03-271-10/+4
|
* Correctly generate the hex value needed for md5sigkey value. Use correct ↵Ermal2013-03-271-13/+15
| | | | permissions for configuration file when generating
* Merge pull request #414 from PiBa-NL/haproxy-devel-2.1Jim P2013-03-264-25/+67
|\ | | | | advanced bind options, extended username/password characters+escaping, c...
| * advanced bind options, extended username/password characters+escaping, ↵PiBa-NL2013-03-274-25/+67
| | | | | | | | change deprecated options to current equivalents, changed nbproc default to 1, for better (default settings) compatibility with other options.
* | Fix preproc auto-rule disable to skip disabled rules.bmeeks82013-03-221-1/+2
| |
* | Set correct VRT Rules tarball for Snort 2.9.4.1bmeeks82013-03-211-1/+1
| |
* | Move to latest available rulesetsErmal2013-03-211-3/+3
| |
* | Rename function to not clash with pfsense oneErmal2013-03-191-3/+3
| |
* | Merge pull request #410 from PiBa-NL/haproxy-devel-2.1Jim P2013-03-166-65/+114
|\| | | | | haproxy-devel, removed cert filtering, server options, fixed saving global advanced setting.
| * haproxy-develPiBa-NL2013-03-166-65/+114
| | | | | | | | | | | | | | -allow advanced configuration like a cookie per backend-server -show if ACLs have been used in the overview -fixed global advanced option saving -show all certificates, as filtering server certs didn't work properly..
* | Merge pull request #409 from PiBa-NL/systempatches_htmlspecialcharsJim P2013-03-151-1/+1
|\ \ | | | | | | systempatches, fix editing patch containing html code using: htmlspecialchars
| * | systempatches, fix editing patch containing html code using: htmlspecialcharsPiBa-NL2013-03-151-1/+1
| | |
* | | Correct descpritonErmal2013-03-151-2/+2
| | |
* | | bandwidthd - rotate log files when output_cdf is enabledPhil Davis2013-03-151-5/+21
| | | | | | | | | Improve the documentation of options on the GUI, including what happens when output_cdf is on.
* | | bandwidthd - rotate log files when output_cdf is enabledPhil Davis2013-03-151-2/+16
| | |
* | | Merge pull request #407 from PiBa-NL/haproxy-devel-2.1Jim P2013-03-144-112/+287
|\ \ \ | | |/ | |/| haproxy-devel, made frontend merging hide more irrelevant settings
| * | haproxy-devel, made frontend merging in such a way that it is more obvious ↵PiBa-NL2013-03-144-112/+287
| | | | | | | | | | | | that a lot of settings are not needed for 'secondary' frontends.
* | | bandwidthd on nanobsd - put logo and legend files in placePhil Davis2013-03-131-1/+6
| | | | | | | | | legend.gif and logo.gif were missing from the report/graph page. They need to be put in /var/bandwidthd/htdocs
* | | update repo locationChris Buechler2013-03-113-5/+5
|/ /
* | haproxy-devel, small bugfixes.. maintain ssl checkbox selection, dont use ↵PiBa-NL2013-03-093-12/+49
| | | | | | | | httpcheck for ssl backends, use req_ssl_hello_type for https with SNI acl's.
* | haproxy-devel, ssl backend support, X-Forwarded-Proto, server states ↵PiBa-NL2013-03-083-63/+90
| | | | | | | | active/backup/disabled/inactive, certificate purpose show 'server certs' only.
* | haproxy-devel,PiBa-NL2013-03-066-36/+89
| | | | | | | | | | -allow shared frontend with SSL offloading -error checking+reporting to user while applying configuration.
* | haproxy-devel, enable ssl selection box.PiBa-NL2013-03-051-4/+5
|/
* Change this quagga command order back, as it appears to be invalid syntax.jim-p2013-03-052-2/+2
|
* Fix typojim-p2013-03-051-1/+1
|
* this currently fails so disable for nowTorben Nielsen2013-03-041-2/+2
|
* add option fore removing a server rowTorben Nielsen2013-03-041-0/+11
|
* add option for setting per backend advanced settings (current only takes pr ↵Torben Nielsen2013-03-042-3/+26
| | | | server)
* isnumeric(weight) is enough to check valid server weightTorben Nielsen2013-03-041-2/+1
|
* adjust layoutTorben Nielsen2013-03-041-4/+4
|
* Open the Access Bandwidthd UI in a new tabPhil Davis2013-03-041-2/+2
| | | The Access Bandwidthd tab takes the user completely out of the pfSense WebGUI interface when clicked. This behaviour is not user-friendly. IMHO it is better to open the Bandwidthd UI in a new tab.
* Merge pull request #396 from hoerup/masterChris Buechler2013-03-041-9/+9
|\ | | | | Fix for bug #2624
| * Reformated rewrite xml part - can't say why but apparently this fixes bug #2624Torben Nielsen2013-03-041-9/+9
| |
* | Merge pull request #395 from PiBa-NL/haproxy-devel_build_tagsJim P2013-03-035-348/+424
|\ \ | | | | | | haproxy-devel, improvements (but 'breaks' parts current config)
| * | haproxy-devel, improvements (but 'breaks' parts current config)PiBa-NL2013-03-045-348/+424
| | | | | | | | | | | | | | | | | | | | | -moved the 'backend' config fields to page where they make more sense without "magic merging" of frontend settings.. -certificate can now be chosen from certificate manager certificates to find any 'config problems' run "haproxy -c -V -f /var/etc/haproxy.cfg" on a console/ssh session
* | | Merge pull request #394 from hoerup/masterJim P2013-03-031-1/+1
|\ \ \ | | |/ | |/| varnish3: Storage size is a mandatory field
| * | storage size is a mandatory fieldTorben Nielsen2013-03-031-1/+1
| | |
* | | Merge pull request #393 from hoerup/masterJim P2013-03-032-8/+24
|\| | | | | | | | varnish3: Add gui option to disable backend probing
| * | varnish3: Add gui option to disable backend probingTorben Nielsen2013-03-032-8/+24
| | |
* | | bandwidthd robust filesystem creationPhil Davis2013-03-031-9/+49
|/ / | | | | Make the code that starts bandwidthd check for the correct dirs and symlinks, leave them alone if they are already there, and put them in place if they are missing. This fixes some places where some commands were generating "already exists" warnings, and generally makes sure that whatever someone does at the command line to mess with bandwidthd dirs and links, they will be put back when bandwidthd starts.
* | Merge pull request #391 from PiBa-NL/haproxy-devel_build_tagsJim P2013-03-029-1074/+1510
|\| | | | | haproxy-devel, make it work + SNI and SSLoffloading