Home > Article > System Tutorial > Test network security and performance: Learn about the Linux hping command line tool
Have you ever wondered how to test your network security? Or have you ever wondered how to take network measurements? If so, then you definitely need to know about a tool called hping, which is a powerful Linux command line tool that can help you with network probing, measurement, and attack testing.
hping is a command line oriented TCP/IP packet assembler/analyzer. Its interface is inspired by the ping(8) unix command, but hping does not only send ICMP echo requests. It supports TCP, UDP, ICMP and RAW-IP protocols, has a traceroute mode, the ability to send files between an overlay channel, and many other features.
Create local installation directory
mkdir -p /usr/local/hping && cd /usr/local/hping
Download and unzip
wget https://github.com/antirez/hping/archive/master.zip && unzip master.zip && cd hping-master
Install dependency packages
yum install -y libpcap-devel yum install -y gcc gcc-c++ yum install -y tcl tcl-devel
Set soft connection
ln -sf /usr/include/pcap-bpf.h /usr/include/net/bpf.h
Install
./configure && make strip && make install
Test query version
hping3 -v
Other references
hping -ltn 列出所有TCP端口 hping -p 发起TCP探测 -S设置SYN包 -a 伪造IP模拟DDOS
The above is the detailed content of Test network security and performance: Learn about the Linux hping command line tool. For more information, please follow other related articles on the PHP Chinese website!