Skip to content
Markus Kraus edited this page Mar 22, 2020 · 2 revisions

Introduction

Welcome to the VeeamNetAppToolkit wiki!

Prerequirements

PowerShell Modules / SnapIns

NetApp

  • NetApp DataONTAP PowerShell Module
Import-Module DataONTAP
Connect-NcController 10.0.2.11

Veeam

  • Veeam PowerShell SnapIn
Add-PSSnapin VeeamPSSnapin
Connect-VBRServer -Server localhost

Sample Scripts

New-VeeamNetappVolume

Create a new NetApp NFS Volume and add the Export as NFS Server to Veeam.

New-VeeamNetappVolume -NFS -IP 10.0.2.16 -ExportPolicyName veeam -VolName vol_nfs_01 -VolSize 1 `
-VeeamCacheRepo 'Default Backup Repository' -NetAppAggregate aggr1_data01 -NetAppVserver svm_veeam_nfs `
-NetAppInterface svm_veeam_nfs_nfs_lif1 -NetAppSnapshotPolicy default

Create a new NetApp NFS Volume, add the Export as NFS Server to Veeam and create a new Backup Job for the root.

New-VeeamNetappVolume -NFS -IP 10.0.2.16 -ExportPolicyName veeam -VolName vol_nfs_01 -VolSize 1 `
-CreateBackupJob -VeeamBackupRepo 'Default Backup Repository' `
-VeeamCacheRepo 'Default Backup Repository' -NetAppAggregate aggr1_data01 -NetAppVserver svm_veeam_nfs `
-NetAppInterface svm_veeam_nfs_nfs_lif1 -NetAppSnapshotPolicy default

Wiki Table of Contents

Clone this wiki locally