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)
- Host: GitHub
- URL: https://github.com/egormanga/xtables-addons
- Owner: egormanga
- License: gpl-2.0
- Created: 2025-02-17T10:39:43.000Z (over 1 year ago)
- Default Branch: feat/xtee
- Last Pushed: 2025-02-17T10:46:56.000Z (over 1 year ago)
- Last Synced: 2026-06-03T14:30:33.617Z (about 1 month ago)
- Topics: xtables, xtables-addons
- Language: C
- Homepage:
- Size: 1.44 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```