Difference between revisions of "GigaFlow Startup Parameters"

From Observer GigaFlow Support | VIAVI Solutions Inc.
Jump to: navigation, search
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:NetFlow Notes]]
+
[[Category:NetFlow]]
[[Category:Technical Notes]]
+
[[Category:Installation]]
 +
On linux, you can edit the /opt/ros/resources/start file to change various system parameters.
 +
 
 +
On windows, you can change the gigaflow.ini file in the Gigaflow/Flow folder to change various system parameters.
 +
 
 +
In an IDE, you can add a running parameter
 +
 
 +
Once change, restart the gigaflow service for them to take effect.
 +
 
 +
An example of an edited start file would be
 +
/opt/java/bin/java -Xms364M -Xmx3768M -Djava.net.preferIPv4Stack=true -Djava.library.path=./dist/libs/ -Djava.awt.headless=true -XX:+HeapDumpOnOutOfMemoryError -classpath ./dist/ROS.jar:./dist/libs/*  ros.ROS "localpcap=/opt/ros/pcaps/ipv6.pcap|490" httpport=80 > /dev/null &
 +
echo $! > ros.pid
 +
 
 +
 
 
Enable local playback of pcap into application fileLocation|delayBetweenPacketsInMS
 
Enable local playback of pcap into application fileLocation|delayBetweenPacketsInMS
 
  localpcap=c:/temp/demo_102017_1_To191.pcap|100
 
  localpcap=c:/temp/demo_102017_1_To191.pcap|100
Line 10: Line 23:
 
Changing the database
 
Changing the database
 
  connectionURL=jdbc:postgresql://localhost/myipfix
 
  connectionURL=jdbc:postgresql://localhost/myipfix
 +
 +
Changing http and https port
 +
httpport=7902
 +
httpsport=8902
 +
 +
Changing cross site security
 +
samesite=none|lax|strict
 +
samesitesecure=true|false
 +
 +
X-FRAME-OPTIONS
 +
X-FRAME-OPTIONS=SAMEORIGIN
 +
X-FRAME-OPTIONS=DENY
 +
 +
 +
IDE Example
 +
<gallery>
 +
File:Idelocalpcap.png|IDE
 +
</gallery>

Revision as of 08:10, 5 October 2022

On linux, you can edit the /opt/ros/resources/start file to change various system parameters.

On windows, you can change the gigaflow.ini file in the Gigaflow/Flow folder to change various system parameters.

In an IDE, you can add a running parameter

Once change, restart the gigaflow service for them to take effect.

An example of an edited start file would be

/opt/java/bin/java -Xms364M -Xmx3768M -Djava.net.preferIPv4Stack=true -Djava.library.path=./dist/libs/ -Djava.awt.headless=true -XX:+HeapDumpOnOutOfMemoryError -classpath ./dist/ROS.jar:./dist/libs/*  ros.ROS "localpcap=/opt/ros/pcaps/ipv6.pcap|490" httpport=80 > /dev/null &
echo $! > ros.pid


Enable local playback of pcap into application fileLocation|delayBetweenPacketsInMS

localpcap=c:/temp/demo_102017_1_To191.pcap|100

Change global arp/cam polling ntervals

periodPolledSNMPARP=1800000 //30 minutes
periodPolledSNMPCAM=1800000

Changing the database

connectionURL=jdbc:postgresql://localhost/myipfix

Changing http and https port

httpport=7902
httpsport=8902

Changing cross site security

samesite=none|lax|strict
samesitesecure=true|false

X-FRAME-OPTIONS

X-FRAME-OPTIONS=SAMEORIGIN
X-FRAME-OPTIONS=DENY


IDE Example