I don't have the traffic shaper or the captive portal on at the moment. I was trying to figure out the traffic shaper at one point, but I could never get it working right.
Comcast is throttling bittorrent traffic by using reset packets, supposedly this will help get around the throttling.
I actually came across a larger script recently: *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :RH-Firewall-1-INPUT - [0:0] -A INPUT -j RH-Firewall-1-INPUT -A RH-Firewall-1-INPUT -i lo -j ACCEPT -A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT #Comcast BitTorrent seeding block workaround -A RH-Firewall-1-INPUT -p tcp --dport 6883 --tcp-flags RST RST -j DROP #BitTorrent -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 6883 -j ACCEPT -A RH-Firewall-1-INPUT -m state --state NEW -m udp -p udp --dport 6883 -j ACCEPT -A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited -A FORWARD -j REJECT --reject-with icmp-host-prohibited COMMIT
It seems like the one line might be all I need.
|