Custom internal communication: Difference between revisions

From wiki.comcert.com
Jump to navigation Jump to search
No edit summary
No edit summary
Line 47: Line 47:
Log into the nGeniusONE server using ssh and alter the serverprivate.properties and append the following line:
Log into the nGeniusONE server using ssh and alter the serverprivate.properties and append the following line:


#### Customized internal communication between nGS and IS
device.<InfiniStream_IP_address>.procman.port=7443
device.<InfiniStream_IP_address>.procman.port=7443


<pre># cd /opt/NetScout/rtm/bin
This approach gives the flexibility to use different configurations amongst the various InfiniStreams that are part of this environment.
# ./stop</pre>


In case the use of this custom port is required for every InfiniStream please use the following line:


&nbsp;
In the situation that ALL InfiniStream's should be contacted using this custom port


&nbsp;
BaseEngineManager.ssl.port=7443


&nbsp;
<pre># cd /opt/NetScout/rtm/bin
 
# vi serverprivate.properties</pre>
&nbsp;


&nbsp;
&nbsp;

Revision as of 11:14, 29 October 2019

Introduction

This procedure describes how to configure an alternative communication path between the nGeniusONE server and the Infinistream.

 

Procedure

Step 1:

Log into the nGeniusONE server and stop all nGenius processes

# cd /opt/NetScout/rtm/bin
# ./stop

Log into the InfiniStream and stop all nGenius processes

# isbin
# ./stopall

Step 2:

Drill a hole into the local firewall that is running on the InfiniStream. There are many different ways to accomplish this task. The below suggestion is a 'quick and dirty' one but it works perfectly well. Inserver the following line in the iptables configuration file, just before the REJECT rule. Port TCP/7443 is the custom port that we are using

# vi /etc/sysconfig/iptables

-A INPUT -p tcp -m state --state NEW -m tcp --dport 7443 -j ACCEPT

# service iptables restart

Step 3:

Log into the InfiniStream and alter the 'NSPROCPORT_SECURED' directive.

# isbin
# vi procmanager.env

NSPROCPORT_SECURED=7443

Step 4:

Log into nGeniusONE server using the web browser.

  1. Launch module "Device Configuration"
  2. Select the corresponding InfiniStream
  3. Change Communication Protocol to 'HTTPS'
  4. Change HTTP/HTTPS Port to '7443'

Step 5:

Log into the nGeniusONE server using ssh and alter the serverprivate.properties and append the following line:

device.<InfiniStream_IP_address>.procman.port=7443

This approach gives the flexibility to use different configurations amongst the various InfiniStreams that are part of this environment.

In case the use of this custom port is required for every InfiniStream please use the following line:

In the situation that ALL InfiniStream's should be contacted using this custom port

BaseEngineManager.ssl.port=7443

# cd /opt/NetScout/rtm/bin
# vi serverprivate.properties