1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# Common options to all Debian GNU/kFreeBSD kernels
options LINPROCFS
options LINSYSFS
options FDESCFS
options TMPFS
options QUOTA
options KTRACE
# See #706736
options INCLUDE_CONFIG_FILE
# Floppy drives need not be built-in because our installer doesn't
# include a "floppy" flavour (and probably never will).
nodevice fdc
# Network options
device carp
device pf
device pfsync
device pflog
# pty(4) was removed from GENERIC in 10-CURRENT (see rev 233271),
# but unfortunetely glibc doesn't support pts(4) yet (see #667448).
device pty
# Alternate queueing
options ALTQ
options ALTQ_CBQ # Class Bases Queuing (CBQ)
options ALTQ_RED # Random Early Detection (RED)
options ALTQ_RIO # RED In/Out
options ALTQ_HFSC # Hierarchical Packet Scheduler (HFSC)
options ALTQ_PRIQ # Priority Queuing (PRIQ)
# In order to enable IPSEC you MUST also add device crypto to
# your kernel configuration
device crypto # core crypto support
options IPSEC #IP security (requires device crypto)
#options IPSEC_DEBUG #debug for IP security
#
# Set IPSEC_NAT_T to enable NAT-Traversal support. This enables
# optional UDP encapsulation of ESP packets.
#
options IPSEC_NAT_T #NAT-T support, UDP encap of ESP
|