Installing SIPp on Amazon Linux 2 Instance

Installing SIPp on Amazon Linux 2 Instance
SHARE

'Simple bash script to download and compile SIPp on an Amazon Linux 2 instance. This can take a while to build because of the cmake dependency.'

yum groupinstall "Development Tools" -y yum install ncurses-compat-libs ncurses-devel sudo wget openssl-devel pcap libpcap-devel libnet gsl -y pushd /tmp wget https://cmake.org/files/v3.18/cmake-3.18.0.tar.gz tar -xvzf cmake-3.18.0.tar.gz cd cmake-3.18.0 ./bootstrap make sudo make install popd git clone https://github.com/SIPp/sipp.git cd sipp /usr/local/bin/cmake . -DUSE_PCAP=1 -DUSE_GSL=1 make