The project aims to be server-client ICMP ping aplication. It contains two binary and two code files. Client-side binary can send ICMP package and server-side application can capture and resend a response. It can think like a client-server ping application.
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
- libpcap
for Debian based
$ sudo apt install libpcap-devfor RHEL based
$ sudo yum install libpcap-devadding pcap header with
#include <pcap.h>$ sudo gcc src/ping_client.c -o bin/ping_client
$ sudo gcc src/ping_server.c -o bin/ping_serverto start server-side app
sudo ./ping_server to send a ICMP package to server
sudo ./ping_client <ip_address> -c 4 # 4 ping messageThere is no License for the project.
@noaahhh - @noah_the_turk
Project Link: https://github.com/noaahhh/ping-tool-with-libpcap
