Skip to content

Instantly share code, notes, and snippets.

@2matzzz
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2matzzz/38f85732f6dde65c107b to your computer and use it in GitHub Desktop.
Save 2matzzz/38f85732f6dde65c107b to your computer and use it in GitHub Desktop.

AWS Network performance test (in ap-northeast-1)

Jan 11, 2015

Env

Sender/Receiver

  • c3.8xlarge
  • Amazon Linux AMI 2014.09.1 ami-4985b048
  • iperf-2.0.5-11.el6.x86_64
  • VPC

ping

ap-northeast-1c <-> ap-northeast-1a

[ec2-user@ip-10-14-1-159 ~]$ ping 10.14.0.204
PING 10.14.0.204 (10.14.0.204) 56(84) bytes of data.
64 bytes from 10.14.0.204: icmp_seq=1 ttl=64 time=2.03 ms
64 bytes from 10.14.0.204: icmp_seq=2 ttl=64 time=1.96 ms
64 bytes from 10.14.0.204: icmp_seq=3 ttl=64 time=1.93 ms
64 bytes from 10.14.0.204: icmp_seq=4 ttl=64 time=1.96 ms
64 bytes from 10.14.0.204: icmp_seq=5 ttl=64 time=1.93 ms

ap-northeast-1c <-> ap-northeast-1c

[ec2-user@ip-10-14-1-159 ~]$ ping 10.14.1.97
PING 10.14.1.97 (10.14.1.97) 56(84) bytes of data.
64 bytes from 10.14.1.97: icmp_seq=1 ttl=64 time=0.223 ms
64 bytes from 10.14.1.97: icmp_seq=2 ttl=64 time=0.099 ms
64 bytes from 10.14.1.97: icmp_seq=3 ttl=64 time=0.088 ms
64 bytes from 10.14.1.97: icmp_seq=4 ttl=64 time=0.093 ms
64 bytes from 10.14.1.97: icmp_seq=5 ttl=64 time=0.084 ms

iperf

TCP

ap-northeast-1c <-> ap-northeast-1c

[ec2-user@ip-10-14-1-97 ~]$ iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[  4] local 10.14.1.97 port 5001 connected with 10.14.1.159 port 36525
[ ID] Interval       Transfer     Bandwidth
[  4]  0.0-10.0 sec  11.2 GBytes  9.64 Gbits/sec

[ec2-user@ip-10-14-1-159 ~]$ iperf -c 10.14.1.97
------------------------------------------------------------
Client connecting to 10.14.1.97, TCP port 5001
TCP window size:  325 KByte (default)
------------------------------------------------------------
[  3] local 10.14.1.159 port 36525 connected with 10.14.1.97 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-10.0 sec  11.2 GBytes  9.64 Gbits/sec

ap-northeast-1c <-> ap-northeast-1a

[ec2-user@ip-10-14-1-97 ~]$ iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[  4] local 10.14.1.97 port 5001 connected with 10.14.0.204 port 52539
[ ID] Interval       Transfer     Bandwidth
[  4]  0.0-10.0 sec  5.98 GBytes  5.13 Gbits/sec

[ec2-user@ip-10-14-0-204 ~]$ iperf -c 10.14.1.97
------------------------------------------------------------
Client connecting to 10.14.1.97, TCP port 5001
TCP window size:  325 KByte (default)
------------------------------------------------------------
[  3] local 10.14.0.204 port 52539 connected with 10.14.1.97 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-10.0 sec  5.98 GBytes  5.14 Gbits/sec
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment