Phân trang: 7/44 Trang đầu Trang trước 2 3 4 5 6 7 8 9 10 11 Trang sau Trang cuối [ Kiểu hiển thị: Trích dẫn | Liệt kê ]
Anh à, em muốn được như ngày xưa ...

Windows Media PlayerTệp tin

Người ta có thể quyến rũ một trái tim bằng sự gian dối, nhưng người ta chỉ có thể chinh phục một trái tim bằng tấm lòng chân thật


Windows Media PlayerTệp tin

Để quên một người có khi người ta mất cả một đời ...
Người ta nói im lặng là vàng. Nhưng chưa bao giờ em thấy sự im lặng lại ngốc nghếch thế ...
Ngay hôm sau em lại đi học ở nơi đó. Lúc về cứ mong sao mình đi lạc vào nơi hôm qua để gặp lại người tốt bụng ...
Sau này em vẫn còn đi lạc và mỗi lần như thế lại nhớ về câu chuyện này


Windows Media PlayerTệp tin

Hãy cùng lắng lại để nghe yêu cầu của 1 cô bé 15 tuổi gửi cho mẹ mình - cũng là một cô giáo nhé...

Đối với thế giới, mẹ chỉ là một người. Đối với con, mẹ là tất cả ...

Windows Media PlayerTệp tin

Quick and Snow show - Mắt thủy tinh

[Không rõ 24 November 2009 13:18 | by hrockvn ]
Mắt Thủy Tinh
Đơn giản chỉ vì khi tình nhìn thấy ấy cười đùa dưới sân trường, tớ tin rằng mình là người hạnh phúc nhất ...

Windows Media PlayerTệp tin

Đường nắng là con đường em đi đón anh hôm anh ra Hà Nội.
Con đường kỷ niệm là con đường em và anh đi về nhà mình, là con đường anh nắm chặt tay em, sợ em lạnh và sợ em lo lắng.
Đường ngại ngùng là đường 2 đứa đi chơi với nhau bị mọi người bắt gặp.
Đường ngỡ ngàng là con đường anh đưa em đi vào tối giao thừa. Anh nói: Thích nhìn vào mắt em lúc vui ngắm pháo hoa. Giờ em rất nhớ con đường ấy.
Con đường giận hờn là con đường em dỗi và tủi thân khi thấy anh quan tâm đến người khác.
Đường nước mắt là con đường em về một mình khi anh đã đi ...

Windows Media PlayerTệp tin

Limp Bizkit - Behind Blue Eyes

[Không rõ 23 November 2009 17:11 | by hrockvn ]
Flash PlayerTệp tin


Limp Bizkit - Behind Blue Eyes lyrics
Artist: Limp Bizkit

No one knows what it's like
To be the bad man
To be the sad man
Behind blue eyes
And no one knows
What it's like to be hated
To be fated to telling only lies

Inside A Google Data Center

[Không rõ 16 November 2009 08:24 | by hrockvn ]
Flash PlayerTệp tin

Other Entry: Apache reading = DOS attack ?
Whenever a client connects to a server via network, a connection is established and opened on the system. On a busy high load server, the number of connections connected to the server can be run into large amount till hundreds if not thousands. Find out and get a list of connections on the server by each node, client or IP address is useful for system scaling planning, and in most cases, detect and determine whether a web server is under DoS or DDoS attack (Distributed Denial of Service), where an IP sends large amount of connections to the server. To check connection numbers on the server, administrators and webmasters can make use of netstat command.


Below is some of the example a typically use command syntax for ‘netstat’ to check and show the number of connections a server has. Users can also use ‘man netstat’ command to get detailed netstat help and manual where there are lots of configurable options and flags to get meaningful lists and results.

 

netstat -na
Display all active Internet connections to the servers and only established connections are included.

netstat -an | grep :80 | sort

Show only active Internet connections to the server at port 80 and sort the results. Useful in detecting single flood by allowing users to recognize many connections coming from one IP.

netstat -n -p|grep SYN_REC | wc -l
Let users know how many active SYNC_REC are occurring and happening on the server. The number should be pretty low, preferably less than 5. On DoS attack incident or mail bombed, the number can jump to twins. However, the value always depends on system, so a high value may be average in another server.

netstat -n -p | grep SYN_REC | sort -u
List out the all IP addresses involved instead of just count.

netstat -n -p | grep SYN_REC | awk '{print $5}' | awk -F: '{print $1}'
List all the unique IP addresses of the node that are sending SYN_REC connection status.

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
Use netstat command to calculate and count the number of connections each IP address makes to the server.

netstat -anp |grep 'tcp\|udp' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
List count of number of connections the IPs are connected to the server using TCP or UDP protocol.

netstat -ntu | grep ESTAB | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr
Check on ESTABLISHED connections instead of all connections, and displays the connections count for each IP.

netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1
Show and list IP address and its connection count that connect to port 80 on the server. Port 80 is used mainly by HTTP web page request.

Phân trang: 7/44 Trang đầu Trang trước 2 3 4 5 6 7 8 9 10 11 Trang sau Trang cuối [ Kiểu hiển thị: Trích dẫn | Liệt kê ]