centos7 安装tcpdump 步骤

为了更好的学习tcp协议原理,决定安装tcpdump观察

准备工具
1. flex 
yum -y install flex
2. bison

下载安装步骤

wget http://www.tcpdump.org/release/libpcap-1.5.3.tar.gz  
wget http://www.tcpdump.org/release/tcpdump-4.5.1.tar.gz  
tar -zxvf libpcap-1.5.3.tar.gz  
cd libpcap-1.5.3  
./configure  
sudo make install  
  
cd ..  
tar -zxvf tcpdump-4.5.1.tar.gz  
cd tcpdump-4.5.1  
./configure  
sudo make install  

然后就可以使用tcpdump啦~~~

你可能感兴趣的:(linux开发)