Man page - tc-vlan(8)
Packages contas this manual
- tc-basic(8)
- ip-l2tp(8)
- tc-hfsc(8)
- vdpa-mgmtdev(8)
- devlink(8)
- devlink-sb(8)
- tipc(8)
- rdma(8)
- devlink-lc(8)
- ip-address(8)
- tc-cgroup(8)
- tipc-socket(8)
- lnstat(8)
- tipc-peer(8)
- tc-vlan(8)
- tc-skbprio(8)
- ip-mptcp(8)
- dcb(8)
- tc-pie(8)
- ip-maddress(8)
- tc-prio(8)
- libnetlink(3)
- ip-neighbour(8)
- tc-route(8)
- dcb-rewr(8)
- tc-ematch(8)
- ip-route(8)
- routel(8)
- devlink-dev(8)
- ip-nexthop(8)
- rdma-resource(8)
- ss(8)
- tc-fw(8)
- ip-xfrm(8)
- tc-etf(8)
- tc-skbedit(8)
- tc-gate(8)
- ip-ioam(8)
- tc-connmark(8)
- tc-sample(8)
- ip-monitor(8)
- tc-flower(8)
- tc-pedit(8)
- ip-stats(8)
- tipc-node(8)
- rtacct(8)
- dcb-maxrate(8)
- tc-drr(8)
- tc-red(8)
- dcb-app(8)
- tipc-bearer(8)
- ip-sr(8)
- tc-fq_codel(8)
- tc-police(8)
- tc-netem(8)
- tc-bpf(8)
- dcb-ets(8)
- devlink-monitor(8)
- tc-codel(8)
- tc-choke(8)
- dcb-apptrust(8)
- tc-sfb(8)
- devlink-port(8)
- tc-flow(8)
- vdpa-dev(8)
- tc-tunnel_key(8)
- ip-rule(8)
- devlink-rate(8)
- tc-ets(8)
- tipc-media(8)
- tc-matchall(8)
- dcb-pfc(8)
- rdma-link(8)
- tc-skbmod(8)
- tc-ct(8)
- tc-ife(8)
- ctstat(8)
- ip-netns(8)
- devlink-trap(8)
- tc-hfsc(7)
- ip-token(8)
- ip-link(8)
- rdma-statistic(8)
- bridge(8)
- dcb-buffer(8)
- devlink-resource(8)
- tc-u32(8)
- tc-stab(8)
- vdpa(8)
- devlink-health(8)
- ip-addrlabel(8)
- ip-netconf(8)
- devlink-region(8)
- tc-simple(8)
- tc-bfifo(8)
- tc-ctinfo(8)
- ip-tcp_metrics(8)
- tc-gact(8)
- rdma-system(8)
- devlink-dpipe(8)
- tc-actions(8)
- ip-macsec(8)
- tc(8)
- genl(8)
- nstat(8)
- tc-sfq(8)
- dcb-dcbx(8)
- arpd(8)
- tc-htb(8)
- tc-mpls(8)
- tc-nat(8)
- ip-gue(8)
- rdma-monitor(8)
- rtstat(8)
- tc-mirred(8)
- tc-taprio(8)
- rdma-dev(8)
- tc-tbf(8)
- tc-pfifo_fast(8)
- ip-ntable(8)
- tc-csum(8)
- tc-mqprio(8)
- rtmon(8)
- tc-fq_pie(8)
- tc-fq(8)
- ip-vrf(8)
- ip-mroute(8)
- tc-pfifo(8)
- tc-cake(8)
- tc-cbs(8)
- ip(8)
- tipc-nametable(8)
- ip-tunnel(8)
- ip-fou(8)
- tipc-link(8)
apt-get install iproute2
Manual
| VLAN manipulation action in tc(8) | Linux | VLAN manipulation action in tc(8) |
NAME
vlan - vlan manipulation module
SYNOPSIS
tc ... action vlan { pop | pop_eth | PUSH | MODIFY | PUSH_ETH } [ CONTROL ]
PUSH := push [ protocol VLANPROTO ] [ priority VLANPRIO ] id VLANID
MODIFY := modify [ protocol VLANPROTO ] [ priority VLANPRIO ] id VLANID
PUSH_ETH := push_eth dst_mac LLADDR src_mac LLADDR
CONTROL := { reclassify | pipe | drop | continue | pass | goto chain CHAIN_INDEX }
DESCRIPTION
The vlan action allows one to perform 802.1Q en- or decapsulation on a packet, reflected by the operation modes POP, PUSH and MODIFY. The POP mode is simple, as no further information is required to just drop the outer-most VLAN encapsulation. The PUSH and MODIFY modes require at least a VLANID and allow one to optionally choose the VLANPROTO to use.
The vlan action can also be used to add or remove the base Ethernet header. The pop_eth mode, which takes no argument, is used to remove the base Ethernet header. All existing VLANs must have been previously dropped. The opposite operation, adding a base Ethernet header, is done with the push_eth mode. In that case, the packet must have no MAC header (stacking MAC headers is not permitted). This mode is mostly useful when a previous action has encapsulated the whole original frame behind a network header and one needs to prepend an Ethernet header before forwarding the resulting packet.
OPTIONS
- pop
- Decapsulation mode, no further arguments allowed.
- push
- Encapsulation mode. Requires at least id option.
- modify
- Replace mode. Existing 802.1Q tag is replaced. Requires at least id option.
- pop_eth
- Ethernet header decapsulation mode. Only works on a plain Ethernet header: VLANs, if any, must be removed first.
- push_eth
- Ethernet header encapsulation mode. The Ethertype is automatically set using the network header type. Chaining Ethernet headers is not allowed: the packet must have no MAC header when using this mode. Requires the dst_mac and src_mac options.
- id VLANID
- Specify the VLAN ID to encapsulate into. VLANID is an unsigned 16bit integer, the format is detected automatically (e.g. prefix with '0x' for hexadecimal interpretation, etc.).
- protocol VLANPROTO
- Choose the VLAN protocol to use. At the time of writing, the kernel accepts only 802.1Q or 802.1ad.
- priority VLANPRIO
- Choose the VLAN priority to use. Decimal number in range of 0-7.
- dst_mac LLADDR
- Choose the destination MAC address to use.
- src_mac LLADDR
- Choose the source MAC address to use.
- CONTROL
- How to continue after executing this action.
- reclassify
- Restarts classification by jumping back to the first filter attached to this action's parent.
- pipe
- Continue with the next action, this is the default.
- drop
- Packet will be dropped without running further actions.
- continue
- Continue classification with next filter in line.
- pass
- Return to calling qdisc for packet processing. This ends the classification process.
EXAMPLES
The following example encapsulates incoming ICMP packets on eth0 from 10.0.0.2 into VLAN ID 123:
#tc qdisc add dev eth0 handle ffff: ingress #tc filter add dev eth0 parent ffff: pref 11 protocol ip \ u32 match ip protocol 1 0xff flowid 1:1 \ match ip src 10.0.0.2 flowid 1:1 \ action vlan push id 123
Here is an example of the pop function: Incoming VLAN packets on eth0 are decapsulated and the classification process then restarted for the plain packet:
#tc qdisc add dev eth0 handle ffff: ingress #tc filter add dev $ETH parent ffff: pref 1 protocol 802.1Q \ u32 match u32 0 0 flowid 1:1 \ action vlan pop reclassify
For an example of the pop_eth and push_eth modes, see tc-mpls(8).
SEE ALSO
tc(8), tc-mpls(8)
| 12 Jan 2015 | iproute2 |