Welcome to the Icinga 2 PowerShell Module - the most flexible and easy way to configure and install Icinga 2 Agents on Windows. If you are new to this module, you might want to read the installation guide first.
In the current PowerShell Version distributed by Microsoft, it could appear that TLS 1.2 is not activated within your environment by default. This will result in failing connections to the Icinga Director for example. As a workaround, you will have to set the SSL Protocol manually within your PowerShell environment or within your script.
Example:
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11";
This will enable support for TLS Version 1.1 and 1.2. Once this issue is fixed by Microsoft, this workaround is no longer needed. To test if your system is affected by this, you can try to connect to GitHub via PowerShell over HTTPS
Invoke-WebRequest https://github.com
If this call works without SSL errors, you are save to go. In case you run into an SSL error, you will have to use the above workaround within your session. Afterwards the connection will work.
Please take a look on the following content to get to know the possibilities of the module including examples on how to use it.
- Introduction
- Installation Guide
- Basic Arguments
- Icinga Director Arguments
- NSClient++ Arguments
- Icinga 2 CA-Proxy
- Full Automation with the Icinga Director
- Example Configuration
- Available Placeholders
- Uninstalling the Icinga 2 Agent
- Writing custom extensions
- Troubleshooting
- Changelog
The Icinga 2 PowerShell module is an Open Source project and lives from your contributions. No matter whether these are feature requests, issues, translations, documentation or code.
- Please check whether a related issue alredy exists on our Issue Tracker
- Send a Pull Request
- The master branche shall never be corrupt!