Views:

To disable HTTP access to the SPLX 3.0 web console:

  1. Open a terminal on the SPLX 3.0 server.
  2. Use "VI" to open the splxhttpd.conf file:

    vi /opt/TrendMicro/SProtectLinux/SPLX.httpd/conf/splxhttpd.conf

  3. Search for the "14942" string. The result should be something like:

    --------------
    # Port: The port to which the standalone server listens. For
    # ports < 1023, you will need httpd to be run as root initially.
    #
    Port 14942

    ##
    ##  SSL Support
    ##
    ##  When we also provide SSL we have to listen to the
    ##  standard HTTP port (see above) and to the HTTPS port
    ##
    ###<IfDefine SSL>
    Listen 14942
    Listen 14943
    ###</IfDefine>
    --------------

  4. Change it to:

    --------------
    # Port: The port to which the standalone server listens. For
    # ports < 1023, you will need httpd to be run as root initially.
    #
    Port 14943

    ##
    ##  SSL Support
    ##
    ##  When we also provide SSL we have to listen to the
    ##  standard HTTP port (see above) and to the HTTPS port
    ##
    ###<IfDefine SSL>
    #Listen 14942
    Listen 14943
    ###</IfDefine>
    --------------
  5. Write and quit VI with ":wq"
  6. Restart the splxhttpd service:

    /etc/init.d/splxhttpd restart