Skip to content

Commit 25983bc

Browse files
authored
Merge pull request #8840 from wazuh/enhancement/8838-update-syscollector-ports-default-configuration
Set `all` ports attribute to `yes` value.
2 parents 37b117f + e184ddd commit 25983bc

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ All notable changes to this project will be documented in this file.
2222
- Added instructions for retrieving the correct Puppet agent node name and to set the ``<PUPPET_AGENT_NODE_NAME>`` placeholder in the manifest. ([#8664](https://github.com/wazuh/wazuh-documentation/pull/8664))
2323
- Updated the *Deployment on Docker* section. ([#8688](https://github.com/wazuh/wazuh-documentation/pull/8688))
2424
- Updated default values for `agents_disconnection_time` and `notify_time`. ([#8769](https://github.com/wazuh/wazuh-documentation/pull/8769))
25+
- Updated the default value of the `all` attribute in the `ports` Syscollector configuration option. ([#8840](https://github.com/wazuh/wazuh-documentation/pull/8840))
2526

2627
## [v4.12.0]
2728

source/compliance/nist/vulnerability-detection.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ Windows endpoint
4040
<os>yes</os>
4141
<network>yes</network>
4242
<packages>yes</packages>
43-
<ports all="no">yes</ports>
43+
<ports all="yes">yes</ports>
4444
<processes>yes</processes>
45-
45+
4646
<!-- Database synchronization settings -->
4747
<synchronization>
4848
<max_eps>10</max_eps>

source/compliance/tsc/common-criteria/cc6.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Wazuh meets the architecture, infrastructure, and security software aspects of t
3030
<os>yes</os>
3131
<network>yes</network>
3232
<packages>yes</packages>
33-
<ports all="no">yes</ports>
33+
<ports all="yes">yes</ports>
3434
<processes>yes</processes>
3535
3636
<!-- Database synchronization settings -->

source/user-manual/capabilities/system-inventory/configuration.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The block below is the default Syscollector configuration present in the Wazuh a
2828
<os>yes</os>
2929
<network>yes</network>
3030
<packages>yes</packages>
31-
<ports all="no">yes</ports>
31+
<ports all="yes">yes</ports>
3232
<processes>yes</processes>
3333
3434
<!-- Database synchronization settings -->
@@ -49,7 +49,12 @@ Where:
4949
- ``<os>`` option enables or disables the operating system scan. The default value is ``yes``. The allowed values are ``yes`` and ``no``.
5050
- ``<network>`` enables or disables the network scan. The default value is ``yes``. The allowed values are ``yes`` and ``no``.
5151
- ``<packages>`` enables or disables the scanning of packages with a default value of ``yes``. The allowed values are ``yes`` and ``no``.
52-
- ``<ports all="no">`` enables or disables the port scan. The default value is ``yes``. You can configure two allowed values of ``yes`` and ``no``. This option also accepts an additional parameter ``all``, with which you can restrict the scan to only listening ports using ``<ports all="no">``. If you want Syscollector to scan all ports, then you change the value to ``yes``.
52+
- ``<ports>`` enables or disables the port scan. Default is ``yes``. Allowed values are ``yes`` and ``no``.
53+
54+
You can also use the ``all`` attribute to target all ports or only listening ports:
55+
56+
- ``<ports all="yes">`` all ports.
57+
- ``<ports all="no">`` only listening ports.
5358
- ``<processes>`` enables or disables the scanning for running processes on a monitored endpoint. The default value is ``yes``. The allowed values are ``yes`` and ``no``.
5459
- ``<max_eps>`` allows you to set the maximum event reporting throughput. The default value is 10, which signifies 10 events per second. The allowed value is an Integer number between 0 and 1000000.
5560

source/user-manual/capabilities/vulnerability-detection/configuring-scans.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The :doc:`Syscollector module </user-manual/capabilities/system-inventory/index>
4242
<network>yes</network>
4343
<packages>yes</packages>
4444
<hotfixes>yes</hotfixes>
45-
<ports all="no">yes</ports>
45+
<ports all="yes">yes</ports>
4646
<processes>yes</processes>
4747
4848
<!-- Database synchronization settings -->

source/user-manual/reference/ossec-conf/wodle-syscollector.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Example of configuration
223223
<os>yes</os>
224224
<network>yes</network>
225225
<packages>yes</packages>
226-
<ports all="no">yes</ports>
226+
<ports all="yes">yes</ports>
227227
<processes>yes</processes>
228228
229229
<!-- Database synchronization settings -->

0 commit comments

Comments
 (0)