On 2006-09-21 05:03, Roy Vestal wrote:
> Does anyone know how to keep a client from being able to restore data 
> from another client? Specifically Windows clients?
> Specifics:
> 
> I have 2 clients I'm testing with. Client1 is a linux machine, Client2 
> is a Windows machine. When I do a restore from Client2, it can see and 
> restore data from Client1 and vice versa.
> 
> How do we stop this?
> 
> I only want Client 1 getting to their data and Client2 getting to their 
> data.
> 
> TIA,
> 
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys -- and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users


It's not that easy to figure out, so I can give you an example
thats do work for me:

In bacula-dir.conf  or a client file included by bacula-dir.conf, make
ACL rules for each client.
Here is on of my clients:
Console {
  Name = linuxs4
  Password = "The password that linuxs4 will use"
  JobACL = linuxs4, linuxs4Restore
  ClientACL = linuxs4
  StorageACL = *all*
  PoolACL = Pool4
  ScheduleACL = *all*
  FileSetACL = linuxs4
  CatalogACL = "MyCatalog"
  CommandACL = run, restore , status, .status, quit,q , help, messages,m
}

On the client linuxs4  bconsole.conf

Director {
   Name = server-dir
   DIRport = 9101
   address = server.domain.se
   Password = "bogus, not the directors password"
}

Console {
    Name = linuxs4
    Password = "The password that linuxs4 will use"
}


In my case, I can still browse the catalog, I don't know how to handle
multiple catalogs yet.

/birger

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to