Limiting the Remote Access to the Web Application

Optionally, you can limit the IP addresses and host names that are allowed to remotely access the web application. The default is to allow all the IP addresses and host names in a network to access the web application.
To limit the remote access to the web application:
  1. On your local drive, go to C:\RicohAutoColorAdjuster\Tomcat\conf
  2. In the server.xml file, add the following <Valve> entry inside the <Engine> entry:
    ...
    <Engine name="Catalina" defaultHost="localhost">
    ...
    <Valve className="org.apache.catalina.valves.RemoteHostValve"
    allow="10\.1\.1\.1|10\.1\.1\.23|10\.1\.1\.44|
    my-computer\.my-domain\.com"/>
    ...
    </Engine>
    
      Note:
    • Configure the allow string as follows:
      • Type the host that you allow to remotely access the web application. The host can be either an IP address or a host name. Use a backslash before each dot. For example, if your allowed IP address is 10.1.1.1, type 10\.1\.1\.1.
      • If you allow multiple hosts to access the web application, separate them by a pipe symbol. For example, if your allowed hosts are 10.1.1.1, 10.1.1.23, 10.1.1.44, my-computer.my-domain.com, type 10\.1\.1\.1 | 10\.1\.1\.23 | 10\.1\.1\.44 |my-computer\.my-domain\.com. Replace my-computer and my-domain.com with the name of the computer and respectively domain name given to your network.
      Important:
    • If you limit the access to some IP addresses or host names you define, make sure that you can still access the web application remotely. Therefore, include the IP address or host name of the computer connected to the scanner in the allow string.
  3. Save the server.xml file.
  4. For the changes to take effect, restart the RICOH Auto Color Adjuster Web Server.
    1. In the Windows search box on the taskbar, type services, then select Services from the menu.

      You should see the RICOH Auto Color Adjuster Web Server listed in the Services dialog.

    2. Right-click the RICOH Auto Color Adjuster Web Server and select Stop.
    3. Right-click the RICOH Auto Color Adjuster Web Server and select Start.
For more information about the security of the web server, see the Apache Tomcat 10.1.xx documentation: Apache Tomcat 10.1.xx documentation (https://tomcat.apache.org/tomcat-10.1-doc/index.html).