aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/bridge
Commit message (Collapse)AuthorAgeFilesLines
* Move rc startup scripts from etc/ to sbin/init/Brad Davis2018-07-281-94/+0
| | | | | | | | | | | This keeps most startup scripts as CONFS per discussion on src-committers from back during BSDCan. Approved by: will (mentor) Differential Revision: https://reviews.freebsd.org/D16466 Notes: svn path=/head/; revision=336845
* - Add descriptions to most of the rc scripts. Those are mostly taken from theirLars Engels2016-04-231-0/+1
| | | | | | | | | | | daemon's manpage and probably improved. - Consistently use "filesystem" not "file system". Approved by: bapt, brueffer Differential Revision: D452 Notes: svn path=/head/; revision=298514
* Renove faith(4) and faithd(8) from base. It looks like industryAlexander V. Chernikov2014-11-091-1/+1
| | | | | | | | | | | | have chosen different (and more traditional) stateless/statuful NAT64 as translation mechanism. Last non-trivial commits to both faith(4) and faithd(8) happened more than 12 years ago, so I assume it is time to drop RFC3142 in FreeBSD. No objections from: net@ Notes: svn path=/head/; revision=274331
* Whitespace nitKevin Lo2012-07-131-2/+2
| | | | Notes: svn path=/head/; revision=238416
* Use REQUIRE: line to reorder rc.d/bridge instead of BEFORE: line.Hiroki Sato2011-09-201-1/+0
| | | | | | | | Pointed out by: dougb Approved by: re (bz) Notes: svn path=/head/; revision=225684
* Fix the script order to run rc.d/bridge after the initial networkHiroki Sato2011-09-191-1/+2
| | | | | | | | | interface configuration and before running network daemons. Approved by: re (kib) Notes: svn path=/head/; revision=225669
* Remove trailing white space. No functional changes.Doug Barton2010-05-141-1/+1
| | | | Notes: svn path=/head/; revision=208060
* As previously discussed, add the svn:executable property to all scriptsDoug Barton2008-07-161-0/+0
| | | | Notes: svn path=/head/; revision=180563
* Eliminate global symbols starting with an underscore from rc.dYaroslav Tykhiy2006-12-301-8/+8
| | | | | | | | | | | | scripts, except for mdconfig* and jail. Such symbols are reserved for the rc.subr internals. Most scripts can be fixed by just declaring _foo symbols as local: few scripts actually need them to be global. Discussed with: dougb in freebsd-rc Notes: svn path=/head/; revision=165664
* Add rc.d/bridge which is invoked when a new interface arrives and canAndrew Thompson2006-06-011-0/+93
automaticly add it to an Ethernet bridge. This is intended for applications such as qemu, vmware, openvpn, ... which open tap interfaces and need them bridged with the hosts network adapter, the user can set up a glob for interfaces to be automatically added (eg tap*). Notes: svn path=/head/; revision=159138