Network
As with any enterprise application, changes might need to be made to firewall and other security systems in a production environment.
Either HTTPS or HTTP can be used for soap calls. By default, TIBCO MFT Command Center uses port 8443 for HTTPS and port 8080 for HTTP. These default values can be changed during the installation process.
On UNIX, TIBCO MFT Command Center must be installed under a root user if you configure TIBCO MFT Command Center to use ports below 1025. However, you can use the iptables command to redirect ports 443 and 80 to valid TIBCO MFT Command Center ports that do not require root access. For example, if you define port 8443 for HTTPS and port 8080 for HTTP, you can use the following iptables commands to redirect port 443 to 8443 and port 80 to 8080:
iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 443 -j REDIRECT --to-port 8443 iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080