giovanni
7cda822e97
Add /etc/rtadvd.conf
15 years ago
todd
564c480e70
o stop reordering ifconfig arguments (e.g. after 'up ..')
o only stop processing if inet or inet6 lines are malformed
o everything not a specially handled bit is passed to ifconfig unmangled
noticed by several after the move from bridgename.bridge0 -> hostname.bridge0
prodded by deraadt@, tested by and feedback from several
man page bits 'look fine' jmc@
15 years ago
deraadt
be99f93d5d
use mv -f to avoid stopping during wrongly mounted root; sbeyer@reactor.de
15 years ago
deraadt
b886f3624f
Move ipsec key creation before isakmpd, and sshd to become the first
of the network daemons so that it can be used if another daemon stops
in its tracks.
ok claudio markus sthen
15 years ago
deraadt
315ece0432
Stop supporting bridgename.bridge* files, and move to hostname.bridge*
files. To cope with this change, read about the mv command.
ok claudio todd
15 years ago
claudio
2e03005398
The deny all and allow from any inet prefixlen 8 - 24 will block the default
route already so don't add an additional rule for that. Instead add a commented
allow rule. Idea from Mitja Muzenic (mitja at muzenic dot net)
15 years ago
ian
2181a00810
Add hw.sensors to dmesg request, 'go for it' deraadt@
15 years ago
ajacoutot
e5a3984045
Remove Speedo dir from mtree at we do not install these fonts anymore.
ok matthieu@
15 years ago
gilles
9e5dd57733
to resolve aliases, a rule must now provide the alias parameter with the
name of the map to use for resolution
15 years ago
deraadt
b37ead3361
Get rid of pflogd.pid because the privsep child cannot delete the pidfile;
use pkill(1) in /etc/newsyslog.conf instead
together with otto and suggestions from tedu
15 years ago
jakob
b7c98c4277
fix reverse zone for ::1 (PR#6243)
15 years ago
dtucker
fa0e1105eb
update moduli file; ok deraadt
15 years ago
dtucker
e2a343c9dd
fix syntax error in 'make update-moduli'; ok deraadt
15 years ago
nicm
769864cb37
amd_dir is no longer used by rc so no need for it in rc.conf.
ok deraadt
15 years ago
deraadt
88438c75a1
Be nice if we have bootblocks available, too
15 years ago
michele
08444bc82b
Add (again) support for divert sockets. They allow you to:
- queue packets from pf(4) to a userspace application
- reinject packets from the application into the kernel stack.
The divert socket can be bound to a special "divert port" and will
receive every packet diverted to that port by pf(4).
The pf syntax is pretty simple, e.g.:
pass on em0 inet proto tcp from any to any port 80 divert-packet port 1
A lot of discussion have happened since my last commit that resulted
in many changes and improvements.
I would *really* like to thank everyone who took part in the discussion
especially canacar@ who spotted out which are the limitations of this approach.
OpenBSD divert(4) is meant to be compatible with software running on
top of FreeBSD's divert sockets even though they are pretty different and will
become even more with time.
discusses with many, but mainly reyk@ canacar@ deraadt@ dlg@ claudio@ beck@
tested by reyk@ and myself
ok reyk@ claudio@ beck@
manpage help and ok by jmc@
15 years ago
matthieu
7c01f08f4b
Bring BSD.x11.dist back here. It's needed by the ports subsystem.
Update the BSD.x11.dist version to the one in xenocara.
15 years ago
miod
ef78f8ac94
regen
15 years ago
miod
57fa4d3247
Reach palm MAKEDEV bits.
15 years ago
matthieu
73ac7beea6
remove unused and outdated BSD.x11.dist file. ok miod@, krw@.
15 years ago
miod
7548892556
regen
15 years ago
miod
3a7615d997
Stricter patterns for numbered wsmouse and wskbd devices, so that
`wsmouse' and `wskbd' without suffixes match the wsmux rule.
Reported by Vadim Zhukov (persgray on gmail)
15 years ago
simon
deb468f678
change variable i to $i in an expression of ifstart() for consistency
with the rest of the file. no functional change.
feedback from sthen@, ok krw@
15 years ago
jmc
8926748cfe
sync the spamd example to that used in spamd(8); ok beck
15 years ago
sthen
be61e5ff1e
This sample ruleset does not use require-order to mix NAT/rdr
and filter rules, because we no longer have translation rules.
Pointed out by Mitja Muzenic, ok henning@
15 years ago
jmc
fe69db5037
example spamd rules should be "pass in";
15 years ago
deraadt
2ae693a38f
add framework for palm
15 years ago
marex
ffd9f4d6fd
Palm: initial commit of etc/etc.palm
OK deraadt@
15 years ago
todd
3b9317d2be
add back sample spamd(8) rules, converted appropriately; ok henning@
15 years ago
henning
53b0c693a8
todd reminded me we need to adjust this too
15 years ago
ajacoutot
e64f15e172
Add entry for ypldap.conf (may contain a password).
ok pyr@
15 years ago
deraadt
34a550742a
sync
15 years ago
deraadt
0bef1a616b
Add nodes for vscsi0; ok dlg
15 years ago
deraadt
5652b3965d
dlg wants iscsi in here; ok dlg
15 years ago
deraadt
2729881c68
change some defaults inside amd itself, so that the rc scripts no longer
have to pass those options. this makes amd much easier to restart by
hand (though it still remains a nasty daemon do that with)
ok millert
15 years ago
jsg
c2216f6e33
gpio for amd64.
ok deraadt@
15 years ago
okan
6a3614447c
advise to update /etc/rc.conf.local instead of /etc/rc.conf; from Remco
ok todd@
15 years ago
deraadt
c8c47060f4
typo in comment; frantisek
15 years ago
sthen
dcb69a2384
- specifically match carp+([0-9]):, not just carp*:. avoids spurious
attempts to "ifconfig carp down" noticed by david@.
- use non-descriptive variables names rather than $if/$junk to encourage
people reading the code to think what it's doing; many of the output lines
are not interface names.
ok david@
15 years ago
martynas
f4f95da364
fix ksh ftp wrapper so argvs aren't split before passing; making
urls with spaces work. ok sthen@
15 years ago
deraadt
831f2c8e7a
correct indent
15 years ago
jmc
c7e82c7269
zap the rather useless machdep.apmwarn entries (see apm(4));
ok deraadt
15 years ago
sthen
9360cc798d
Don't use grep/cut during shutdown, /usr might not be mounted.
Spotted by deraadt@. These were used to bring down carp ifaces
cleanly; replace with shell features.
ok deraadt@, henning@. "Much mo' better" blambert@.
15 years ago
miod
cbc0502692
Add bsd.mp to MDEXT
15 years ago
ratchov
093db25bde
sync
15 years ago
ratchov
0d1cd020b9
add missing /dev/{rmidi,sequencer,music} bits in MAKEDEV for
armish, landisk and zaurus. Also fix corresponding .Xr in MAKEDEV.8
ok miod@, todd@
15 years ago
jdixon
be9938a1c6
Delay creation of tun(4) interfaces until the underlying interface and
routes are available. This fixes usage for some OpenVPN users that start
it from hostname.tun*.
Tested by Johan Huldtgren. ok sthen@, johan@.
15 years ago
deraadt
7d089ce5ea
extra spaces found during inspection of other goo
15 years ago
robert
f539fed3d9
Make syslogd create a socket in /var/www/dev when httpd is enabled in order
to make logging to syslog work with php for example.
ok deraadt@, henning@
15 years ago
deraadt
2130d941b8
the correct *.ipk file has ${OSrev} in it
15 years ago