How do I know if I have been flooded?

Discussion in 'Site & Server Administration' started by rob2k8, Apr 21, 2009.

  1. #1
    Hi,

    How do I know if I have been flooded of a certain IP? Where should I check it?
     
    rob2k8, Apr 21, 2009 IP
  2. kailash

    kailash Well-Known Member

    Messages:
    1,248
    Likes Received:
    42
    Best Answers:
    0
    Trophy Points:
    190
    #2
    You can use netstat command to check current connections to your server.

    Kailash
     
    kailash, Apr 21, 2009 IP
  3. Bohra

    Bohra Prominent Member

    Messages:
    12,573
    Likes Received:
    537
    Best Answers:
    0
    Trophy Points:
    310
    #3
    In ssh

    Use this command

    netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n

    Rep is appreciated :)
     
    Bohra, Apr 21, 2009 IP