Difference between revisions of "Sipp installation"

From Kolmisoft Wiki
Jump to navigationJump to search
(Created page with ' #! /bin/bash SIPP_VERSION="3.5.2" yum -y install gcc-c++ ncurses-devel openssl-devel libnet libnet-devel libpcap libpcap-devel lksctp-tools lksctp-tools-devel gsl gsl-deve…')
 
 
Line 2: Line 2:
   
   
  SIPP_VERSION="3.5.2"  
  SIPP_VERSION="3.5.2"  
 
  yum -y install gcc-c++ ncurses-devel openssl-devel libnet libnet-devel libpcap libpcap-devel lksctp-tools lksctp-tools-devel gsl gsl-devel wget
  yum -y install gcc-c++ ncurses-devel openssl-devel libnet libnet-devel libpcap libpcap-devel lksctp-tools lksctp-tools-devel gsl gsl-devel wget
   
   
Line 12: Line 12:
  make
  make
  make install
  make install
 
  # binary: /usr/local/bin/sipp
  # binary: /usr/local/bin/sipp

Latest revision as of 08:58, 14 December 2018

#! /bin/bash

SIPP_VERSION="3.5.2" 

yum -y install gcc-c++ ncurses-devel openssl-devel libnet libnet-devel libpcap libpcap-devel lksctp-tools lksctp-tools-devel gsl gsl-devel wget

cd /usr/src
wget https://github.com/SIPp/sipp/releases/download/v$SIPP_VERSION/sipp-$SIPP_VERSION.tar.gz
tar -xvzf sipp-$SIPP_VERSION.tar.gz
cd sipp-$SIPP_VERSION
./configure --with-sctp --with-pcap --with-openssl
make
make install

# binary: /usr/local/bin/sipp