New-VBRKerberosPermission
Short Description
Creates a new permission to access an application backup repository NFS share with Kerberos credentials.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRKerberosPermission -Username <String> -Mode {Read | ReadWrite} [-Description <String>] [<CommonParameters>] |
Detailed Description
This cmdlet creates a new permission to access the NFS share of an application backup repository with Kerberos credentials.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Username |
Specifies the name of the user that you want to grant access to the NFS share. |
String |
True |
Named |
False |
|
Mode |
Specifies the set of actions the permission allows:
|
VBRPermissionMode |
True |
Named |
False |
|
Description |
Specifies the description for the Kerberos permission. |
String |
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRApplicationBackupRepositoryKerberosPermission object that contains information about the Kerberos permission for the application backup repository NFS share.
Examples
Creating Kerberos Permission to Access NFS Share
This example shows how to create a read/write Kerberos permission for the DOMAIN\BackupUser account to access the NFS share of an application backup repository.
|
$permission = New-VBRKerberosPermission -Username "DOMAIN\BackupUser" -Mode ReadWrite -Description "Kerberos permission for backup access" |