summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* In filter_generate_reflection_nat, generate a rule with the actual subnet ↵Erik Fonnesbeck2010-11-221-15/+21
| | | | instead of using the interface:network shortcut. Ticket #737
* Add newlinesScott Ullrich2010-11-211-4/+4
|
* nuke ;Scott Ullrich2010-11-211-1/+1
|
* Remove hw.bce.tso_enable item it is loader.conf only per jimpScott Ullrich2010-11-211-10/+6
|
* Remove bce item it is loader.conf only per jimpScott Ullrich2010-11-211-2/+1
|
* Define hw.bce.tso_enableScott Ullrich2010-11-211-1/+2
|
* Don't consider the HTTP referrer check as passing if it was skipped. Ticket ↵Erik Fonnesbeck2010-11-211-1/+2
| | | | #1027
* Upon restoring a config, replacing whole sections, or editing config.xml in ↵Erik Fonnesbeck2010-11-213-4/+52
| | | | edit.php, prevent possible accidental lockout from DNS rebind and HTTP referrer checks by disabling them until reboot or the next time they pass, whichever comes sooner. Ticket #1027
* Increase vfs.read_max to 32. See ↵Scott Ullrich2010-11-201-26/+27
| | | | http://ivoras.sharanet.org/blog/tree/2010-11-19.ufs-read-ahead.html .. This can help dramatically if using Squid or any other packae that does a lot of hard disk reads.
* Disable this test, it was causing some package file downloads to be skipped ↵jim-p2010-11-201-2/+4
| | | | for me, and nothing else seems to set/use this variable anywhere.
* Reorder some code and combine the nobind test with the lport code to ensure ↵jim-p2010-11-191-9/+9
| | | | only the needed options are used in any given combination.
* When the local port is left blank on an OpenVPN client, use 'lport 0' to ↵jim-p2010-11-191-3/+3
| | | | direct the client to use a random source port. Fixes #1025
* Cleanup some code and properly handle failure of pkg_fetch_recursive.Ermal2010-11-191-21/+17
|
* Clarify message.Ermal2010-11-191-1/+1
|
* Use correct extension of tgz rather than tgz for automatically discovered ↵Ermal2010-11-191-10/+6
| | | | dependencies.
* Honor the config parsed var if set.Ermal2010-11-191-2/+2
|
* Hopefully now the reinclusion of config will not override vars.Ermal2010-11-193-5/+5
|
* Use full path when we might not have full environment setup.Ermal2010-11-191-2/+2
|
* globals.inc is better first.Ermal2010-11-191-1/+1
|
* More safety belts.Ermal2010-11-191-4/+4
|
* Fix fetching of package list.Ermal2010-11-181-1/+1
|
* Add myself to the copyright. Have modified enough the file.Ermal2010-11-181-0/+1
|
* Some fixes for the upgrade code for captive portal users.Erik Fonnesbeck2010-11-181-1/+11
|
* Remove the old field even if empty in rename_field.Erik Fonnesbeck2010-11-181-2/+2
|
* Various fixes and improvements for the DNS rebind and HTTP referrer checks.Erik Fonnesbeck2010-11-181-33/+34
| | | | | | | | | | * Only compare with full host from referrer, since someone can put whatever they want at the left side of the period to the left of the domain name. * Now can check for hostname as well, not just hostname.domain, in referrer check. * Fix althostnames case for referrer check. * Move the simpler, more commonly used cases above the ones involving foreach loops and skip the loops when a name match has already been found. * Break out of foreach loops when a match has already been found. * Do case-insensitive matching of hosts and domains. * Remove useless checks of non-IP addresses against SERVER_ADDR.
* Fix problem with syslog adding/removing for pacakges. Fix sync pacakges to ↵Ermal2010-11-182-85/+80
| | | | call the right functions. Optimizations and code cleanup along the way.
* Clear up some code.Ermal2010-11-172-4/+2
|
* Boost timeout for file downloads to 60 secondsScott Ullrich2010-11-171-1/+1
|
* Ticket #1017. Move the fwrite and fd_log initializing to a function. Name ↵Ermal2010-11-171-28/+33
| | | | the function pkg_debug to properly show what is its purpose and also make it write something only when $debug is set.
* Ticket #1017. Put a @ before each fwrite to silence errors. Also setup the ↵Ermal2010-11-171-45/+17
| | | | log file in the beginning rather than on each individual function.
* Resolves #1018. Provide a more unique host name for the file.Ermal2010-11-171-3/+3
|
* The way this option is currently defined, the configuration variable is ↵Erik Fonnesbeck2010-11-171-1/+1
| | | | always set; for this case, isset is not the correct condition. Reported at http://forum.pfsense.org/index.php/topic,30153.0.html
* Add workaround for referrer check to not be triggered on the previous IP ↵Erik Fonnesbeck2010-11-171-9/+20
| | | | address when redirected by the setup wizard.
* Fix typoRenato Botelho2010-11-171-1/+1
|
* Make the pkg_fetch_recursive code stronger and try also to fetch from ↵Ermal2010-11-161-10/+22
| | | | freebsd repo when fails to fetch from pfSense one.
* Correctly form the url from where to fetch packages if a base is not ↵Ermal2010-11-161-15/+34
| | | | specified. This unbreaks packages on amd64! Also do no remove a package which is required by other installations.
* Correct variable name.Ermal2010-11-161-1/+1
|
* * Use pkg_info -E pkgname* for testing if a package is installed.Ermal2010-11-161-90/+91
| | | | | | | | | * Do not call eval if we cannot include an .inc file since that will make the whole script fail. * Keep the log from the start to the end without overwriting. This makes debugging and problem reporting easy and explains what is done during installation. * Check retrun value of download_with_progress_bar to make it possible catching errors during download. * Lots of improvements in between Related to Ticket #950
* Tighten check even more. Ticket #1006.Ermal2010-11-161-1/+1
|
* Ticket #1006. Make sure to interpret the response as needed. First check if ↵Ermal2010-11-161-5/+2
| | | | we got 0 and then check if we have a faultCode().
* Make sure this isn't searching the referrer using a blank host or IP, which ↵Erik Fonnesbeck2010-11-151-3/+12
| | | | will always match the referrer.
* Fix case for testing the referrer check setting. Ticket #1011Erik Fonnesbeck2010-11-151-1/+1
|
* Remove these anchors they just provide overhead and are not really used much ↵Ermal2010-11-151-27/+0
| | | | in pfSense.
* Remove gre helping rules they are not anymore needed.Ermal2010-11-151-17/+0
|
* Send errors to 2>Scott Ullrich2010-11-151-1/+1
|
* Copy /boot/loader.conf.local to the newly imaged slice. Ticket #892Erik Fonnesbeck2010-11-141-0/+6
|
* Don't perform referer check if display_error_form is not defined (captive ↵Erik Fonnesbeck2010-11-141-1/+1
| | | | portal), just like as is done for the DNS rebind check. Ticket #1007
* Rework handling of ports for reflection on port forwards to work properly ↵Erik Fonnesbeck2010-11-141-59/+96
| | | | with port aliases. Ticket #672
* Unset this reference before reusing the variable name to prevent corruption ↵Erik Fonnesbeck2010-11-131-0/+2
| | | | of groups.
* Fix test for altq on vlans and wlan.Ermal2010-11-121-2/+2
|
OpenPOWER on IntegriCloud