-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# デバッグ環境のメモ | ||
|
||
- `tshark` で icmp のキャプチャ | ||
|
||
```console | ||
pi@raspberrypi:~/github.com/ddddddO/packemon $ sudo tshark -i wlan0 -T fields -E header=y -E separator=/t -e eth.src -e ip.src -e eth.dst -e ip.dst icmp | ||
Running as user "root" and group "root". This could be dangerous. | ||
eth.src ip.src eth.dst ip.dst | ||
Capturing on 'wlan0' | ||
58:6d:67:be:6d:fb 192.168.10.109 dc:a6:32:91:51:58 192.168.10.110 | ||
dc:a6:32:91:51:58 192.168.10.110 58:6d:67:be:6d:fb 192.168.10.109 | ||
|
||
|
||
``` |