如何利用tcpdump对mysql进行抓包操作

命令如下:

tcpdump -s 0 -l -w - dst 192.168.244.10 and port 3306 -i eno16777736 |strings 

其中-i指定监听的网络接口,在RHEL 7下,网络接口名不再是之前的eth0,而是 eno16777736。

 

在RHEL 5&6下,可直接不带-i参数,因为它默认是eth0。在RHEL 7下,如果不用-i参数指定网络接口,则会报如下错误:

tcpdump: Bluetooth link-layer type filtering not implemented

 

posted @ 2016-12-12 11:53  iVictor  阅读(6249)  评论(0编辑  收藏  举报