The following list summarizes the firewall ports that must be open to allow communication among CA Application Delivery Analysis components.
From management console
To CA Multi-Port Monitor on TCP 80 and 8080
From CA Multi-Port Monitor
To a management console on TCP 80, TCP 3308, and TCP 8381.
But the port 8080 is not listed in MTP when we have checked through netstat command.
HTTPD configuration for port 8080 is missing.
1. Netstat should list port 8080 as below.
[netqos@MTPServer ~]$ sudo netstat -nlp | grep 8080
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 2734/httpd
2. Apachectl command should show the configuration of http as below.
[netqos@ca-mtp conf.d]$ sudo apachectl -S
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:8080 localhost (/etc/httpd/conf.d/netqos-ipa.conf:91)
_default_:443 localhost (/etc/httpd/conf.d/ssl.conf:81)
Syntax OK
If 8080 is not present, you have to edit /etc/httpd/conf.d/netqos-ipa.conf (or /etc/httpd/conf.d/netqos-mtp.conf on 10.5 and earlier)
and add the below lines:
Listen 8080
<VirtualHost *:8080>
ServerName localhost
ServerAdmin root@localhost
DocumentRoot /opt/NetQoS/web/8080
Alias /getfiles /opt/NetQoS/web/8080/index.php
Alias /getfile /opt/NetQoS/web/8080/index.php
Alias /deletefile /opt/NetQoS/web/8080/index.php
Alias /SuperAgent/SASlaveConsole /opt/NetQoS/web/8080/SAService.php
Alias /SuperAgent/SAInvestigations /opt/NetQoS/web/8080/SAInvestigations.php
</VirtualHost>
3. Restart httpd service after this.
sudo service httpd restart
4. After this, check with "sudo netstat -nlp | grep 8080" command to see if port 8080 is listed.