summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
...
* Skip v6 WANs in Unbound access-control. Ticket #4023Chris Buechler2014-11-281-1/+3
|
* fix v6 access-control in Unbound, Ticket #4023Chris Buechler2014-11-281-1/+2
|
* Ticket #4009 Force serial console whenever the installer told us so.Ermal LUÇI2014-11-281-0/+3
|
* check if Unbound is enabled in addition to dnsmasq for v6 DNS assignment. ↵Chris Buechler2014-11-281-3/+3
| | | | Fixes #4051
* Fix input validation for DNS resolver when localhost is enabled in ↵Chris Buechler2014-11-281-7/+12
| | | | resolv.conf and "all" chosen in Network Interfaces. While here, set something other than '' when all is chosen.
* Merge pull request #1354 from phil-davis/patch-2Ermal2014-11-281-5/+9
|\
| * Process RRD backup compression in varPhil Davis2014-11-281-5/+9
| | | | | | | | | | | | | | | | Prior to this the RRD xml files were added uncompressed to the archive in /cf/conf and then that archive was compressed at the end. My /cf partition is only 50MB. The uncompressed archive of all the xml files is already 35MB. With a few config backups, or a few more VLANs (xml files) I will soon run into the 50MB limit. This change creates each xml from rrd one at a time, then compresses that 1 xml into a tgz in /var/db/rrd, deletes the xml then loops to the next rrd file. At the end of the loop, there are a bunch of /var/db/rrd/*.tgz files, which are small (they take up <2MB on my system, from XMLs that total 35MB). They are then unpacked and put into 1 /cf/conf/rrd.tgz in a single command. Thus there is no time when 35MB of xml content has to be stored anywhere. This should work for systems with a lot of RRD files that turn into XML and then TGZ one at a time.
* | Correct some logic and remove temporary filesErmal LUÇI2014-11-281-1/+2
| |
* | Make restore one by one to help ↵Ermal LUÇI2014-11-281-8/+12
|/ | | | https://forum.pfsense.org/index.php?topic=84693.0
* Process the rrd files one by one to fix ↵Ermal LUÇI2014-11-281-2/+8
| | | | https://forum.pfsense.org/index.php?topic=84693.0. Restore will come after
* Correct typo on variable. Should help ↵Ermal LUÇI2014-11-281-1/+1
| | | | https://forum.pfsense.org/index.php?topic=84451.0
* Add a parameter on platform_booting to help detect if it's on GUI on console ↵Renato Botelho2014-11-283-6/+7
| | | | and use it in appropriate places, it fixes #4049
* Fix sapi name check to detect if it's on console, ticket #4049Renato Botelho2014-11-281-4/+4
|
* Remove the . here they just confuse things as in Ticket #4049. Also check ↵Ermal LUÇI2014-11-281-9/+1
| | | | that the script is called from console to trigger the convertion and mounting of floppy.
* Remove these booting settings since are uselessErmal LUÇI2014-11-281-3/+0
|
* Remove these booting settings since are uselessErmal LUÇI2014-11-282-6/+0
|
* Bring back the old way of waiting for 3 times of 10seconds on bootup for a ↵Ermal LUÇI2014-11-281-6/+4
| | | | ppp type interface to come up. while here also do bringup of virtual interfaces only when not booting
* Use function for determining if its ppp typeErmal LUÇI2014-11-281-7/+1
|
* Cleanup some code and use function for easier managementErmal LUÇI2014-11-281-25/+3
|
* Merge pull request #1352 from phil-davis/patch-8Renato Botelho2014-11-281-1/+1
|\
| * Fixup misleading commentPhil Davis2014-11-281-1/+1
| | | | | | | | This comment was misleading - this is the IP of whatever interface that is being processed, not just WAN IP. Might as well fix while noticed, to save someone else from misunderstanding in future. The curwanip var is really "Current Interface IP" and could be called curinterfaceip, but I was not about to search/replace all that at this point, since it is only a var name.
* | Merge pull request #1351 from phil-davis/patch-7Renato Botelho2014-11-281-1/+1
|\ \
| * | Fix module name in top commentPhil Davis2014-11-281-1/+1
| |/ | | | | A bit of rubbish to update while I notice it.
* | Add option to disable auto-added access-control entries for users who want ↵Chris Buechler2014-11-271-38/+40
|/ | | | to manually manage ACLs. Ticket #4023
* Fixes #4040 for pppoe use static route with -iface option to help when more ↵Ermal LUÇI2014-11-272-4/+35
| | | | than one pppoe has the same gateway. Also kill states when reloading apinger to catch up with new route
* Use the pfsense module functions rather than execing. Fixes also possible ↵Ermal LUÇI2014-11-272-5/+5
| | | | attack vectors.
* use correct variable hereChris Buechler2014-11-271-1/+1
|
* Make the parsing of setkey -d(SAs) more reliable. Fixes #4043Ermal LUÇI2014-11-271-18/+19
|
* Correct logic of skipping for gif/gre/bridge on top of _vips. Even though ↵Ermal LUÇI2014-11-271-3/+3
| | | | this is not anymore a problem in 10 since the vip is on the physical interface but for now its ok.
* Simplify code flow not functional change just aesthetics.Ermal LUÇI2014-11-271-42/+43
|
* Put the safety belts for rrds on its proper location. No need to create /tmp ↵Ermal LUÇI2014-11-272-7/+13
| | | | and change permissions on these paths
* Try to silence the errors for missing /var/db/rrd during bootup.Ermal LUÇI2014-11-271-1/+1
|
* Merge pull request #1350 from phil-davis/patch-6Renato Botelho2014-11-271-7/+20
|\
| * Fix Unbound host_entries.conf warnings on console during bootPhil Davis2014-11-271-7/+20
| | | | | | | | | | system_hosts_generate() tried to make /var/unbound/host_entries.conf at various times in the boot sequence before the main Unbound start code was called. But these early calls to unbound-related things did not have any check to see if /var/unbound was created yet. I pulled out the code to create /var/unbound into a separate routine, create_unbound_chroot_path, then call that before any of the file_put_contents. That gets rid of the console error messages during boot, and also will correct any future issue with the sequence of calls to any of these routines.
* | Put a comment for the wierd code hereErmal LUÇI2014-11-271-0/+1
| |
* | Handle recovering of ppp types as pppoe/l2tp/pp2p when the parent comes up. ↵Ermal LUÇI2014-11-271-1/+17
|/ | | | It should solve the issues present before on pppoe not recovering on link loss especially when connected directly to modem.
* Setup rrd dir before calling create_gateway_quality_rrdPhil Davis2014-11-271-7/+7
| | | | | | Stops error: ERROR: opening '/var/db/rrd/WAN_DHCP-quality.rrd': No such file or directory in system log during boot. Forum: https://forum.pfsense.org/index.php?topic=84627.0
* Use the undocumented -q options of devd to reduce spamming on logs. pfSense ↵Ermal LUÇI2014-11-271-1/+3
| | | | scripts do their logging so not necessary to have devd in there.
* Do not run this during bootupErmal LUÇI2014-11-271-1/+2
|
* OptimizeErmal LUÇI2014-11-271-4/+1
|
* Do not run this code during upgrade and if ost is booting upErmal LUÇI2014-11-271-4/+8
|
* Actually comment this code out since it causes more troubles than solves for ↵Ermal LUÇI2014-11-261-1/+3
| | | | any type
* Just indent code to make it more readble.Ermal LUÇI2014-11-261-102/+98
|
* Make at least the code correct here even though it does not make sense on ↵Ermal LUÇI2014-11-261-1/+2
| | | | what it does!
* This is revrsed conversion. The linkup script should run after booting not ↵Ermal LUÇI2014-11-261-1/+1
| | | | during it. This should help with issues on ppp type links reported
* Actually rc.linkup needs the parent search for example on ppp type wans.Ermal LUÇI2014-11-261-1/+1
|
* Mute this since only spams logs when interface is not thereErmal LUÇI2014-11-261-1/+1
|
* Move these functions nearby since thy are relatedErmal LUÇI2014-11-261-18/+18
|
* Actually get the correct value here!Ermal LUÇI2014-11-261-1/+1
|
* Actually consider parentmtu 0 here to get the real value when unassginedErmal LUÇI2014-11-261-1/+1
|
OpenPOWER on IntegriCloud