Custom internal communication: Difference between revisions

From wiki.comcert.com
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:
<pre># isbin
<pre># isbin
# ./stopall</pre>
# ./stopall</pre>
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
<pre># vi /etc/sysconfig/iptables</pre>
-A INPUT -p tcp -m state --state NEW -m tcp --dport 7443 -j ACCEPT
<pre># service iptables restart</pre>


&nbsp;
&nbsp;


Drill a hole into the local firewall that is running on the InfiniStream
&nbsp;
 
&nbsp;
 
&nbsp;

Revision as of 10:52, 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