udpcksum 编译 问题的解决方案

1 安装了libpcap (www.tcpdump.org)和libnet(http://www.packetfactory.net/libnet/dist/libnet.tar.gz)如果无法下载发邮件至[email protected]
2 运行udpcksum中的Makefile后,出现一下情况:
1 udphdr 没有定义 uh_sum。解决方法参见http://blog.csdn.net/yzj19870824/article/details/6869308
2 ‘LIBNET_DNSV4_H’未声明 。或者 undefined reference to `libnet_build_dnsv4'等。解决方法是将Makefile中的 `libnet-config --libs`和`libnet-config --defines --cflags`改为绝对路径。如我的就是`/home/yzj/libnet/libnet-config --libs`和`/home/yzj/libnet/libnet-config --defines --cflags`

3 运行程序总是timeout。解决方法关闭防火墙,UBUNTU方法是sudo ufw disable

     图片为 运行效果。

你可能感兴趣的:(ubuntu,防火墙,Build,makefile,reference)