![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| 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 !! |
|
|
||||
| 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 |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
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. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n | awk '{ if ($1 > 100) print $2 }'
|
|||
| Google The UNIX and Linux Forums |