File Name
discovery_config.xml |
Description
This file defines discovery behavior.
Repository server information
File Location
[Windows]
<Systemwalker Software Configuration Manager installation directory>\SWCFMGM\config |
[Linux]
/etc/opt/FJSVcfmgm/config |
File Format
<?xml version="1.0" encoding="utf-8"?> <Discovery> <RepositoryServers> <WSUS> ... omitted (See "WSUS server information") </WSUS> </RepositoryServers> </Discovery>
<?xml version="1.0" encoding="utf-8"?> <Discovery> <RepositoryServers> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">10.10.10.10</entry> </WSUS> </RepositoryServers> </Discovery>
Parameters
This parameter sets up information relating to the repository server.
Multiple specifications: Not possible
This parameter sets up information for the WSUS server.
Multiple specifications: Possible
The contents of each key are as follows:
Key | Meaning | Value | Initial value | Default value | Remarks |
---|---|---|---|---|---|
enable-wsus (*1) | This key enables the WSUS server as a repository server. |
| true | false | |
ipaddress (*1) | This key specifies the IP address of the WSUS server. Note: If this key is empty, the repository server will be disabled. | IP address Example: 10.10.10.10 | - | Empty |
*1: The value specified at setup is applied.
Cautions
Use UTF-8 as the character encoding for the file.
Changes to the definition are applied immediately.
Example
Using a WSUS server (10.10.10.10) as a repository server
<?xml version="1.0" encoding="utf-8"?> <Discovery> <RepositoryServers> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">10.10.10.10</entry> </WSUS> </RepositoryServers> </Discovery>
Using multiple WSUS servers (10.10.10.10 and 11.11.11.11) as repository servers
<?xml version="1.0" encoding="utf-8"?> <Discovery> <RepositoryServers> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">10.10.10.10</entry> </WSUS> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">11.11.11.11</entry> </WSUS> </RepositoryServers> </Discovery>
Stopping the use of the WSUS server (10.10.10.10)
<?xml version="1.0" encoding="utf-8"?> <Discovery> <RepositoryServers> <WSUS> <entry key="enable-wsus">false</entry> <entry key="ipaddress">10.10.10.10</entry> </WSUS> </RepositoryServers> </Discovery>