diff options
author | Archie Cobbs <archie@FreeBSD.org> | 2000-09-01 01:37:13 +0000 |
---|---|---|
committer | Archie Cobbs <archie@FreeBSD.org> | 2000-09-01 01:37:13 +0000 |
commit | ed2dbd316aca41338dbad82208cd24cb96b33faa (patch) | |
tree | 910968afe6642bc434a029ca68ea2ab6251cc34b /sys/conf | |
parent | 405177510cd034e7197559ea22afb5f16eca39f4 (diff) | |
download | src-ed2dbd316aca41338dbad82208cd24cb96b33faa.tar.gz src-ed2dbd316aca41338dbad82208cd24cb96b33faa.zip |
New netgraph node type for Ethernet bridging.
No ipfw support yet.
Notes
Notes:
svn path=/head/; revision=65310
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files | 1 | ||||
-rw-r--r-- | sys/conf/options | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sys/conf/files b/sys/conf/files index 33817e71d49b..e9c55f2dbee7 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -710,6 +710,7 @@ netgraph/ng_async.c optional netgraph_async netgraph/ng_base.c optional netgraph netgraph/ng_bpf.c optional netgraph_bpf net/bpf_filter.c optional netgraph_bpf +netgraph/ng_bridge.c optional netgraph_bridge netgraph/ng_cisco.c optional netgraph_cisco netgraph/ng_echo.c optional netgraph_echo netgraph/ng_ether.c optional netgraph_ether diff --git a/sys/conf/options b/sys/conf/options index d4ce246ca0c2..508707b0a1f6 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -269,10 +269,11 @@ XBONEHACK # Netgraph(4). Use option NETGRAPH to enable the base netgraph code. # Each netgraph node type can be either be compiled into the kernel # or loaded dynamically. To get the former, include the corresponding -# option below. Each type has its own man page, e.g. ng_async(8). +# option below. Each type has its own man page, e.g. ng_async(4). NETGRAPH NETGRAPH_ASYNC opt_netgraph.h NETGRAPH_BPF opt_netgraph.h +NETGRAPH_BRIDGE opt_netgraph.h NETGRAPH_CISCO opt_netgraph.h NETGRAPH_ECHO opt_netgraph.h NETGRAPH_ETHER opt_netgraph.h |