search for: stop_inbound_ipt

Displaying 1 result from an estimated 1 matches for "stop_inbound_ipt".

2006 Aug 15
5
howto reduce the ping?
...and redirect it to imq0 iptables -t mangle -A PREROUTING -i ppp0 -j IMQ --todev 0 } stop_inbound_tc() { echo "Stopping inbound tc" tc qdisc del dev $INBOUND_DEV root 2> /dev/null > /dev/null tc qdisc del dev $INBOUND_DEV ingress 2> /dev/null > /dev/null } stop_inbound_iptables() { echo "Stopping inbound iptables" #css iptables -t mangle -D PREROUTING -i ppp0 -p udp --sport 27000:27015 -j MARK --set-mark 1 iptables -t mangle -D PREROUTING -i ppp0 -p tcp --sport 27020:27039 -j MARK --set-mark 1 #irc iptables -t mangle -D PREROUTIN...