From 937fa6ca7ee951f4bda9dd681a3b100592edc52b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= <henrik.tjader@gmail.com> Date: Fri, 30 Jan 2015 09:08:22 +0100 Subject: [PATCH] Added README with source and basic usage --- README | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..b0ed13f --- /dev/null +++ b/README @@ -0,0 +1,30 @@ +A Two-Way Active Measurement Protocol + +Read the RFC: http://tools.ietf.org/html/rfc5357 + +Heavily based on https://packetblog.wordpress.com/2012/08/24/udp-packet-measurement/ +by Roman Arcea. + + +Installation: + + None, run the files provided. + +Requirements: + + python2 + +Usage instructions: + + On one machine open UDP_client_server.py, change the IP addresses, ports, packet size, etc. + + On the other machine do the same with the UDP_reflector.py + + As default they point to localhost (IPv6), so it is possible to run it on loopback. + + Start UDP_reflector.py first: python UDP_reflector.py + Start UDP_client_server.py: python UDP_client_server.py + + Stop with CTRL+C + + A .csv file will be generated containing statistics. -- GitLab