network tools written in go
- ping
- traceroute
- tcpdump
- curl
- telnet
- nc
build libpcap
export PCAPV=1.9.1
wget http://www.tcpdump.org/release/libpcap-$PCAPV.tar.gz && \
tar xvf libpcap-$PCAPV.tar.gz && \
cd libpcap-$PCAPV && \
./configure --enable-dbus=no --enable-shared=no && \
make
# cd in project dir
make build