Displaying 1 result from an estimated 1 matches for "start_inbound".
2006 Aug 15
5
howto reduce the ping?
...SSIFY --set-class 1:10
iptables -t mangle -D POSTROUTING -p udp --dport 27000:27015 -j
CLASSIFY --set-class 1:10
#irc
iptables -t mangle -D POSTROUTING -p tcp --dport 6667 -j
CLASSIFY --set-class 1:20
#default
iptables -t mangle -D POSTROUTING -j CLASSIFY --set-class 1:90
}
start_inbound_device()
{
echo "Starting inbound device"
ip link set $INBOUND_DEV up
}
stop_inbound_device()
{
echo "Stopping inbound device"
ip link set $INBOUND_DEV down
}
start_inbound()
{
echo "Starting inbound"
tc qdisc add dev imq0 root handle 1: htb d...