OCIとAWSでVPN接続をした状態での転送速度を計測してみた

こんにちは。Oracle Cloud Infrastructure(OCI)特集 編集部です。

以前にAWSにLibreswanをインストールしてOCIとVPN接続をしました。
せっかくですので転送速度を計測してみましたので興味のあるかた参考にしてみてください。

<実施方法>
 ・robocopyコマンドを使用して実施
 ・AWS側は WindowsServer2008
 ・OCI側は WindowsServer2016
 ・転送元と転送先でファイルのチェックサムを比較し、ファイルの破損が無い事を確認

■AWS(東京) → OCI(アッシュバーン)

C:\app\fciv>robocopy D:\test\ \\10.0.10.12\share\test\
-------------------------------------------------------------------------------
   ROBOCOPY     ::     Robust File Copy for Windows
-------------------------------------------------------------------------------
  Started : Sat Apr 20 03:35:12 2019
   Source : D:\test\
     Dest : \\10.0.10.12\share\test\
    Files : *.*
  Options : *.* /DCOPY:DA /COPY:DAT /R:1000000 /W:30
------------------------------------------------------------------------------
                           1    D:\test\
100%        New File              80.0 g        test_80GiB.dat
------------------------------------------------------------------------------
               Total    Copied   Skipped  Mismatch    FAILED    Extras
    Dirs :         1         0         1         0         0         0
   Files :         1         1         0         0         0         0
   Bytes :  80.000 g  80.000 g         0         0         0         0
   Times :   9:15:39   9:15:36                       0:00:00   0:00:02
   Speed :             2576744 Bytes/sec.
   Speed :             147.442 MegaBytes/min.
   Ended : Sat Apr 20 12:50:53 2019
C:\app\fciv>

■AWS(バージニア北部) → OCI(アッシュバーン)

C:\app\fciv>robocopy D:\test\ \\10.0.10.12\share\test\
-------------------------------------------------------------------------------
   ROBOCOPY     ::     Robust File Copy for Windows
-------------------------------------------------------------------------------
  Started : Sun Apr 21 03:14:31 2019
   Source : D:\test\
     Dest : \\10.0.10.12\share\test\
    Files : *.*
  Options : *.* /DCOPY:DA /COPY:DAT /R:1000000 /W:30
------------------------------------------------------------------------------
                           1    D:\test\
100%        New File              80.0 g        test_80GiB.dat
------------------------------------------------------------------------------
               Total    Copied   Skipped  Mismatch    FAILED    Extras
    Dirs :         1         0         1         0         0         0
   Files :         1         1         0         0         0         0
   Bytes :  80.000 g  80.000 g         0         0         0         0
   Times :   2:42:22   2:42:22                       0:00:00   0:00:00
   Speed :             8816884 Bytes/sec.
   Speed :             504.506 MegaBytes/min.
   Ended : Sun Apr 21 05:56:54 2019
C:\app\fciv>

どちらでもファイルが破損することなく転送できました。
距離のせいか想定どおりAWS(バージニア北部)のほうが速い結果(3.4倍程度)となりました。