See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| Detecting and Mitigating DDOS Attacks | |
| #List all Finish (FIN) packets | |
| machine1 : sudo /usr/sbin/tcpdump -Nnn -i any -s0 'tcp[13] & 1 != 0' | |
| #List all SYN and SYN-ACK packets | |
| machine1 : sudo /usr/sbin/tcpdump -Nnn -i any -s0 'tcp[13] & 2 != 0' | |
| sub vcl_hit { | |
| if (obj.ttl >= 0s) { | |
| # normal hit | |
| return (deliver); | |
| } | |
| # We have no fresh fish. Lets look at the stale ones. | |
| if (std.healthy(req.backend_hint)) { | |
| # Backend is healthy. Limit age to 10s. | |
| if (obj.ttl + 10s > 0s) { | |
| set req.http.grace = "normal(limited)"; |
| /* | |
| * Copyright (c) 2010 Tobias Schneider | |
| * This script is freely distributable under the terms of the MIT license. | |
| */ | |
| (function(){ | |
| var UPC_SET = { | |
| "3211": '0', | |
| "2221": '1', | |
| "2122": '2', |