Guest User

Untitled

a guest
Nov 15th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $ tc filter add dev eno1 \
  2. ## Common Options to filters
  3. protocol all \ # filters are per (device, qdisc, protocol, prio)
  4. parent 1234: \ # handle of the parent qdisc
  5. prio 1 \ # sets the order of evaluation
  6. handle 0x1 \ # filter's handle
  7. ## Matching Part:
  8. fw \ # we use the fwmark matcher, if the mark matches the handle...
  9. ## Action part:
  10. classid 1234:1 # ... push it to class 1234:1
Add Comment
Please, Sign In to add comment