ipfw from within loader.conf
- Remove IPDIVERT kernel option
- Add notes about IPFIREWALL_DEFAULT_TO_ACCEPT and IPFIREWALL_FORWARD
This change syncs this man page with the -CURRENT version.
Approved by: re (bmah), keramida (mentor), trhodes (mentor)
feature is that we can now specify additional command line
parameters, which makes it possible to use applications, e.g.
mini_sendmail as a sendmail replacement.
Approved by: re (hrs)
- Remove SCHED_ULE from GENERIC to better avoid foot-shooting by
unsuspecting users.
- Add a comment in NOTES about experimental status of SCHED_ULE.
- Make warning about experimental status in sched_ule(4) a bit
stronger.
This is not an exact MFC since we don't have alpha in -CURRENT.
Approved by: re (kensmith)
- Make the PROBE_KEYBOARD compile-time option of pxeboot(8) better
resemble the -P option in boot2, i.e., if keyboard isn't present
then boot with both RB_SERIAL and RB_MULTIPLE set.
- Document BOOT_PXELDR_ALWAYS_SERIAL and BOOT_PXELDR_PROBE_KEYBOARD
options of pxeboot(8).
in HEAD. [1]
- Remove Digital DEPCA from the list of supported hardware; DEPCA
cards use shared memory for the buffers and descriptors but the
current ISA front-end of lnc(4) only knows about adapters that
use DMA instead (lnc(4) did support DEPCA in the past though).
Reviewed by: ru [1]
- Use full name of the Sun PGX64 cards and add the Sun part number
in order to simplify matters for people who are looking for a video
card supported by FreeBSD/sparc64.
- Add Sun PGX to the list of known working cards.
- s/UltraSparc/UltraSPARC/
- Add info about the requirement of OFW support.
- s/gigabit/Gigabit/
- Talk about supported chips rather than supported cards as the majority
of the hardware supported by gem(4) is on-board.
- "the .Nm driver"
- Sort the list of supported chips alphabetically.
- Sun GEM aren't used on-board though, so don't claim they'd be.
- Add a CAVEATS section informing that Sun GEM cards aren't supported
so far.
- Add the usual info about loading as module on startup to the SYNOPSIS.
Turn off by default "feature" that overwrites MAC address
on output frames.
Many people were confused with not working CARP, ng_bridge(4)
and other subsystems, because ng_ether(4) overwritten source
MAC address.
- Use our standard section 4 SYNOPSIS layout.
- Remove the references to the README. All information the references
refer to are actually more up to date in our manpages.
with HEAD. Key changes include:
- Support a limited set of punctuation in interface names ".-/+" by
converting them to '_' before looking up interface variables.
- Don't flush routes by default when an interface is removed.
- Don't generate unnecessicary noise on startup when interfaces are
renamed.
PR: conf/92433
Add two new scripts (mdconfig/mdconfig2) to replace old ramdisk{,-own}
scripts. These scripts handle vnode backed md(4) devices.
Two new variables have been introduced to be able to populate the md(4)
device once it has been mounted (mdconfig_*_files and mdconfig_*_cmd).
Use should be as easy as:
mdconfig_md0="-t malloc -s 10m"
mdconfig_md1="-t vnode -f /var/foo.img"
See rc.conf(5) for more information and description of the additional
variables.
src/etc/rc.d/Makefile: rev 1.71 -> 1.72
src/etc/rc.d/mdconfig: rev 1.3
src/etc/rc.d/mdconfig2: rev 1.3
src/share/man/man5/rc.conf.5: rev 1.296 -> 1.297
Approved by: cperciva (mentor)
Optionally pad outgoing frames to the minimum of 60 bytes (excl. FCS)
before tagging them. This can help to work around brain-damage in some
switches that fail to pad a frame after untagging it if its length drops
below the minimum. This option is blessed by IEEE Std 802.1Q (2003 Ed.),
paragraph C.4.4.3.b. It's controlled by sysctl net.link.vlan.soft_pad.
src/sys/net/if_vlan.c rev. 1.110
src/share/man/man4/vlan.4 rev. 1.31-1.32