summaryrefslogtreecommitdiffstats
path: root/etc/rc.bootup
Commit message (Collapse)AuthorAgeFilesLines
* LAN is now optional.Scott Ullrich2008-02-091-7/+9
|
* Start dns cache updater script on bootupScott Ullrich2007-09-251-1/+1
|
* Start /usr/sbin/update_dns_cache.sh on startupScott Ullrich2007-09-251-0/+2
|
* Start racoon_watch.sh script on bootup if racoon is enabled.Scott Ullrich2007-08-171-0/+3
|
* * Remove trailing space * Remove duplicate command accidently commitedScott Ullrich2007-07-311-4/+2
|
* Increase timeouts when using a 1000 hz. From the FreeBSD commit message: ↵Scott Ullrich2007-07-311-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ÊChange TCPTV_MIN to be independent of HZ. ÊWhile it was documented to Êbe in ticks "for algorithm stability" when originally committed, it turns Êout that it has a significant impact in timing out connections. ÊWhen we Êchanged HZ from 100 to 1000, this had a big effect on reducing the time Êbefore dropping connections. ÊTo demonstrate, boot with kern.hz=100. Êssh to a box on local ethernet Êand establish a reliable round-trip-time (ie: type a few commands). ÊThen unplug the ethernet and press a key. ÊTime how long it takes to Êdrop the connection. ÊThe old behavior (with hz=100) caused the connection to typically drop Êbetween 90 and 110 seconds of getting no response. ÊNow boot with kern.hz=1000 (default). ÊThe same test causes the ssh session Êto drop after just 9-10 seconds. ÊThis is a big deal on a wifi connection. ÊWith kern.hz=1000, change sysctl net.inet.tcp.rexmit_min from 3 to 30. ÊNote how it behaves the same as when HZ was 100. ÊAlso, note that when Êbooting with hz=100, net.inet.tcp.rexmit_min *used* to be 30. ÊThis commit changes TCPTV_MIN to be scaled with hz. Êrexmit_min should Êalways be about 30. ÊIf you set hz to Really Slow(TM), there is a safety Êfeature to prevent a value of 0 being used. ÊThis may be revised in the future, but for the time being, it restores the Êold, pre-hz=1000 behavior, which is significantly less annoying. ÊAs a workaround, to avoid rebooting or rebuilding a kernel, you can run Ê"sysctl net.inet.tcp.rexmit_min=30" and add "net.inet.tcp.rexmit_min=30" Êto /etc/sysctl.conf. ÊThis is safe to run from 6.0 onwards. ÊApproved by: Êre (rwatson) ÊReviewed by: Êandre, silby
* Start DHCPD before DNSMASQ to avoid this error on embedded: Jul 12 01:34:39 ↵Scott Ullrich2007-07-121-3/+3
| | | | dnsmasq[588]: failed to access /var/dhcpd/var/db/dhcpd.leases: No such file or directory
* Correctly move upnp to base since LiveCD cannot write files to ↵Scott Ullrich2007-06-301-0/+2
| | | | /usr/local/etc or /usr/local/etc/rc.d/ Ticket #1342
* Set the recv and send space to 4096 when folks use pfSense on 64 megabyte ↵Scott Ullrich2007-06-031-0/+2
| | | | machines.
* Remove extra "'s.Scott Ullrich2007-05-141-1/+1
|
* Remove previous firmware.tgz on bootup if present.Scott Ullrich2007-05-141-0/+6
|
* Port load balancer sticky address optionScott Ullrich2007-05-091-0/+1
|
* Add a wan interface up check before we start any time syncing.Seth Mos2007-05-081-0/+3
|
* * Use is_interface_mismatch() function * Do not allow configuration to ↵Scott Ullrich2007-04-231-20/+10
| | | | continue until the interfaces are setup correctly
* startup routed on boot if it's enabledBill Marquette2007-04-081-0/+4
|
* Do ourself a favor and start the time sync after we configured the interfaces.Seth Mos2007-03-061-3/+3
| | | | So we can actually sync to something.
* force a time sync early in the boot before we start any services.Seth Mos2007-02-201-1/+4
| | | | | This especially important for dhcp when used in failover. Let NTPd keep the time in sync.
* Backport cron handling from HEAD.Scott Ullrich2007-01-291-0/+3
| | | | Patches-submitted-by: DSH@
* Hard code paths to /etc/inc files on bootup.Scott Ullrich2007-01-161-4/+4
| | | | | | If for some reason php.ini gets whiped out on bootup then you will never be able to boot again. This works around that issues and ensures that we atleast can bootup to the point where php.ini gets written back out. Many many wasted hours on this issue.
* Do not complain unless user has less than 126 megs of ram. Some ↵Scott Ullrich2006-11-111-1/+1
| | | | motherboards share ram with video cards.
* Call the php.ini creation function after the other functions have been ↵Scott Ullrich2006-10-101-8/+7
| | | | loaded into memory.
* Call the php.ini creation function after the other functions have been ↵Scott Ullrich2006-10-101-4/+3
| | | | loaded into memory.
* * Dynamically create php.ini on bootupScott Ullrich2006-10-101-4/+9
| | | | * Do not use APC for embedded machines. Advice from #lighttpd
* Add missing "Scott Ullrich2006-10-081-1/+1
|
* Show a big fat warning on every bootup via the notices system if the minimum ↵Scott Ullrich2006-10-081-0/+5
| | | | ram requirements are not met.
* Add afterbootupshellcmd that is executed when the system is booted up.Scott Ullrich2006-10-031-0/+4
|
* Misc OpenNTPD changes. Do not restart on wan ip changeScott Ullrich2006-10-031-5/+5
|
* Switch to OpenNTPD.Scott Ullrich2006-10-021-0/+2
|
* Do not space after ...Scott Ullrich2006-09-011-12/+12
|
* Now that we are optimized switch the loading firewall output on bootup to a ↵Scott Ullrich2006-09-011-1/+1
| | | | "." method.
* Echo out . in a few places during bootupScott Ullrich2006-08-261-7/+0
|
* Alert user what is happening during bootup to fill the void. Now pfSense ↵Scott Ullrich2006-08-261-18/+27
| | | | looks rather snappy during bootup.
* We need the tunnel interfaces to be active before configuring the filter. ↵Scott Ullrich2006-06-291-4/+4
| | | | This should hopefully solve the openvpn reboot issues.
* MFC needed package changes from FernandoScott Ullrich2006-06-051-1/+2
|
* Don't start from interfaces.inc. We're moving to rc.bootupScott Ullrich2006-04-271-0/+3
|
* Add watchdogd support for Soekris and WRAP platforms.Scott Ullrich2006-04-271-1/+4
|
* Start slbd right before first filter_configure_sync()Scott Ullrich2006-04-171-3/+3
|
* call openvpn_resync_all() on bootupScott Ullrich2006-04-031-1/+1
|
* Temporarily turn off OpenVPN since Call to undefined function: ↵Scott Ullrich2006-04-021-1/+1
| | | | | | openvpn_resync_all() Pointy-hat-to: FernandoTCL
* MFC Fernando's OpenVPN changes.Scott Ullrich2006-04-011-1/+1
|
* One period is enough.Scott Ullrich2006-03-251-1/+1
|
* Switch RRD graphs to /var/db which is not blown away every bootup.Scott Ullrich2006-03-241-2/+2
|
* MFC Seths most excellent RRD graphing itemsScott Ullrich2006-03-211-0/+3
|
* When we detect that there is less than 65 megs of ram, output the detected valueScott Ullrich2006-03-181-1/+1
|
* * 64 -> 65 MegabytesScott Ullrich2006-03-131-1/+1
| | | | * Sync code to -HEAD
* Move rc.linkup operations to check_reload_status to avoid race conditions.Scott Ullrich2006-03-131-2/+12
|
* Ticket #854 fixesScott Ullrich2006-03-111-5/+2
| | | | | * Compute the correct amount of ng interface for pptp and pppoe * Restart mpd processes in one function so that duplicates do not end up in mpd.conf file
* Reconfig DHCP after bootup to properly assign primary/backup dhcp rolesScott Ullrich2006-02-101-0/+5
|
* Add filtering bridge toggle switch just like m0n0wall has.Scott Ullrich2005-12-291-0/+2
| | | | Ticket #756
* Loop assign interfaces option until the user gets the correct configuraiton.Scott Ullrich2005-12-271-1/+1
| | | | Ticket #749
OpenPOWER on IntegriCloud