Hi everyone I am new to iptables but have previous experience with ipchains. I wan't to set the TOS bits for some outgoing packets.
I used to do it like this: ipchains -A output -d 0.0.0.0/0 22 -t 0x01 0x10 I tried the following with iptables: iptables -A OUTPUT -p tcp -d 0.0.0.0/0 --destination-port 22 -j TOS \ --set-tos Minimize-Delay Which gives me the following output: iptables: Invalid argument This is quite frustrating for me. I tried replacing --set-tos Minimize-Delay to --set-tos 0x10 but it gives me the same output. Any ideas suggestions? TIA Julz.