An open API service indexing awesome lists of open source software.

https://github.com/egormanga/xtables-addons

Additional modules for Xtables/iptables (with `xt_XTEE` target added)
https://github.com/egormanga/xtables-addons

xtables xtables-addons

Last synced: about 1 month ago
JSON representation

Additional modules for Xtables/iptables (with `xt_XTEE` target added)

Awesome Lists containing this project

README

          

# xtables-addons with `xt_XTEE` target

Replicates the legacy `ipt_ROUTE` target.

## Usage example

Forward traffic from an untagged client (based on MAC-address) into a bridge as if the packets were appropriately VLAN-tagged:
```
*mangle

-A PREROUTING -i eth0 -m mac --mac-source AA:BB:CC:DD:EE:FF -j TTL --ttl-inc 1
-A PREROUTING -i eth0 -m mac --mac-source AA:BB:CC:DD:EE:FF -j XTEE --iif br0
```