WEB WAS/WAS

[tcpdump] 서버 패킷 분석방법

홍또~ 2022. 3. 4. 14:50

ifconfig로 서비스 서버의 네트워크 인터페이스 정보를 확인 후

sudo /usr/sbin/tcpdump -ieth1 -A -s1500 -nn tcp and port 80 > output.txt&  
sudo /usr/sbin/tcpdump -itunl0 -A -s1500 -nn tcp and port 80 > input.txt&  
sudo /usr/sbin/tcpdump -ilo -A -s1500 -nn tcp and port 8009 > mod_jk.txt&

이런 식으로 원하는 포트의 패킷정보를 txt파일로 담아서 분석한다