blob: 92a5896f05d9bd689aab1e3a95ef6f9e896fe982 [file] [log] [blame]
Bart De Schuymeraac31142002-08-11 11:57:52 +00001.TH EBTABLES 8 "11 August 2002"
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00002.\"
3.\" Man page written by Bart De Schuymer <bart.de.schuymer@pandora.be>
4.\" It is based on the iptables man page.
5.\"
6.\" Iptables page by Herve Eychenne March 2000.
7.\"
8.\" This program is free software; you can redistribute it and/or modify
9.\" it under the terms of the GNU General Public License as published by
10.\" the Free Software Foundation; either version 2 of the License, or
11.\" (at your option) any later version.
12.\"
13.\" This program is distributed in the hope that it will be useful,
14.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
15.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16.\" GNU General Public License for more details.
17.\"
18.\" You should have received a copy of the GNU General Public License
19.\" along with this program; if not, write to the Free Software
20.\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21.\"
22.\"
23.SH NAME
Bart De Schuymer63e2c702002-08-01 15:30:15 +000024ebtables (v.2.0) \- Ethernet bridge frame table administration
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000025.SH SYNOPSIS
Bart De Schuymer29749c62002-06-25 21:27:57 +000026.BR "ebtables -[ADI] " "chain rule-specification " [ options ]
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000027.br
28.BR "ebtables -P " "chain target"
29.br
30.BR "ebtables -[FLZ] [" "chain" "]"
31.br
Bart De Schuymer29749c62002-06-25 21:27:57 +000032.BR "ebtables -[NX] " chain
33.br
34.BR "ebtables -E " "old-chain-name new-chain-name"
35.br
Bart De Schuymera02773a2002-07-15 19:42:11 +000036.BR "ebtables --init-table"
37.br
Bart De Schuymer234bce92002-07-14 21:25:08 +000038.BR "ebtables --atomic-init " file
39.br
40.BR "ebtables --atomic-save " file
41.br
42.BR "ebtables --atomic-commit " file
43.br
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000044.SH DESCRIPTION
45.B ebtables
46is used to set up, maintain, and inspect the tables of Ethernet frame
47rules in the Linux kernel. It works analogous as iptables, but is less
48complicated. This man page is written with the man page of iptables
49next to it, so don't be surprised to see copied sentences and structure.
50
51There are three tables with built-in chains. Each chain is a list
52of rules which can match frames: each rule specifies what to do with a
53frame which matches. This is called a 'target'. The tables are used to
54divide functionality into different sets of chains.
55
56.SS TARGETS
57A firewall rule specifies criteria for a frame, and a target. If the
58frame does not match, the next rule in the chain is the examined one; if
59it does match, then the next thing to do is specified by the target.
60This target can be one of these values:
61.IR ACCEPT ,
62.IR DROP ,
63.IR CONTINUE ,
Bart De Schuymer29749c62002-06-25 21:27:57 +000064.IR RETURN ,
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000065an extention.
66.PP
67.I ACCEPT
68means to let the frame through.
69.I DROP
70means the frame has to be dropped.
71.I CONTINUE
72means the next rule has to be checked. This can be handy to know how many
Bart De Schuymer29749c62002-06-25 21:27:57 +000073frames pass a certain point in the chain or to log those frames.
74.I RETURN
75means stop traversing this chain and resume at the next rule in the
76previous (calling) chain.
77For the
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000078other targets see the
79.B "TARGET EXTENSIONS"
80section.
81.SS TABLES
82There are three tables.
83.TP
84.B "-t, --table"
85This option specifies the frame matching table which the command should
Bart De Schuymer29749c62002-06-25 21:27:57 +000086operate on. If specified it should be the first option. The tables are:
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000087.BR filter ,
88this is the default table and contains three chains:
89.B INPUT
90(for frames destined for the bridge itself),
91.B OUTPUT
92(for locally-generated frames) and
93.B FORWARD
94(for frames being bridged).
95.BR nat ,
96this table is used to change the mac addresses and contains three chains:
97.B PREROUTING
98(for altering frames as soon as they come in),
99.B OUTPUT
100(for altering locally generated frames before they are bridged) and
101.B POSTROUTING
102(for altering frames as they are about to go out). A small note on the naming
103of chains POSTROUTING and PREROUTING: it would be more accurate to call them
104PREFORWARDING and POSTFORWARDING, but for all those who come from the
105.BR iptables " world to " ebtables
106it is easier to have the same names.
107.BR broute ,
108this table is used to make a brouter, it has one chain:
109.BR BROUTING .
110The targets
111.BR DROP " and " ACCEPT
112have special meaning in this table.
113.B DROP
114actually means the frame has to be routed, while
115.B ACCEPT
116means the frame has to be bridged. The
117.B BROUTING
118chain is traversed very early. It is only traversed by frames entering on
119a bridge enslaved nic that is in forwarding state. Normally those frames
120would be bridged, but you can decide otherwise here. The
121.B redirect
122target is very handy here.
123.SH OPTIONS
124The options can be divided into several different groups.
125.SS COMMANDS
126These options specify the specific actions to perform; only one of them
127can be specified on the command line (the
128.B -Z
129command is an exception). All these options only apply to the selected
130(or default) table.
131.TP
132.B "-A, --append"
133Append a rule to the end of the selected chain.
134.TP
135.B "-D, --delete"
Bart De Schuymerabc84172002-11-06 21:02:33 +0000136Delete the specified rule from the selected chain. There are two ways to
137use this command. The first is by specifying an interval of rule numbers
138to delete, syntax: start_nr[:end_nr]. The second usage is by specifying
139the complete rule as it would have been specified when it was added.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000140.TP
141.B "-I, --insert"
142Insert the specified rule into the selected chain at the specified rule number (1 meaning
143the head of the chain).
144.TP
145.B "-L, --list"
146List all rules in the selected chain. If no chain is selected, all chains
Bart De Schuymeraac31142002-08-11 11:57:52 +0000147are listed.
Bart De Schuymer234bce92002-07-14 21:25:08 +0000148.br
Bart De Schuymeraac31142002-08-11 11:57:52 +0000149The following three options change the output:
Bart De Schuymer234bce92002-07-14 21:25:08 +0000150.br
151.B "--Ln"
152.br
153Puts rule numbers in front of every rule.
154.br
155.B "--Lc"
156.br
Bart De Schuymeree83c672002-10-17 21:59:43 +0000157Shows the counters at the end of every rule, there is a frame counter
158(pcnt) and a byte counter (bcnt).
Bart De Schuymer234bce92002-07-14 21:25:08 +0000159.br
160.B "--Lx"
161.br
162The output is directly usable as executable commands in a script, to be
163run f.e. at bootup. This option is incompatible with the previous two
164options. When no chain name was specified for the
165.B "-L"
166command, all necessary commands for making the user defined chains and
167renaming the standard chains will be made.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000168.TP
169.B "-F, --flush"
170Flush the selected chain. If no chain is selected, every chain will be
171flushed. This does not change the policy of the chain.
172.TP
Bart De Schuymera02773a2002-07-15 19:42:11 +0000173.B "--init-table"
174Replace the current table data by the initial table data.
175.TP
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000176.B "-Z, --zero"
177Put the counters of the selected chain on zero. If no chain is selected, all the counters
178are put on zero. This can be used in conjunction with the -L command (see above).
179This will cause the rule counters to be printed on the screen before they are put on zero.
180.TP
181.B "-P, --policy"
182Set the policy for the chain to the given target. The policy is either
183.B ACCEPT
184, either
185.BR DROP .
Bart De Schuymer29749c62002-06-25 21:27:57 +0000186.TP
187.B "-N, --new-chain"
Bart De Schuymer63e2c702002-08-01 15:30:15 +0000188Create a new user-defined chain by the given name. The number of
189user-defined chains is unlimited. A chain name has max length of 31.
Bart De Schuymer29749c62002-06-25 21:27:57 +0000190.TP
191.B "-X, --delete-chain"
192Delete the specified user-defined chain. There must be no references to the
193chain,
194.B ebtables
195will complain if there are.
196.TP
197.B "-E, --rename-chain"
198Rename the specified chain to the new name. This has no effect on the
199structure of the table. It is also allowed to rename a base chain, f.e.
200if you like PREBRIDGING more than PREROUTING. Be sure to talk about the
201standard chain names when you would ask a question on a mailing list.
Bart De Schuymer234bce92002-07-14 21:25:08 +0000202.TP
203.B "--atomic-init"
Bart De Schuymera02773a2002-07-15 19:42:11 +0000204Copy the kernel's initial data of the table to the specified
Bart De Schuymer234bce92002-07-14 21:25:08 +0000205file. This can be used as the first action, after which rules are added
206to the file.
207.TP
208.B "--atomic-save"
Bart De Schuymera02773a2002-07-15 19:42:11 +0000209Copy the kernel's current data of the table to the specified
Bart De Schuymer234bce92002-07-14 21:25:08 +0000210file. This can be used as the first action, after which rules are added
211to the file.
212.TP
213.B "--atomic-commit"
214Replace the kernel table data with the data contained in the specified
215file. This is a useful command that allows you to put all your rules of a
216certain table into the kernel at once, saving the kernel a lot of precious
217time. The file which contains the table data is constructed by using
218either the
219.B "--atomic-init"
220or the
221.B "--atomic-save"
222command to get a starting file. After that, using the
223.B "--atomic"
224option when constructing rules allows you to extend the file and build up
225the complete wanted table.
Bart De Schuymer29749c62002-06-25 21:27:57 +0000226.SS
227PARAMETERS
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000228The following parameters make up a rule specification (as used in the add
229and delete commands). A "!" argument before the specification inverts the
230test for that specification. Apart from these standard parameters, there are others, see
231.BR "MATCH EXTENSIONS" .
232.TP
233.BR "-p, --protocol " "[!] \fIprotocol\fP"
234The protocol that was responsible for creating the frame. This can be a
235hexadecimal number, above
236.IR 0x0600 ,
237a name (e.g.
238.I ARP
239) or
240.BR LENGTH .
241The protocol field of the Ethernet frame can be used to denote the
242length of the header (802.2/802.3 networks). When the value of that field is
243below (or equals)
244.IR 0x0600 ,
245the value equals the size of the header and shouldn't be used as a
246protocol number. Instead, all frames where the protocol field is used as
247the length field are assumed to be of the same 'protocol'. The protocol
248name used in
249.B ebtables
250for these frames is
251.BR LENGTH .
252.br
253The file
254.B /etc/ethertypes
255can be used to show readable
256characters instead of hexadecimal numbers for the protocols. For example,
257.I 0x0800
258will be represented by
259.IR IPV4 .
260The use of this file is not case sensitive.
261See that file for more information. The flag
262.B --proto
263is an alias for this option.
264.TP
265.BR "-i, --in-interface " "[!] \fIname\fP"
266The interface via which a frame is received (for the
267.BR INPUT ,
268.BR FORWARD ,
269.BR PREROUTING " and " BROUTING
270chains). The flag
271.B --in-if
272is an alias for this option.
273.TP
274.BR "--logical-in " "[!] \fIname\fP"
275The (logical) bridge interface via which a frame is received (for the
276.BR INPUT ,
277.BR FORWARD ,
278.BR PREROUTING " and " BROUTING
279chains).
280.TP
281.BR "-o, --out-interface " "[!] \fIname\fP"
282The interface via which a frame is going to be sent (for the
283.BR OUTPUT ,
284.B FORWARD
285and
286.B POSTROUTING
287chains). The flag
288.B --out-if
289is an alias for this option.
290.TP
291.BR "--logical-out " "[!] \fIname\fP"
292The (logical) bridge interface via which a frame is going to be sent (for
293the
294.BR OUTPUT ,
295.B FORWARD
296and
297.B POSTROUTING
298chains).
299.TP
300.BR "-s, --source " "[!] \fIaddress\fP[/\fImask\fP]"
301The source mac address. Both mask and address are written as 6 hexadecimal
302numbers seperated by colons. Alternatively one can specify Unicast,
303Multicast or Broadcast.
304.br
305Unicast=00:00:00:00:00:00/01:00:00:00:00:00,
306Multicast=01:00:00:00:00:00/01:00:00:00:00:00 and
307Broadcast=ff:ff:ff:ff:ff:ff/ff:ff:ff:ff:ff:ff. Note that a broadcast
308address will also match the multicast specification. The flag
309.B --src
310is an alias for this option.
311.TP
312.BR "-d, --destination " "[!] \fIaddress\fP[/\fImask\fP]"
313The destination mac address. See -s (above) for more details. The flag
314.B --dst
315is an alias for this option.
316
317.SS OTHER OPTIONS
318.TP
319.B "-V, --version"
320Show the version of the userprogram.
321.TP
322.B "-h, --help"
323Give a brief description of the command syntax. Here you can also specify
324names of extensions and
325.B ebtables
326will try to write help about those extensions. E.g. ebtables -h snat log ip arp.
327.TP
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000328.BR "-j, --jump " "\fItarget\fP"
329The target of the rule. This is one of the following values:
330.BR ACCEPT ,
331.BR DROP ,
332.BR CONTINUE ,
Bart De Schuymer63e2c702002-08-01 15:30:15 +0000333.BR RETURN ,
334a target extension (see
335.BR "TARGET EXTENSIONS" ")"
336or a user defined chain name.
Bart De Schuymer86fe8602002-06-15 08:16:41 +0000337.TP
Bart De Schuymer2ac6b742002-07-20 16:14:38 +0000338.B --atomic file
Bart De Schuymer234bce92002-07-14 21:25:08 +0000339Let the command operate on the specified file. The data of the table to
340operate on will be extracted from the file and the result of the operation
341will be saved back into the file. If specified, this option should come
342before the command specification.
343.TP
Bart De Schuymer2ac6b742002-07-20 16:14:38 +0000344.B -M, --modprobe program
Bart De Schuymer234bce92002-07-14 21:25:08 +0000345When talking to the kernel, use this program to try to automatically load
346missing kernel modules.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000347.SH MATCH EXTENSIONS
348.B ebtables
349extensions are precompiled into the userspace tool. So there is no need
350to explicitly load them with a -m option like in iptables. However, these
351extensions deal with functionality supported by supplemental kernel modules.
352.SS ip
353Specify ip specific fields. These will only work if the protocol equals
354.BR IPv4 .
355.TP
356.BR "--ip-source " "[!] \fIaddress\fP[/\fImask\fP]"
357The source ip address.
358The flag
359.B --ip-src
360is an alias for this option.
361.TP
362.BR "--ip-destination " "[!] \fIaddress\fP[/\fImask\fP]"
363The destination ip address.
364The flag
365.B --ip-dst
366is an alias for this option.
367.TP
368.BR "--ip-tos " "[!] \fItos\fP"
369The ip type of service, in hexadecimal numbers.
370.BR IPv4 .
371.TP
372.BR "--ip-protocol " "[!] \fIprotocol\fP"
373The ip protocol.
374The flag
375.B --ip-proto
376is an alias for this option.
Bart De Schuymer4883ba52002-09-19 21:10:45 +0000377.TP
378.BR "--ip-source-port " "[!] \fIport\fP[:\fIport\fP]"
379The source port or port range for the ip protocols 6 (TCP) and 17
380(UDP). If the first port is omitted, "0" is assumed; if the last
381is omitted, "65535" is assumed. The flag
382.B --ip-sport
383is an alias for this option.
384.TP
385.BR "--ip-destination-port " "[!] \fIport\fP[:\fIport\fP]"
386The destination port or port range for ip protocols 6 (TCP) and
38717 (UDP). The flag
388.B --ip-dport
389is an alias for this option.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000390.SS arp
391Specify arp specific fields. These will only work if the protocol equals
392.BR ARP " or " RARP .
393.TP
394.BR "--arp-opcode " "[!] \fIopcode\fP"
Bart De Schuymer9553d9c2002-07-23 21:13:05 +0000395The (r)arp opcode (decimal or a string, for more details see
396.BR "ebtables -h arp" ).
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000397.TP
398.BR "--arp-htype " "[!] \fIhardware type\fP"
399The hardware type, this can be a decimal or the string "Ethernet". This
400is normally Ethernet (value 1).
401.TP
402.BR "--arp-ptype " "[!] \fIprotocol type\fP"
403The protocol type for which the (r)arp is used (hexadecimal or the string "IPv4").
404This is normally IPv4 (0x0800).
405.TP
406.BR "--arp-ip-src " "[!] \fIaddress\fP[/\fImask\fP]"
407The ARP IP source address specification.
408.TP
409.BR "--arp-ip-dst " "[!] \fIaddress\fP[/\fImask\fP]"
410The ARP IP destination address specification.
411.SS vlan
fnm3f794d5a2002-06-14 17:28:13 +0000412Specify 802.1Q Tag Control Information fields. These will only work if the protocol equals
fnm3ed7e9012002-06-25 16:43:23 +0000413.BR 802_1Q.
414Also see extension help by
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000415.BR "ebtables -h vlan" .
416.TP
417.BR "--vlan-id " "[!] \fIid\fP"
fnm3ed7e9012002-06-25 16:43:23 +0000418The VLAN identifier field, VID (decimal number from 0 to 4094).
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000419.TP
420.BR "--vlan-prio " "[!] \fIprio\fP"
fnm3ed7e9012002-06-25 16:43:23 +0000421The user_priority field, this can be a decimal number from 0 to 7.
422Required VID to be 0 (null VID) or not specified vlan-id parameter (in this case VID deliberately be set to 0).
fnm3f794d5a2002-06-14 17:28:13 +0000423.TP
fnm3ed7e9012002-06-25 16:43:23 +0000424.BR "--vlan-encap " "[!] \fItype\fP"
Bart De Schuymer9553d9c2002-07-23 21:13:05 +0000425The encapsulated Ethernet frame type/length, this can be a hexadecimal
426number from 0x0000 to 0xFFFF.
fnm3ed7e9012002-06-25 16:43:23 +0000427Usually it's 0x0800 (IPv4). See also
428.B /etc/ethertypes
429file.
Bart De Schuymer2ac6b742002-07-20 16:14:38 +0000430.SS mark_m
431.TP
Bart De Schuymer8a8ca612002-07-21 15:18:07 +0000432.BR "--mark " "[!] [\fIvalue\fP][/\fImask\fP]"
433Matches frames with the given unsigned mark value. If a mark value and
434mask is specified, the logical AND of the mark value of the frame and
435the user specified mask is taken before comparing with the user specified
436mark value. If only a mask is specified (start with '/') the logical AND
437of the mark value of the frame and the user specified mark is taken and
438the result is compared with zero.
Bart De Schuymer2ac6b742002-07-20 16:14:38 +0000439
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000440.SH WATCHER EXTENSION(S)
Bart De Schuymer9553d9c2002-07-23 21:13:05 +0000441Watchers are things that only look at frames passing by. These watchers only
442see the frame if the frame passes all the matches of the rule.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000443.SS log
444The fact that the log module is a watcher lets us log stuff while giving a target
445by choice. Note that the log module therefore is not a target.
446.TP
447.B "--log"
448.br
449Use this if you won't specify any other log options, so if you want to use the default
450settings: log-prefix="", no arp logging, no ip logging, log-level=info.
451.TP
452.B --log-level "\fIlevel\fP"
453.br
454defines the logging level. For the possible values: ebtables -h log.
455The default level is
456.IR info .
457.TP
458.BR --log-prefix " \fItext\fP"
459.br
460defines the prefix to be printed before the logging information.
461.TP
462.B --log-ip
463.br
464will log the ip information when a frame made by the ip protocol matches
465the rule. The default is no ip information logging.
466.TP
467.B --log-arp
468.br
469will log the (r)arp information when a frame made by the (r)arp protocols
470matches the rule. The default is no (r)arp information logging.
471.SS TARGET EXTENSIONS
472.TP
473.B snat
474The
475.B snat
476target can only be used in the
477.BR POSTROUTING " chain of the " nat " table."
478It specifies that the source mac address has to be changed.
479.br
480.BR "--to-source " "\fIaddress\fP"
481.br
482The flag
483.B --to-src
484is an alias for this option.
485.br
486.BR "--snat-target " "\fItarget\fP"
487.br
488Specifies the standard target. After doing the snat, the rule still has
489to give a standard target so
490.B ebtables
491knows what to do.
492The default target is ACCEPT. Making it CONTINUE could let you use
493multiple target extensions on the same frame. Making it DROP doesn't
Bart De Schuymer29749c62002-06-25 21:27:57 +0000494make sense, but you could do that too. RETURN is also allowed. Note
Bart De Schuymer4c4447d2002-07-25 14:55:14 +0000495that using RETURN in a base chain is not allowed.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000496.TP
497.B dnat
498The
499.B dnat
500target can only be used in the
501.BR BROUTING " chain of the " broute " table and the "
502.BR PREROUTING " and " OUTPUT " chains of the " nat " table."
503It specifies that the destination mac address has to be changed.
504.br
505.BR "--to-destination " "\fIaddress\fP"
506.br
507The flag
508.B --to-dst
509is an alias for this option.
510.br
511.BR "--dnat-target " "\fItarget\fP"
512.br
513Specifies the standard target. After doing the dnat, the rule still has to
514give a standard target so
515.B ebtables
516knows what to do.
517The default target is ACCEPT. Making it CONTINUE could let you use
518multiple target extensions on the same frame. Making it DROP only makes
519sense in the BROUTING chain but using the redirect target is more logical
Bart De Schuymer29749c62002-06-25 21:27:57 +0000520there. RETURN is also allowed. Note
Bart De Schuymer4c4447d2002-07-25 14:55:14 +0000521that using RETURN in a base chain is not allowed.
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000522.TP
523.B redirect
524The
525.B redirect
526target will change the MAC target address to that of the bridge device the
527frame arrived on. This target can only be used in the
528.BR BROUTING " chain of the " broute " table and the "
529.BR PREROUTING " chain of the " nat " table."
530.br
531.BR "--redirect-target " "\fItarget\fP"
532.br
533Specifies the standard target. After doing the MAC redirect, the rule
534still has to give a standard target so
535.B ebtables
536knows what to do.
537The default target is ACCEPT. Making it CONTINUE could let you use
538multiple target extensions on the same frame. Making it DROP in the
Bart De Schuymer29749c62002-06-25 21:27:57 +0000539BROUTING chain will let the frames be routed. RETURN is also allowed. Note
Bart De Schuymer4c4447d2002-07-25 14:55:14 +0000540that using RETURN in a base chain is not allowed.
Bart De Schuymer2ac6b742002-07-20 16:14:38 +0000541.TP
542.B mark
543The mark target can be used in every chain of every table. It is possible
544to use the marking of a frame/packet in both ebtables and iptables,
545if the br-nf code is compiled into the kernel. Both put the marking at the
546same place. So, you can consider this fact as a feature, or as something to
547watch out for.
548.br
549.BR "--mark-target " "\fItarget\fP"
550.br
551Specifies the standard target. After marking the frame, the rule
552still has to give a standard target so
553.B ebtables
554knows what to do.
555The default target is ACCEPT. Making it CONTINUE can let you do other
556things with the frame in other rules of the chain.
557.br
558.BR "--set-mark " "\fIvalue\fP"
559.br
560Mark the frame with the specified unsigned value.
561.br
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000562.SH FILES
563.I /etc/ethertypes
564.SH BUGS
565This won't work on an architecture with a user32/kernel64 situation like the Sparc64.
566.SH AUTHOR
567.IR "" "Bart De Schuymer <" bart.de.schuymer@pandora.be >
568.SH SEE ALSO
569.BR iptables "(8), " brctl (8)