Difference between revisions of "Netflow/FProbe/Build"

From Observer GigaFlow Support | VIAVI Solutions Inc.
Jump to: navigation, search
(Created page with " yum -y group install "Development Tools" yum -y install libpcap-devel mkdir /opt mkdir /opt/software cd /opt/software wget -O fprobe-1.1.tar http://builds.anuview.net/fprobe...")
 
 
Line 1: Line 1:
  
yum -y group install "Development Tools"
+
yum -y group install "Development Tools"
yum -y install libpcap-devel
+
yum -y install libpcap-devel
 
+
mkdir /opt
mkdir /opt
+
mkdir /opt/software
mkdir /opt/software
+
cd /opt/software
cd /opt/software
+
wget -O fprobe-1.1.tar http://builds.anuview.net/fprobe-1.1.tar
wget -O fprobe-1.1.tar http://builds.anuview.net/fprobe-1.1.tar
+
tar -vxf fprobe-1.1.tar
tar -vxf fprobe-1.1.tar
+
cd fprobe-1.1/
cd fprobe-1.1/
+
./configure
./configure
+
make install
make install
+
wget -O /etc/init.d/fprobed http://builds.anuview.net/fprobed
 
+
chmod 755 /etc/init.d/fprobed
wget -O /etc/init.d/fprobed http://builds.anuview.net/fprobed
+
#edit OPTIONS section of /etc/init.d/fprobed for your installation
chmod 755 /etc/init.d/fprobed
+
chkconfig --add fprobed
#edit OPTIONS section of /etc/init.d/fprobed for your installation
+
chkconfig --levels 345 fprobed on
chkconfig --add fprobed
+
/etc/init.d/fprobed start
chkconfig --levels 345 fprobed on
+
/etc/init.d/fprobed start
+

Latest revision as of 11:30, 30 May 2018

yum -y group install "Development Tools"
yum -y install libpcap-devel
mkdir /opt
mkdir /opt/software
cd /opt/software
wget -O fprobe-1.1.tar http://builds.anuview.net/fprobe-1.1.tar
tar -vxf fprobe-1.1.tar
cd fprobe-1.1/
./configure
make install
wget -O /etc/init.d/fprobed http://builds.anuview.net/fprobed
chmod 755 /etc/init.d/fprobed
#edit OPTIONS section of /etc/init.d/fprobed for your installation
chkconfig --add fprobed
chkconfig --levels 345 fprobed on
/etc/init.d/fprobed start