smb direct linux,SMB Direct(加快文件服务器访问速度)

RDMA (Remote Direct Memory Access) is based on Direct Memory Access

Remote DMA, or RDMA, is a technology that allows two different computers with RDMA network adapters to write data from the memory of one machine to the memory of another without involving the processor or even the processor cache of either computer.

The data goes from RAM to NIC to NIC to RAM. In the beginning of this course I said that if you wanted to transfer larger files faster you needed to buy a faster NIC, this is a faster NIC.

RDMA有三个实现版本,iWARP, RDMA over Converged Ethernet (RoCE)和Infiniband (IB)。由于融合网络架构的流行,iWARP和RoCE使用场景更加广泛。

代表iWARP的是Chelsio的T520-CR

代表RoCE的是Mellanox的ConnectX-3

两者都支持RDMA,且都是两个万兆接口。

运行powershell

安装 Data-Center-Bridging

Install-WindowsFeature Data-Center-Bridging

为 SMB Direct 设置网络 QoS 策略(445 is the port number for Microsoft file sharing, or SMB. the priority that I‘m going to assign it is a 3.)

New-NetQosPolicy "SMB" -NetDirectPortMatchCondition 445 -PriorityValue8021Action 3

建立新的NetQosPolicy

Enable-NetQosFlowControl -Priority 3

针对其他流量禁用流控制

Disable-NetQosFlowControl -Priority 0,1,2,4,5,6,7

Now we can apply this policy to the correct adapter(将网络 QoS 策略应用于目标适配器。)

Enable-NetAdapterQos -InterfaceAlias "Slot 2*"

If you need to know your interface alias you can use the Get-NetIPInterface to list all of your network interfaces and it will show the interface alias for each one.

Get-NetIPInterface

创建流量类别并为 SMB Direct 指定 30% 的最高带宽。 设置类名称将为“SMB” 。And specify ETS as the Algorithm that will apply that.

New-NetQosTrafficClass "SMB" -Priority 3 -BandwidthPercentage 30 -Algorithm ETS

If your network adapter supports RDMA then all you need to do is make sure it‘s enabled on that NIC.

获取网络适配器列表来识别目标适配器(以查询哪些是RDMA 适配器)

Get-NetIPInterface

20190908102553698672.png

And specifically I‘m looking for the vEthernet with the name of the virtual switch that my VM connects to. And I‘m going to enable RDMA for the vEthernet, or the virtual network adapter that connects my server to the virtual switch named Adapter 1

Enable-NetAdapterRDMA "vethernet (Adapter 1)"

Now if you find that after creating and enabling these policies that things stop working the way they should or situations get worse removing these policies uses command very similar to the ones used to create the objects.

Remove-NetQosTrafficClass "SMB"

Remove-NetQosPolicy "SMB"

原文:https://blog.51cto.com/2290153/2436517

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值