From 67257cea07d37e5a07858e73c3641c070630bac8 Mon Sep 17 00:00:00 2001 From: Cedric Roux <cedric.roux@eurecom.fr> Date: Wed, 10 Jul 2013 15:59:37 +0000 Subject: [PATCH] - Readme for PGM library installation git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4017 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair1/SIMULATION/ETH_TRANSPORT/README.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 openair1/SIMULATION/ETH_TRANSPORT/README.txt diff --git a/openair1/SIMULATION/ETH_TRANSPORT/README.txt b/openair1/SIMULATION/ETH_TRANSPORT/README.txt new file mode 100644 index 0000000000..0151a18f77 --- /dev/null +++ b/openair1/SIMULATION/ETH_TRANSPORT/README.txt @@ -0,0 +1,20 @@ +For reliable UDP multicast, the libpgm-dev should be installed on the machines, +otherwise the old multicast method using simply UDP will be used, resulting in +packet loss and unexpected behaviour of oaisim. + +To compile OAI with PGM: + +For Ubuntu 12.04 and earliers: + sudo apt-get install libpgm-dev + is sufficient + +For Ubuntu older than 12.04: + +wget http://openpgm.googlecode.com/files/libpgm-5.1.118.tar.gz +tar xvf libpgm-5.1.118.tar.gz +cd libpgm-5.1.118/openpgm/pgm +./configure +make +sudo make install + +We have to clean oaisim compilation and re-compile -- GitLab