Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Viewing client include/exclude lists

Status
Not open for further replies.
Jul 3, 2003
18
0
0
US
Hi,

I'm trying to set up an audit trail for tracking the policy definitions in our environment. Is it possible to view the defined client include/exclude lists (exclude_list.policy_name) from the masterGUI?

Failing that, is it possible to run a command on the master to return the lists from the clients?

Many Thanks in advance,

Tommojunior


 
I don't think there is a way to view these files via NBU...

There is a way to do it via Unix:

Setup ssh access to all your systems from the NBU master...

Create a flat file with the name(s) of your systems one per line. Call it "SYSTEMS"

type in the following at the command prompt:

for i in `cat SYSTEMS`
do
echo "************** $i **************"
ssh $i cat /usr/openv/netbackup/exclude_list
done

and hopefully all will be well again!


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top