why not using MARKing feature of iptables and then route the marked packet via iproute2 like... #iptables -A PREROUTING -i eth0 -t mangle -p tcp --dport 995 -j MARK --set-mark 4 this is iproute2 part ip rule add fwmark 4 table another.out ip route add default via $GATEWAY dev eth0 table another.out ip route flush cache regards On Wed, 5 Jan 2005 09:23:51 -0200, Júlio César de Magalhães <jcesar@xxxxxxxxxxx> wrote: > i need all my network trafic to any host on 995 port goes to another gateway then the default. So i execute the following iptables command: > iptables -t mangle -A OUTPUT -p tcp --dport 995 -j ROUTE --gw x.x.x.x > where x.x.x.x is my another gateway . > > The problem when i execute the iptables command above is this: > iptables: No chain/target/match by that name > > thanks a lot > > Júlio César de Magalhães > Analista de Suporte - Poliedro/FNDE > (61) 81177547 Brasília - DF > > -- (after bouncing head on desk for days trying to get mine working, I'll make your life a little easier)