--- title: "Get-VBRSNMPOptions" description: "This cmdlet returns global SNMP settings." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrsnmpoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Veeam Backup & Replication Settings > Specifying SNMP Settings > Get-VBRSNMPOptions" dateModified: "2026-08-19" --- # Get-VBRSNMPOptions ## Short Description Returns global SNMP settings. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRSNMPOptions [] ``` ## Detailed Description This cmdlet returns global SNMP settings. ## Parameters `` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRSNMPOptions` object that defines global SNMP settings. ## Examples ::: example ### Getting Global SNMP Settings This example shows how to get global SNMP settings that are set up in your backup infrastructure. ``` $options = Get-VBRSNMPOptions $options.Receiver ReceiverIP ReceiverPort CommunityString ---------- ------------ --------------- 172.17.53.28 22 public 172.17.53.28 22 public 172.17.53.28 22 public ``` Perform the following steps: 1. Run the `Get-VBRSNMPOptions` cmdlet. Save the result to the `$options` variable. 2. Provide the `Receiver` property of the `$options` variable. The cmdlet output will contain the following details on the global SNMP settings: `ReceiverIP`, `ReceiverPort` and `CommunityString`. :::