Is there a report of ports configured by services?
Hi,
Is there a report of ports configured by services?
We have a lot of services, across multiple namespaces, and it would be useful to know what ports are configured, even for disabled services.
Stephen
Windows analogue exists as well.
Hi Stephen,
This can be done with a custom query. See below for some sample code that takes the form of a stored procedure. This stored procedure only handles items in a single namespace, but you could adapt it to run across multiple namespaces.
To call the stored procedure from a SQL query tool:
call Sample.Util_SettingsByName('Port')
The parameter you pass is the name (or names, comma-separated) of the setting(s) you want to get a list of. Leave it blank to get a list of all settings.
Best,
Marc