RTX1210のルーティング スループット

YAMAHA RTX1210のLAN1-LAN2間の単純ルーティングでのスループットを測定してみました。

計測環境

LAN1配下にCentOS7 Aをクライアント、LAN2配下にCentOS7 Bをサーバーにし、iperf3を実行しスループットの測定を行います。RTX1210のファームウェアはRev.14.01.33です。

計測結果

CentOS7 Aでのiperf3の実行結果が以下となります。-Mオプションを使ってMSSを変えてテストを行っています。TAP-TST10での目測値で、無負荷時の消費電力は6.6Wとなります。後で掲載のconfigにあるようにフィルタ等は一切設定しておりません。

sender
MSS Mbps CPU 消費電力
1460(指定なし) 942 85% 6.9W
1200 930 90% 6.9W
800 898 100% 7.0W
400 812 100% 7.1W

一応wire speedが出ていますが、CPUの負荷がとても高いです。YAMAHAの説明によればRTX1210はファストパスという機能があるようですが、ソフトウェア処理でありCPUも1コアしかないことから、色々設定を複雑にするとwire speedは出ないかもしれません。ショートパケットでもそれなりにスループットが出ている点は好印象です。

驚いたことに、CPU負荷が100%でもたったの0.5Wしか消費電力が上がっていません。RTX1210に搭載のCPUであるPowerPC 1000MHzはよっぽど非力なのでしょうかね・・・。

RTX1210のConfig

以下のように非常にシンプルなconfigで検証しています。フィルタやNATの設定はありません。

ip lan1 address 192.168.100.1/24
ip lan2 address 192.168.200.1/24
dhcp service server
dhcp server rfc2131 compliant except remain-silent
dhcp scope 1 192.168.100.2-192.168.100.191/24
dhcp scope 2 192.168.200.2-192.168.200.191/24

iperf3の詳細結果

MSS指定なし
# iperf3 -c 192.168.200.2 -t 60 -i 10
Connecting to host 192.168.200.2, port 5201
[  4] local 192.168.100.2 port 46290 connected to 192.168.200.2 port 5201
[ ID] Interval           Transfer     Bandwidth       Retr  Cwnd
[  4]   0.00-10.00  sec  1.10 GBytes   943 Mbits/sec    0    472 KBytes       
[  4]  10.00-20.00  sec  1.10 GBytes   941 Mbits/sec    0    537 KBytes       
[  4]  20.00-30.00  sec  1.10 GBytes   942 Mbits/sec    0    542 KBytes       
[  4]  30.00-40.00  sec  1.10 GBytes   942 Mbits/sec    0    542 KBytes       
[  4]  40.00-50.00  sec  1.10 GBytes   941 Mbits/sec    0    542 KBytes       
[  4]  50.00-60.00  sec  1.10 GBytes   941 Mbits/sec    0    550 KBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval           Transfer     Bandwidth       Retr
[  4]   0.00-60.00  sec  6.58 GBytes   942 Mbits/sec    0             sender
[  4]   0.00-60.00  sec  6.57 GBytes   941 Mbits/sec                  receiver
MSS 1200
# iperf3 -c 192.168.200.2 -t 60 -i 10 -M 1200
Connecting to host 192.168.200.2, port 5201
[  4] local 192.168.100.2 port 46294 connected to 192.168.200.2 port 5201
[ ID] Interval           Transfer     Bandwidth       Retr  Cwnd
[  4]   0.00-10.00  sec  1.08 GBytes   931 Mbits/sec    0    426 KBytes       
[  4]  10.00-20.00  sec  1.08 GBytes   929 Mbits/sec    0    427 KBytes       
[  4]  20.00-30.00  sec  1.08 GBytes   930 Mbits/sec    0    430 KBytes       
[  4]  30.00-40.00  sec  1.08 GBytes   929 Mbits/sec    0    456 KBytes       
[  4]  40.00-50.00  sec  1.08 GBytes   930 Mbits/sec    0    465 KBytes       
[  4]  50.00-60.00  sec  1.08 GBytes   930 Mbits/sec    0    465 KBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval           Transfer     Bandwidth       Retr
[  4]   0.00-60.00  sec  6.49 GBytes   930 Mbits/sec    0             sender
[  4]   0.00-60.00  sec  6.49 GBytes   930 Mbits/sec                  receiver
MSS 800
# iperf3 -c 192.168.200.2 -t 60 -i 10 -M 800
Connecting to host 192.168.200.2, port 5201
[  4] local 192.168.100.2 port 46302 connected to 192.168.200.2 port 5201
[ ID] Interval           Transfer     Bandwidth       Retr  Cwnd
[  4]   0.00-10.00  sec  1.05 GBytes   899 Mbits/sec    0    410 KBytes       
[  4]  10.00-20.00  sec  1.04 GBytes   897 Mbits/sec    0    430 KBytes       
[  4]  20.00-30.00  sec  1.04 GBytes   897 Mbits/sec    0    442 KBytes       
[  4]  30.00-40.00  sec  1.04 GBytes   897 Mbits/sec    0    459 KBytes       
[  4]  40.00-50.00  sec  1.05 GBytes   898 Mbits/sec    0    468 KBytes       
[  4]  50.00-60.00  sec  1.05 GBytes   898 Mbits/sec    0    468 KBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval           Transfer     Bandwidth       Retr
[  4]   0.00-60.00  sec  6.27 GBytes   898 Mbits/sec    0             sender
[  4]   0.00-60.00  sec  6.27 GBytes   897 Mbits/sec                  receiver
MSS 400
# iperf3 -c 192.168.200.2 -t 60 -i 10 -M 400
Connecting to host 192.168.200.2, port 5201
[  4] local 192.168.100.2 port 46310 connected to 192.168.200.2 port 5201
[ ID] Interval           Transfer     Bandwidth       Retr  Cwnd
[  4]   0.00-10.00  sec   971 MBytes   814 Mbits/sec    0    523 KBytes       
[  4]  10.00-20.00  sec   967 MBytes   811 Mbits/sec    0    549 KBytes       
[  4]  20.00-30.00  sec   968 MBytes   812 Mbits/sec    0    565 KBytes       
[  4]  30.00-40.00  sec   967 MBytes   811 Mbits/sec    0    565 KBytes       
[  4]  40.00-50.00  sec   967 MBytes   811 Mbits/sec    0    565 KBytes       
[  4]  50.00-60.00  sec   968 MBytes   812 Mbits/sec    0    596 KBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval           Transfer     Bandwidth       Retr
[  4]   0.00-60.00  sec  5.67 GBytes   812 Mbits/sec    0             sender
[  4]   0.00-60.00  sec  5.67 GBytes   812 Mbits/sec                  receiver

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です