Create a trusted host list file.The host list file contains a list of the host IP addresses that are either trusted or denied by the RMI gateway. A typical way is to define a list of trusted host addresses and let all others be denied access.
The host file name and location are user-created, but it is recommended you create the file in the SERVER_INSTALL\java\properties\ directory. You can create the
file using any ASCII text editor.
Note:
The following rules apply:
- The list contains either trusted or denied host IP addresses, but not both. A list of trusted hosts will deny access to any host not listed. A list of denied hosts will allow access to any host not in the denied list.
- There should be a line break after each line.
- The # character can be used to indicate a comment.
- The * character can be used to indicate all trusted hosts, but cannot be used to indicate denied hosts.
- For a list of denied IP addresses, the word deny must be in lowercase.
- Only numerical IP addresses are accepted.
For example, a file containing trusted machines named 10.1.5.60, 10.1.5.61,
and 10.1.5.62 would look like this:
# Trusted hosts
10.1.5.60
10.1.5.61
10.1.5.62
Conversely, to deny access from hosts, the file would contain the keyword deny and then list the denied IP addresses. Below is an example where the hosts 10.1.5.60 and 10.1.5.61 are denied:
# Deny hosts
deny
10.1.5.60
10.1.5.61
In the example above, any host except 10.1.5.60 and 10.1.5.61 would be
granted access.
Note:
Whenever you make a change to the host list file, you must restart the ENOVIA Live Collaboration Server.