MTU is larger than the FastSendDatagramThreshold

执行uhd_usrp_probe.exe时,提示"MTU is larger than the FastSendDatagramThreshold"。解决方法如下:

Problem

You may see a message similar to the following  on Windows machines when using the Support Package for USRP Radio Rx or Tx System objects or blocks:

    The MTU(1472) is larger than the FastSendDatagramThreshold(1024)!

    This will negatively affect the transmit performance.

    See the transport application notes for more detail.

Possible Solution

the Ettus Research web site has a document,UHD-Transport Application Notes(Broken Links),that describes this problem.See the MicroSoft web site:Optimizing Windows Media Services for Appendix E:Registry Key for information  on increasing this setting.After you have perused these documents,follow the instructions in this section to apply the change.

  Warning Incorrectly editing the registry may serverely damage your system.Before making changes to the registry,you shuold back up any valued data on your computer.

To increase the FastSendDatagramThreshold,follow these steps:

1.Click Windows Start,Enter regedit in Search programs and files

2.using the left side navigation windows,go to HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\AFD\Parameters\.

3.Right click on Parameters and Select New->DWORD(32-bit)Value.

4.Enter FastSendDatagramThreshold as the name.

5.Right click on FashSendDatagramThreshold value and select modify.

6.Enter 1500 for Value data.Select Decimal as Base value.

7.Click OK.FastSendDatagramThreshold should now have the following settings:

8.Close the registry editor.A system reboot is recommended after the registry key change.

PS:file:///C:/MATLAB/SupportPackages/R2013a/sdru/help/gs/btojzt3.html

时间: 2024-11-15 12:35:35

MTU is larger than the FastSendDatagramThreshold的相关文章

什么是MTU,如何检测和设置路由器MTU值

最大传输单元(Maximum Transmission Unit,MTU)是指一种通信协议的某一层上面所能通过的最大数据包大小(以字节为单位).最大传输单元这个参数通常与通信接口有关(网络接口卡.串口等).如何检测网关的MTU在本机打开dos窗口,执行: ping -f -l 1472 192.168.0.1 其中192.168.0.1是网关IP地址,1472是数据包的长度.请注意,上面的参数是“-l”(小写的L),而不是“-1”. 如果能ping通,表示数据包不需要拆包,可以通过网关发送出去.

myeclise10 svn: E210004: Number is larger than maximum 解决方案

本人在配置svn过程中出现了一个非常奇葩的问题,重新安装系统后,对myeclipse进行了重装,以往运行正常的插件突然不能用了,报错了: svn: E210004: Number is larger than maximum 首先在这里将本人的开发环境配置写下: 操作系统:windows7 旗舰版 64位 jdk: jdk1.6.20 myeclipse:myeclipse10.0.7 经过百度,广大程序员的日志上基本都反映的是: svn: E210004: Number is larger t

ELK之kibana的web报错[request] Data too large, data for [<agg [2]>] would be larger than limit of

ELK架构:elasticsearch+kibana+filebeat 版本信息: elasticsearch 5.2.1 kibana 5.2.1 filebeat 6.0.0 (预览版) 今天在进行ELK测试的时候,在kibana上面discover无论那个index,发现均会报错: [request] Data too large, data for [<agg [2]>] would be larger than limit of 并且在elasticsearch的日志可以看到: or

mtu

通信术语 最大传输单元(Maximum Transmission Unit,MTU)是指一种通信协议的某一层上面所能通过的最大数据包大小(以字节为单位).最大传输单元这个参数通常与通信接口有关(网络接口卡.串口等). 原理说明 因为协议数据单元的包头和包尾的长度是固定的,MTU越大,则一个协议数据单元的承载的有效数据就越长,通信效率也越高.MTU越大,传送相同的用户数据所需的数据包个数也越低. MTU也不是越大越好,因为MTU越大, 传送一个数据包的延迟也越大:并且MTU越大,数据包中 bit位

合理设置MTU,提升下载速度

可能很少有雷友注意过“本机.网络”的“MTU”值对自己网络性能产生的影响.对于追求更快的下载速度来说,MTU值设置不当,就仿佛穿着高跟鞋跑步一般. MTU是什么? “MTU=最大传输单元 单位:字节” 我们在使用互联网时进行的各种网络操作,都是通过一个又一个“数据包”传输来实现的.而MTU指定了网络中可传输数据包的最大尺寸,在我们常用的以太网中,MTU是1500字节.超过此大小的数据包就会将多余的部分拆分再单独传输. 为什么MTU影响网络性能? 让我们看看这个情况,在Windows系统中,默认M

MTU&amp;MSS

MTU是Maximum Transmission Unit的缩写,意为最大传输单元,通俗的理解就是在网络上传送的最大数据包,单位是字节. 以太网对数据帧的长度都有一个限制,其最大值为1500,这个特性被称作MTU,不同类型的网络大多数都有一个上限.如果IP层有一个IP包要传,而且数据的长度比链路层上的MTU值还要大,那么就需要对这个数据包进行分片处理,而且要求被分片的每个数据包都要等于或小于这个MTU值,一般是最后一个数据包小于这个值.例如,一个大小为5000字节的数据包在穿越网络时,如果遇到一

通过UDP探测端到端MTU

P_MTU_D(Path MTU Discovery) socket的UDP功能,去发现端到端MTU #!/usr/bin/env python3 #-*- encoding:utf8 -*- #Used UDP to learn the MTU of the end_to_end PATH_MTU import IN,argparse,socket if not hasattr(IN,'IP_MTU'): raise RuntimeError('cannot perform MTU disco

可靠的UDP连接 &amp; MTU MSS

这个网页里面写了: http://blog.csdn.net/plusboy/article/details/1523308 其可靠性必须由上层应用实现.一般都会采用消息重传来实现其可靠性,采用消息重传的时候有两种方式,一种是发送者发起,另一种是接收者发起. 前一种接收者发的是ACK.发送者收到ACK,就不重传.但是可能ACK内爆. 第二种接收者发的是NACK.发送者收到NACK,就重传.但是可能NACK内爆.另外需要保留发出去的数据,但是一般可以用超时机制,把以前的数据丢弃. 另外,看到云风的

debian/ubuntu系统,IP DNS MTU 配置

1.配置添加IP:vi /etc/network/interfaces   修改如下内容 # The primary network interface auto eth0 iface eth0 inet static mtu 1410 address 192.168.1.100 address2                                    #添加多个IP地址 netmask 255.255.255.0 gateway 192.168.1.1 保存,重启网卡 servi