It must be in the /FA/ directory and must be non-empty. The file is parsed at bootup.
The structure of the file is shown below:
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
|
XML header |
|
<oow_configuration version=”1”> |
|
|
|
OOW configuration |
|
|
<wild_cards> |
|
|
WILD_CARDS list definition. TCP clients that can always write |
|
|
|
<item> |
|
Definition of a single list item |
|
|
|
|
<ip [port="pppp"]> xxx.xxx.xxx.xxx </ip> |
IPV4 address definition. Port is optional |
|
|
|
|
<mask> xxx.xxx.xxx.xxx </mask> |
Mask to specify the address range. If missing, 255.255.255.255 is assumed. |
|
|
|
</item> |
|
|
|
|
</wild_cards> |
|
|
|
|
|
<black_list> |
|
|
BLACK_LIST definition. TCP clients that cannot open the session |
|
|
|
<item> |
|
Definition of a single list item |
|
|
|
|
<ip [port="pppp"]> xxx.xxx.xxx.xxx </ip> |
IPV4 address definition. Port is optional |
|
|
|
|
<mask> xxx.xxx.xxx.xxx </mask> |
Mask to specify the address range. If missing, 255.255.255.255 is assumed. |
|
|
|
</item> |
|
|
|
|
</black_list> |
|
|
|
|
|
<white_list> |
|
|
WHITE_LIST list definition. TCP clients that can open the session |
|
|
|
<item> |
|
Definition of a single list item |
|
|
|
|
<ip [port="pppp"]> xxx.xxx.xxx.xxx </ip> |
IPV4 address definition. Port is optional |
|
|
|
|
<mask> xxx.xxx.xxx.xxx </mask> |
Mask to specify the address range. If missing, 255.255.255.255 is assumed. |
|
|
|
</item> |
|
|
|
|
</white_list> |
|
|
|
|
</oow_configuration> |
|
|
|
|