码迷,mamicode.com
首页 > Web开发 > 详细

NS3网络仿真(13): FdNetDevice的问题

时间:2015-08-18 22:53:30      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:vs2013   ns3   网络仿真   

快乐虾

http://blog.csdn.net/lights_joy/

欢迎转载,但请保留作者信息


在前面的小节中,我们使用FdNetDevice进行了实时仿真,利用NS3向一台实际的机器发送ping包,但得到的结果显然有点偏离我们的预期结果,因为ping包的响应时间明显长于正常情况下的响应时间。


这个是用NS3发送ping包的结果:

技术分享


使用WireSharkNS3使用的适配器上抓包,这个是在物理网卡上抓到的包:

技术分享


显然对端的响应是没有问题的,莫非问题出现在winpcap的发送上?刚好学习ICMPv4时也遇到了这样的问题,一并解决它。在网上搜了一把,貌似问题出现在打开winpcap设备时指定的参数:


	if ((adhandle = pcap_open_live(m_deviceName.c_str(),	// name of the device
		65536,			// portion of the packet to capture. 
		// 65536 grants that the whole packet will be captured on all the MACs.
		1,				// promiscuous mode (nonzero means promiscuous)
		1000,			// read timeout
		errbuf			// error buffer
		)) == NULL)
	{
		fprintf(stderr, "\nUnable to open the adapter. %s is not supported by WinPcap\n", m_deviceName.c_str());
		return -1;
	}

这里的read timeout值直接来源于winpcap的示例代码,查一下此参数的意义:


read_timeout,:  read timeoutin milliseconds. The read timeout is used to arrange that the read notnecessarily return immediately when a packet is seen, but that it waits forsome amount of time to allow more packets to arrive and to read multiplepackets from the OS kernel in one operation. Not all platforms support a readtimeout; on platforms that don‘t, the read timeout is ignored.


将此值改为1。再执行仿真

技术分享


这个结果好多了~~~,再改为-1试试:

技术分享



更好的结果,只是此时的CPU使用率更高。










??

版权声明:本文为博主原创文章,未经博主允许不得转载。

NS3网络仿真(13): FdNetDevice的问题

标签:vs2013   ns3   网络仿真   

原文地址:http://blog.csdn.net/lights_joy/article/details/47760089

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!