From 9d0d4bbcd47d22a11df4c2e232e68827e3089921 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20T=C3=BCxen?= <tuexen@fh-muenster.de> Date: Sun, 25 Sep 2016 14:34:30 +0200 Subject: [PATCH] Update README.md --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 21a85bd8..262fbd3d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,34 @@ A fork of [packetdrill](https://code.google.com/p/packetdrill/) which adds suppo and generic bugfixes, espcially several fixes required to get packetdrill working on FreeBSD. +## Information There are some papers ([;login: October 2013](https://www.usenix.org/system/files/login/articles/10_cardwell-online.pdf), [USENIX ATC '13](https://www.usenix.org/system/files/conference/atc13/atc13-cardwell.pdf)) and a presentation ([ICCRG IETF87](https://www.ietf.org/proceedings/87/slides/slides-87-iccrg-1.pdf)) describing packetdrill. +## Installation +### Linux (Ubuntu) +For installing the required packages run: +``` +sudo apt-get install ??? +``` +Then download the sources, compile them and install the files: +``` +git clone https://github.com/nplab/packetdrill.git +cd packetdrill/gtests/net/packetdrill/ +./configure +gmake +``` +### FreeBSD +For installing the required packages run: +``` +sudo pkg install ??? +``` +Then download the sources, compile them and install the files: +``` +git clone https://github.com/nplab/packetdrill.git +cd packetdrill/gtests/net/packetdrill/ +./configure +gmake +``` +## Continous Integration The status of continous integration testing is available from [grid](http://212.201.121.110:38010/grid) and [waterfall](http://212.201.121.110:38010/waterfall). If you are only interested in a single branch, just append `?branch=BRANCHNAME` to the URL, for example [waterfall](http://212.201.121.110:38010/waterfall?branch=master). -- GitLab