web-dev-qa-db-ja.com

1ギガビット未満で動作する10gネットワークカード

2台のサーバーに10ギガビット光ファイバーカードをインストールしましたが、スループットをテストすると、約600Mbps程度でしか実行されません。

$ scp random.1G rcm2:/tmp
random.1G 100% 1024MB  73.1MB/s   00:14

私のルートは正しく見えます。ネットワークドライバとハードウェアが正しく設定されているようです。

誰かが次にどこを見るべきか教えてもらえますか?

詳細は次のとおりです。

ルーティング

172.16.157.34

$ ip route get 172.16.157.35
172.16.157.35 dev eth1  src 172.16.157.34

172.16.157.35

$ ip route get 172.16.157.34
172.16.157.34 dev eth2  src 172.16.157.35

ハードウェア/ ifconfig

172.16.157.34

$ ifconfig
...
eth2      Link encap:Ethernet  HWaddr 90:e2:ba:38:aa:ee  
          inet addr:172.16.157.34  Bcast:172.16.157.63  Mask:255.255.255.224
...
$ lshw -class network
   ...
   description: Ethernet interface
   product: 82599EB 10-Gigabit SFI/SFP+ Network Connection
   ...
   serial: 90:e2:ba:38:aa:ee
   ...

172.16.157.35

$ ifconfig
...
eth1      Link encap:Ethernet  HWaddr 90:E2:BA:38:AA:82  
          inet addr:172.16.157.35  Bcast:172.16.157.63  Mask:255.255.255.224
...
$ lshw -class network
   ...
   description: Ethernet interface
   product: 82599EB 10-Gigabit SFI/SFP+ Network Connection
   ...
   serial: 90:e2:ba:38:aa:82
   ...

ドライバーのセットアップ

172.16.157.34

$ Sudo ethtool eth2 
Settings for eth2:
    Supported ports: [ FIBRE ]
    Supported link modes:   1000baseT/Full 
                            10000baseT/Full 
    Supported pause frame use: No
    Supports auto-negotiation: Yes
    Advertised link modes:  1000baseT/Full 
                            10000baseT/Full 
    Advertised pause frame use: No
    Advertised auto-negotiation: Yes
    Speed: 10000Mb/s
    Duplex: Full
    Port: FIBRE
    PHYAD: 0
    Transceiver: external
    Auto-negotiation: on
    Supports Wake-on: d
    Wake-on: d
    Current message level: 0x00000007 (7)
                   drv probe link
    Link detected: yes

172.16.157.35

$ Sudo ethtool eth1
[Sudo] password for jsp: 
Settings for eth1:
    Supported ports: [ FIBRE ]
    Supported link modes:   1000baseT/Full 
                            10000baseT/Full 
    Supported pause frame use: No
    Supports auto-negotiation: Yes
    Advertised link modes:  1000baseT/Full 
                            10000baseT/Full 
    Advertised pause frame use: No
    Advertised auto-negotiation: Yes
    Speed: 10000Mb/s
    Duplex: Full
    Port: FIBRE
    PHYAD: 0
    Transceiver: external
    Auto-negotiation: on
    Supports Wake-on: d
    Wake-on: d
    Current message level: 0x00000007 (7)
                   drv probe link
    Link detected: yes
1
jsp

scpには、飛行中にデータを暗号化するための大きなオーバーヘッドがあります。 ncのような薄いものを使用すると、スループットが向上し、サーバーとネットワークの物理機能をより現実的にテストできます。

また、ボトルネックがディスクなどの他の場所に存在しないことを確認してください。 iperfまたは同様のものを使用して、ディスクにバインドされていないスループットをテストします。

2
longneck