--- title: "New-VBRSNMPReceiver" description: "This cmdlet creates the VBRSNMPReceiver object that defines recipients SNMP settings. You can define settings for 5 different recipients." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrsnmpreceiver.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Veeam Backup & Replication Settings > Specifying SNMP Settings > New-VBRSNMPReceiver" dateModified: "2026-08-19" --- # New-VBRSNMPReceiver ## Short Description Defines SNMP recipient settings. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRSNMPReceiver -ReceiverIP [-ReceiverPort ] [-CommunityString ] [] ``` ## Detailed Description This cmdlet creates the `VBRSNMPReceiver` object that defines recipients SNMP settings. You can define settings for 5 different recipients. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

CommunityString

Specifies the community identifier.

String

False

Named

False

ReceiverIP

Specifies an IP addresses of the SNMP recipient.

String

True

Named

False

ReceiverPort

Specifies the port number that Veeam Backup & Replication will use to send messages.

Int32

False

Named

False

`` 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 `VBRSNMPReceiver` object that defines SNMP recepients settings. ## Examples ::: example ### Defining SNMP Recepients Settings This command defines the following SNMP recepients settings: - An IP addresses of the SNMP recipient is set to `172.17.53.28`. - The port that Veeam Backup & Replication will use to send messages is set to `22`. - The community identifier is set to `public`. ``` New-VBRSNMPReceiver -ReceiverIP 172.17.53.28 -ReceiverPort 22 -CommunityString public ``` :::