summaryrefslogtreecommitdiffstats
path: root/etc/network.subr
Commit message (Collapse)AuthorAgeFilesLines
* Add some special hooks for sppp(4) interfaces. In addition to thejoerg1999-01-131-1/+15
| | | | | | | | | | | normal ifconfig stuff, one might need to pass down authentication parameters for them. This is closely tied to Hellmuth's impending rc patches for ISDN, but sppp can also be used separately (thus it doesn't go directly into the planned ISDN section of rc.conf). Reviewed by: hm
* Integrate the ISDN subsystem into the /etc/rc frameworkhm1999-01-131-1/+6
| | | | Reviewed by: Joerg Wunsch
* Allow rwhod to take flags.jkh1999-01-031-2/+2
| | | | | PR: 7705 Submitted by: Johan Karlsson <k@numeri.campus.luth.se>
* Direct std{err,out} to /dev/null when invoking sysctl(8) for settingjkoshy1998-11-271-3/+4
| | | | | | `nfs_access_cache_timeout'. Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
* Implement the nfs_access_cache variable, allowing us to set the timeout formsmith1998-11-151-1/+4
| | | | the NFS client's ACCESS cache.
* kldload ipfw, it's installed always and works on both kernel formatspeter1998-11-111-2/+2
|
* Here are some scripts and man pages for configuring HARP ATMphk1998-10-061-1/+17
| | | | | | | interfaces. Reviewed by: phk Submitted by: Mike Spengler <mks@networkcs.com>
* rc.conf variable $amd_map_program needs to be eval'ed.cracauer1998-09-161-2/+2
| | | | | PR: misc/7435 Submitted by: David Wolfskill <dhw@whistle.com>
* Turn off replies to ICMP echo requests for broadcast and multicastjkoshy1998-09-151-1/+6
| | | | | | | | | | | | | addresses by default. Add a knob "icmp_bmcastecho" to "rc.network" to allow this behaviour to be controlled from "rc.conf". Document the controlling sysctl variable "net.inet.icmp.bmcastecho" in sysctl(3). Reviewed by: dg, jkh Reminded on -hackers by: Steinar Haug <sthaug@nethelp.no>
* tcp_extensions now only applies to RFC1323phk1998-09-061-2/+1
|
* In /etc/rc.network, near line 242, setting up Kerberos,phk1998-08-141-3/+3
| | | | | | | | | | variable "stash_flag" is set. A few lines later, it is evaluated as "stash_flags" with a trailing "s", and then a bit later the singular version is unset. PR: 7609 Reviewed by: phk Submitted by: Walt Howard <howard@ee.utah.edu>
* Allow either an IP address or an interface to be specified innectar1998-07-081-5/+11
| | | | | | | | | the rc.conf variable ``natd_interface''. rc.network will determine whether it is an IP address or an interface name, and invoke natd with the -a or -n flag as appropriate. PR: 6947 Reviewed by: jkh@FreeBSD.ORG
* Cleanup natd startup test.steve1998-06-141-5/+4
| | | | | PR: 6946 Submitted by: Jacques Vidrine <n@nectar.com>
* cosmetic: clean up startup messages and rearrange some optionsjkh1998-05-191-18/+17
| | | | to go in a more proper order.
* Overlooked, that newer naming convention is xxx_program instead of xxx_prog.andreas1998-05-061-3/+3
| | | | | So changed it to ntpdate_program and xntpd_program. Backout last change, now we have again named_program, sorry.
* Add variables for the ntpdate and xntpd program, you might wantandreas1998-05-051-3/+3
| | | | to run the binaries from the new ntp v4 port.
* Jean-Simon Pendry's paper on amd refers to the use of "ypcat -k"phk1998-04-261-1/+4
| | | | | | | | | | | | | | | | | | | | | against the "master map" to get the list of mount point/amd map correspondences, and using that list as command-line arguments to start amd. When I tried to do this with the existing /etc/rc* scripts, I found that I couldn't do this by modifying only /etc/rc.conf: that file gets sourced very early by /etc/rc, well before any networking functionality is present, let alone NIS. Further, I wasn't able to figure out a way to use various levels & types of quoting to defer evaluation of the string to a point subsequent to NIS initialization. As a result, I resorted to hacking /etc/rc.network -- but I did it in a way that ought to be reasonably general, and avoid breakage for anyone else. PR: 6387 Reviewed by: phk Submitted by: David Wolfskill <dhw@whistle.com>
* Add natd support.brian1998-04-181-1/+9
| | | | | PR: 6339 Submitted by: cdillon@wolves.k12.mo.us
* Enable the SecureRPC bits in rc.conf, if the Administrator wants them.markm1998-04-121-1/+10
|
* Allow rarpd to be started from rc.confjkh1998-03-091-1/+5
| | | | | PR: 5457 Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
* Remove useless argument to ``. start_if.$ifn''brian1998-02-201-2/+2
| | | | Pointed out by: Tim Tsai <tim@futuresouth.com>
* Add 2 new rc.conf variables:guido1998-02-161-1/+11
| | | | | forward_sourceroute : controls setting of existing net.inet.ip.sourceroute accept_sourceroute : control setting of new net.inet.ip.accept_sourceroute
* Avoid using grep when determining ipfw's default policy -- it may notalex1998-02-141-2/+3
| | | | be available at this stage of the boot if /usr is NFS mounted.
* Don't assume that IP services are disabled just because firewall_enablealex1998-02-071-3/+6
| | | | | | is not set to YES in rc.conf. Noticed by: Mikael Karpberg <karpen@ocean.campus.luth.se>
* Add an additional `named_program' variable so that we can easily choosewollman1998-02-011-2/+2
| | | | between 4.9.6 and the port of 8.x.
* Compare return code from ipfw against 0 for success instead of == 1alex1998-01-101-4/+4
| | | | | | for error. Pointed out by: Matthew Thyer <thyerm@camtech.net.au>
* MF 22sobrien1997-12-011-8/+6
|
* Allow the system to be configured to pass "-n" to kerberos andsef1997-11-071-4/+13
| | | | | | | kadmind or not; also, only run kadmind on a non-slave server. Man page for rc.conf is also updated. Reviewed by: Mark Murray
* Fix some problems in the rules file loading and need for modload detection.danny1997-09-181-2/+2
| | | | Found by: "James E. Housley" <housley@pr-comm.com>
* Reviewed by: msmith, alexdanny1997-09-111-5/+32
| | | | Cosmetic changes to the loading of firewall rules and lkm.
* Merge from 2.2 (tcp extensions in phase 1)pst1997-07-061-6/+7
|
* Neaten up some things which were inconsistent, add a few more flagsjkh1997-05-191-3/+3
| | | | | to things which need them, general cleanup. Submitted by: Brian Somers <brian@awfulhak.org>
* Add arp_proxyall knob.jkh1997-05-131-1/+6
| | | | Submitted by: Christoph Kukulies <kuku@gilberto.physik.RWTH-Aachen.DE>
* Update the etc world from RELENG_2_2 which is now more up-to-datejkh1997-05-031-7/+3
| | | | | | (gotta get myself -current again, this is a drag). Also-fixes-problems-noted-by: Wolfgang Helbig & Joerg Wunsch
* Ack, learn to spell "extentions" the same way in the same file.jkh1997-05-011-6/+6
| | | | | | Also make the output a little less cryptic for sysctl settings. Suggested by: bde
* YAMF22jkh1997-05-011-2/+2
| | | | PR: 3456
* YAMF22jkh1997-05-011-2/+2
|
* Bring in rc file changes from -current.jkh1997-04-271-0/+207
OpenPOWER on IntegriCloud