To install and configure SNMP (Simple Network Management Protocol) on Windows 11, follow the steps below. SNMP is often used for monitoring and managing network devices, including integration with Auvik.
Install SNMP on Windows 11
Option 1: Using Settings (GUI)
- Open Settings
- Go to System
- Click on Optional Features.
- Scroll down and click View features under Add an optional feature.
- In the search box, type SNMP.
- Select:
- Simple Network Management Protocol (SNMP)
- WMI SNMP Provider
- Click Add and wait for the installation to complete.
Option 2: Using PowerShell (preferred for automation)
Run PowerShell as Administrator and enter:
Add-WindowsCapability -Online -Name "SNMP.Client~~~~0.0.1.0"
To verify installation:
Get-WindowsCapability -Online | Where-Object Name -like "*SNMP*"
Configure SNMP Service
- Press Win + R, type services.msc, and press Enter.
- Find and double-click SNMP Service.
- Set Startup type to Automatic.
- Under the Security tab:
- Accepted community names: Click Add.
- Enter a community string (e.g., public) and set the permission (e.g., READ ONLY).
- Accept SNMP packets from these hosts:
- Add Auvik Collector IP.
- Accepted community names: Click Add.
- Click Apply and then Start the service if it's not running.
Verify SNMP is Working
You can test SNMP using a tool like:
snmpwalk -v2c -c public localhost
Or use Auvik’s SNMP polling test tool within its discovery interface to confirm communication.
Note: Ensure that any firewall settings allow SNMP traffic on UDP ports 161 and 162.
Security Best Practices
- Avoid using the default public or private community strings in production.
- Restrict SNMP access to trusted IP addresses.
- Use SNMPv3 if available (not supported natively on Windows 11 without third-party tools).