The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
noob help needed ace_face Linux 1 04-20-2008 05:23 PM
Sorting Question The Owl Shell Programming and Scripting 3 02-14-2008 12:42 AM
sorting question darwin_886 UNIX for Dummies Questions & Answers 4 09-15-2007 07:51 AM
Noob question on comparing #'s. kirkm76 UNIX for Dummies Questions & Answers 6 05-16-2007 08:03 AM
Question about compiling (noob) arya6000 High Level Programming 9 12-10-2006 10:28 PM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1  
Old 02-10-2007
Registered User
 

Join Date: Aug 2006
Posts: 2
Noob sorting question

Ok here is the deal, I have a command given to me by some systems guy who I cannot get ahold of on the weekend without paying him alot of money to help me. I need to get this done before Monday as I am just getting pummeled by DOS attacks. The comand given was....

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

and when I run it it outputs.....

72 218.171.144.249
87 200.141.18.62
296 201.141.26.64
369 189.135.8.167

From what I was told by the said systems guy this will show me a list of IP's accessing my server and how many instances of each IP there are. What I want the command to do is to just output the IP's that have over 100+ connections (column 1) and display that IP (not column 1) so I can then fwrite that to my deny file. If someone can include how I would incorporate the fwrite command the would just make my day.

Thanks to all the Guru's out there.
Reply With Quote
Forum Sponsor
  #2  
Old 02-11-2007
Registered User
 

Join Date: Jan 2007
Posts: 366
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n | awk '{ if ($1 > 100) print $2 }'
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 01:13 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0