[LARTC] How to delete DSCP setting using iptable command.

2007-09-25 Thread Raghuvendra Kumar
Hi, Can anybody tell me how to delete DSCP or TOS setting using iptable command. iptables --list OUTPUT --table mangle Chain OUTPUT (policy ACCEPT) target prot opt source destination DSCP tcp -- anywhere

Re: [LARTC] How to delete DSCP setting using iptable command.

2007-09-25 Thread Nikolay Kichukov
Hello, You can just add --line-numbers at the end of the command you use to see the results you posted and then use iptables -D tableName ruleNumber, i.e. iptables -D OUTPUT 5 HTH, -Nikolay Raghuvendra Kumar wrote: Hi, Can anybody tell me how to delete DSCP or TOS setting using iptable

Re: [LARTC] How to delete DSCP setting using iptable command.

2007-09-25 Thread Michal Soltys
Raghuvendra Kumar wrote: Hi, Can anybody tell me how to delete DSCP or TOS setting using iptable command. iptables --line-numbers -t mangle -vL OUTPUT to verify rule numbers, then just delete whatever you need with -D, i.e. iptables -t mangle -D OUTPUT 12