Forum Discussion

sushilyadav088's avatar
10 years ago

List of all the clients being backed up in Netbackup

Hello All,

 

I need to create a list of the clients being backed up via Tape Drive and Disks in netbackup. Can you please tell me how can i do that?

 

Thanks,

  • bpplclients -allunique -U This will give you a list of all clients being backed up to any of STUs in the environment.

4 Replies

  • Look at the Imges on Disk report, and Images on Tape report, under reports in the GUI.

    Other option is OpsCenter, if you are using it.

     

  • bpplclients -allunique -U This will give you a list of all clients being backed up to any of STUs in the environment.
  • ... & if you go that route, you can feed the output from the bpplclients command into bppllist for a breakdown of what STU is utilised (down to the schedule level if required).

    e,g,

    for CLIENT in `bpplclients -allunique -noheader|awk '{print $3}'`
    do
    echo "Client: $CLIENT"
    bppllist -byclient $CLIENT -U | egrep "Policy Name|Residence:|Schedule"
    echo
    done

  • Maybe this will help too:

    https://www-secure.symantec.com/connect/forums/mastermediaclients#comment-11062071