Networking Forums

Networking Forums > Computer Networking > Linux Networking > are some major routers screwing with Youtube sessions?

Reply
Thread Tools Display Modes

are some major routers screwing with Youtube sessions?

 
 
paulwvanc@yahoo.ca
Guest
Posts: n/a

 
      12-12-2006, 01:53 AM
hi

are some major routers screwing with Youtube sessions? please take
political issues off the network for pete sake!

I'm consistently getting "connection reset" from Youtube, even though I
have filtered all the bad packets. If Youtube is doing it, thay have
really flaky servers... arrrggghhh.

# drop invalid ip packets
iptables -A INPUT -p ALL -m state --state INVALID -j LOG
--log-prefix "fp=bad_packet:1 a=DROP "
iptables -A INPUT -p ALL -m state --state INVALID -j DROP
# drop bad tcp packets
iptables -A INPUT -p tcp ! --syn -m state --state NEW -j LOG
--log-prefix "fp=bad_tcp:1 a=DROP "
iptables -A INPUT -p tcp ! --syn -m state --state NEW -j DROP
iptables -A INPUT -p tcp --tcp-flags ALL NONE -j LOG
--log-prefix "fp=bad_tcp:2 a=DROP "
iptables -A INPUT -p tcp --tcp-flags ALL NONE -j DROP
iptables -A INPUT -p tcp --tcp-flags ALL ALL -j LOG
--log-prefix "fp=bad_tcp:3 a=DROP "
iptables -A INPUT -p tcp --tcp-flags ALL ALL -j DROP
iptables -A INPUT -p tcp --tcp-flags ALL FIN,URG,PSH -j LOG
--log-prefix "fp=bad_tcp:4 a=DROP "
iptables -A INPUT -p tcp --tcp-flags ALL FIN,URG,PSH -j DROP
iptables -A INPUT -p tcp --tcp-flags ALL SYN,RST,ACK,FIN,URG -j LOG
--log-prefix "fp=bad_tcp:5 a=DROP "
iptables -A INPUT -p tcp --tcp-flags ALL SYN,RST,ACK,FIN,URG -j DROP
iptables -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j LOG
--log-prefix "fp=bad_tcp:6 a=DROP "
iptables -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
iptables -A INPUT -p tcp --tcp-flags SYN,FIN SYN,FIN -j LOG
--log-prefix "fp=bad_tcp:7 a=DROP "
iptables -A INPUT -p tcp --tcp-flags SYN,FIN SYN,FIN -j DROP

# I shouldn't get TCP RST at this point but I still do!
iptables -A INPUT -p tcp -m tcp --tcp-flags RST RST -j LOG --log-prefix
"fp=bad_tcp:8 youtube a=DROP "
iptables -A INPUT -p tcp -m tcp --tcp-flags RST RST -j DROP

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
YouTube video on iPhone - Looks Good asd sadf Broadband 1 07-02-2007 08:38 PM
a sample of a really funny show on Youtube jpossemato@gmail.com Broadband 0 06-22-2007 08:40 PM
YouTube on the iPhone Video jessi Broadband 0 06-19-2007 12:00 PM
NTL: Poor youtube connections Steve Broadband 1 01-16-2007 11:24 AM
home network someone is screwing with it Tinshark Wireless Internet 8 01-07-2006 06:07 PM



1 2 3 4 5 6 7 8 9 10 11