리눅스 네트워크 도구 (테스트, 추적, 모니터링 명령어)

이동욱

2021/04/28

Categories: 네트워크 Tags: 네트워크

hping3


hping3 -S www.daum.net -p 80

iptables


# localhost의 UDP 요청을 차단하는 규칙을 추가하였다.
iptables -I OUTPUT -s localhost -d localhost -p udp --sport 7000 --dport 8000 -j DROP

# iptables 설정을 확인해본다.
iptables -L -n

# 다른 터미널에서 실제 요청을 보내보지만 응답이 오지 않는다.
hping3 --udp 127.0.0.1 -s 7000 -p 8000 --fast

# 위의 설정을 삭제한다.
iptables -D OUTPUT -s localhost -d localhost -p udp --sport 7000 --dport 8000 -j DROP

iptables -L -n

# 요청이 정상적으로 보내짐을 확인할 수 있다.

hping3 --udp 127.0.0.1 -s 7000 -p 8000 --fast

nslookup


Screen Shot 2021-04-28 at 12 36 08 AM

Screen Shot 2021-04-28 at 12 36 45 AM

nmap


Screen Shot 2021-04-28 at 12 38 40 AM

iftop


Screen Shot 2021-04-28 at 12 41 42 AM

bmon


Screen Shot 2021-04-28 at 12 42 55 AM

dstat


Screen Shot 2021-04-28 at 12 47 14 AM

ss


Screen Shot 2021-04-28 at 12 49 12 AM

netstat


Screen Shot 2021-04-28 at 12 50 57 AM

참고 문헌


>> Home