This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Default Drop Rule

I am seeing entries in my packet filter logs where the "Default Drop Rule" is dropping packets from the outside interface of my ASG box to the outside world.

19:45:29 Default DROP TCP 67.78.124.162 : 44550 
 → 204.0.3.64 : 80 
 [ACKFIN ] len=52 ttl=64 tos=0x00 
 

Any ideas/reason why the box its self would be connecting to this site?


Thanks,


This thread was automatically locked due to age.
Parents
  • Hi,


    I am seeing entries in my packet filter logs where the "Default Drop Rule" is dropping packets from the outside interface of my ASG box to the outside world.
     
    19:45:29 Default DROP TCP 67.78.124.162 : 44550 
     → 204.0.3.64 : 80 
     [ACKFIN ] len=52 ttl=64 tos=0x00 
     
     
    Any ideas/reason why the box its self would be connecting to this site?



    The connection is probably either from a client that is connecting through the firewall (and gets masqueraded on the outside interface) or he is connecting through the proxy on the ASG.



    Nevertheless, dropped ACK-FIN packets are usually observed on TCP connections where the shutdown of the connection takes to long (IP conntrack
    requires the FIN packet to arrives in 60 seconds after the last packet). 


    So if the delay between the last packets are >60s, the kernel removes the connection tracking entry, and drops the packet as he has no connection where this packets belongs to.

    The same happens if the connection was unexpected shutdown by a RST packet from the other side.


    In most cases this is a condition that can be ignored - if that is not the case, i would start looking what's causing this delay.


    Cheers,


    Sven.
Reply
  • Hi,


    I am seeing entries in my packet filter logs where the "Default Drop Rule" is dropping packets from the outside interface of my ASG box to the outside world.
     
    19:45:29 Default DROP TCP 67.78.124.162 : 44550 
     → 204.0.3.64 : 80 
     [ACKFIN ] len=52 ttl=64 tos=0x00 
     
     
    Any ideas/reason why the box its self would be connecting to this site?



    The connection is probably either from a client that is connecting through the firewall (and gets masqueraded on the outside interface) or he is connecting through the proxy on the ASG.



    Nevertheless, dropped ACK-FIN packets are usually observed on TCP connections where the shutdown of the connection takes to long (IP conntrack
    requires the FIN packet to arrives in 60 seconds after the last packet). 


    So if the delay between the last packets are >60s, the kernel removes the connection tracking entry, and drops the packet as he has no connection where this packets belongs to.

    The same happens if the connection was unexpected shutdown by a RST packet from the other side.


    In most cases this is a condition that can be ignored - if that is not the case, i would start looking what's causing this delay.


    Cheers,


    Sven.
Children