回答:
を使用できますtcpdump
。
# tcpdump filter for HTTP GET
sudo tcpdump -s 0 -A 'tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420'
# tcpdump filter for HTTP POST
sudo tcpdump -s 0 -A 'tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)'
を使用したソリューションについては、以下をtshark
参照してください。
https://serverfault.com/questions/84750/monitoring-http-traffic-using-tcpdump
私はtcpflow
awsインスタンスで受信リクエストをチェックするために使用してきましたが、リクエストを日単位で集約する方法があるかもしれません。
ステップ1-インストール
# yum install --nogpgcheck http://pkgs.repoforge.org/tcpflow/tcpflow-0.21-1.2.el6.rf.x86_64.rpm
ステップ2-ポート80でGET / POST要求を追跡する
# tcpflow -p -c -i eth0 port 80 | grep -oE '(GET|POST|HEAD) .* HTTP/1.[01]|Host: .*'