Wireshark

From 탱이의 잡동사니
Revision as of 09:11, 18 March 2015 by Pchero (talk | contribs) (Created page with "== Overview == wireshark 사용법 정리 == Installation == Ubuntu 에서 wireshark 설치시, dumpcap 명령 권한으로 인해 사용가능한 Interface 목록이 보이...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Overview

wireshark 사용법 정리

Installation

Ubuntu 에서 wireshark 설치시, dumpcap 명령 권한으로 인해 사용가능한 Interface 목록이 보이지 않는 문제가 있다. 다음을 참조하자. <source lang=bash> $ sudo apt-get install wireshark

$ sudo groupadd wireshark

$ sudo usermod -a -G wireshark YOUR_USER_NAME

$ sudo chgrp wireshark /usr/bin/dumpcap

$ sudo chmod 750 /usr/bin/dumpcap

$ sudo setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap

$ sudo getcap /usr/bin/dumpcap </source>