Hello,

I intend to switch my small Bacula setup to Bareos because of the
addition of the storage to storage copy jobs. After backing up on a
local network I want to copy the data to an off-site location. All my
Bareos components are talking to each other through TLS. I set up a
test, but I can't get the copy job to actually work. After a copy job is
started, the two storage daemons seem to authenticate each other and
then absolutely nothing happens anymore. I'll post my configuration in
hope of advice how to make it run.

The machine Alpha is the backup server including the Bareos director and
on-site storage daemon. Beta is a system to be backed up and therefore
includes a Bareos file daemon. Gamma is supposed to be the off-site
backup storage consists of yet another Bareos storage daemon. The
configurations for all the systems and debug log files for both storage
daemons just after the copy job is executed on the director are attached
to this mail. Note that some sections have been modified for privacy
and security reasons.
Director {                            # define myself
  Name = alpha-dir
  QueryFile = "/usr/lib/bareos/scripts/query.sql"
  Maximum Concurrent Jobs = 1
  Password = "SECRET"         # Console password
  Messages = Daemon

  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/alpha-dir.crt.pem
  TLS Key = /etc/bareos/x509/alpha-dir.key.pem
  TLS Verify Peer = yes
  TLS CA Certificate File = /etc/bareos/x509/bareos-user-ca.crt.pem
  TLS Certificate Revocation List = /etc/bareos/x509/bareos-user-ca.crl.pem
  TLS DH File = /etc/bareos/x509/alpha-dir.dh4096.pem

  # remove comment in next line to load plugins from specified directory
  # Plugin Directory = /usr/lib/bareos/plugins
}

Catalog {
  Name = bareos
  # Uncomment the following lines if you want the dbi driver
  # dbdriver = "dbi:postgresql"; dbaddress = 127.0.0.1; dbport =  
  #dbdriver = "postgresql"
  dbdriver = "postgresql"
  dbname = "bareos"
  dbuser = "bareos"
}

Messages {
  Name = Standard
  mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bareos\) \<%r\>\" -s 
\"Bareos: %t %e of %c %l\" %r"
  operatorcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bareos\) \<%r\>\" -s 
\"Bareos: Intervention needed for %j\" %r"
  mail = root@localhost = all, !skipped
  operator = root@localhost = mount
  console = all, !skipped, !saved
  append = "/var/log/bareos/bareos.log" = all, !skipped
  catalog = all
}

Messages {
  Name = Daemon
  mailcommand = "/usr/sbin/bsmtp -h localhost -f \"\(Bareos\) \<%r\>\" -s 
\"Bareos daemon message\" %r"
  mail = root@localhost = all, !skipped
  console = all, !skipped, !saved
  append = "/var/log/bareos/bareos.log" = all, !skipped
}

Client {
  Name = none
  Address = localhost
  Password = "NoNe"
  Catalog = bareos
}

Storage {
  Name = alpha-sd
  Address = alpha.example.com
  SDPort = 9103
  Password = "SECRET"
  Device = alpha_file
  Media Type = alpha_file
  Maximum Concurrent Jobs = 20

  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/alpha-dir.crt.pem
  TLS Key = /etc/bareos/x509/alpha-dir.key.pem
  TLS CA Certificate File = /etc/bareos/x509/bareos-storage-daemon-ca.crt.pem
  TLS Certificate Revocation List = 
/etc/bareos/x509/bareos-storage-daemon-ca.crl.pem
}

Storage {
  Name = gamma-sd
  Address = gamma.example.com
  SDPort = 9103
  Password = "SECRET"
  Device = gamma_file
  Media Type = gamma_file
  Maximum Concurrent Jobs = 20

  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/alpha-dir.crt.pem
  TLS Key = /etc/bareos/x509/alpha-dir.key.pem
  TLS CA Certificate File = /etc/bareos/x509/bareos-storage-daemon-ca.crt.pem
  TLS Certificate Revocation List = 
/etc/bareos/x509/bareos-storage-daemon-ca.crl.pem
}

Client {
  Name = gamma-fd
  Address = gamma.example.com
  FDPort = 9102
  Catalog = bareos
  Password = "SECRET"
  Maximum Concurrent Jobs = 1

  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/alpha-dir.crt.pem
  TLS Key = /etc/bareos/x509/alpha-dir.key.pem
  TLS CA Certificate File = /etc/bareos/x509/bareos-file-daemon-ca.crt.pem
  TLS Certificate Revocation List = 
/etc/bareos/x509/bareos-file-daemon-ca.crl.pem
}

FileSet {
  Name = none
  Include {
    Options {
      signature = MD5
    }
  }
}

JobDefs {
  Name = default
  Type = Backup
  Level = Full
  FileSet = none
  Messages = Standard
  Pool = manual
  Accurate = yes
  Max Full Interval = 30d
  Priority = 10
  Write Bootstrap = "/var/lib/bareos/%c.bsr"
}

Job {
  Name = restore
  Type = Restore
  Pool = manual
  Client = alpha-fd
  FileSet = none
  Messages = Standard
  Where = /tmp/bareos-restore
}

Job {
  Name = copy_to_gamma
  Type = Copy
  Pool = manual
  Client = none
  FileSet = none
  Messages = Standard
  Selection Type = PoolUncopiedJobs
}


FileSet {
  Name = gamma_something
  Include {
    Options {
      signature = SHA1
      compression = GZIP
      aclsupport = yes
      xattrsupport = yes
    }

    File = /srv/something
  }
}

Job {
  Name    = gamma_something
  JobDefs = default
  FileSet = gamma_something
  Client  = gamma-fd
}
 
Pool {
  Name = manual
  Pool Type = Backup
  Storage = alpha-sd
  NextPool = manual-gamma

  Recycle = yes
  AutoPrune = yes
  Volume Retention = 365 days
  Volume Use Duration = 1d
  Maximum Volume Bytes = 4G
  Label Format = manual-
}

Pool {
  Name = manual-gamma
  Pool Type = Backup
  Storage = gamma-sd

  Recycle = yes
  AutoPrune = yes
  Volume Retention = 365 days
  Volume Use Duration = 1d
  Maximum Volume Bytes = 4G
  Label Format = manual-gamma-
}
Storage {                             # definition of myself
  Name = alpha-sd
  Maximum Concurrent Jobs = 20

  SDAddresses = {
    ipv4 = { addr = alpha; port = 9103 }
    ipv6 = { addr = alpha; port = 9103 }
  }

  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/alpha-sd.crt.pem
  TLS Key = /etc/bareos/x509/alpha-sd.key.pem
  TLS Verify Peer = yes
  TLS CA Certificate File = /etc/bareos/x509/bareos-file-daemon-ca.crt.pem
  TLS CA Certificate File = /etc/bareos/x509/bareos-storage-daemon-ca.crt.pem
  TLS Certificate Revocation List = 
/etc/bareos/x509/bareos-file-daemon-ca.crl.pem
  TLS DH File = /etc/bareos/x509/alpha-sd.dh4096.pem

  # remove comment in next line to load plugins from specified directory
  # Plugin Directory = /usr/lib/bareos/plugins
}

Director {
  Name = alpha-dir
  Password = "-pHg8pxq8veT4UXkSNA42UxbbyLW2LwYXbGG6VF"

  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/alpha-sd.crt.pem
  TLS Key = /etc/bareos/x509/alpha-sd.key.pem
  TLS Verify Peer = yes
  TLS Allowed CN = alpha-dir
  TLS CA Certificate File = /etc/bareos/x509/bareos-director-ca.crt.pem
  TLS Certificate Revocation List = /etc/bareos/x509/bareos-director-ca.crl.pem
  TLS DH File = /etc/bareos/x509/alpha-sd.dh4096.pem
}

Device {
  Name = alpha_file
  Media Type = alpha_file
  Archive Device = /srv/backup
  LabelMedia = yes;                   # lets Bareos label unlabeled media
  Random Access = yes;
  AutomaticMount = yes;               # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}

Messages {
  Name = Standard
  director = alpha-dir = all
}

alpha-sd: dir_cmd.c:332-0 Conn: Hello Director alpha-dir calling
alpha-sd: dir_cmd.c:350-0 Got a DIR connection at 02-Apr-2014 22:45:42
alpha-sd: cram-md5.c:64-0 send: auth cram-md5 <0123456789.0123456789@alpha-sd> ssl=2
alpha-sd: cram-md5.c:123-0 cram-get received: auth cram-md5 <0123456789.0123456789@alpha-dir> ssl=2
alpha-sd: cram-md5.c:142-0 sending resp to challenge: SECRET
alpha-sd: bnet.c:292-0 TLS server negotiation established.
alpha-sd: dir_cmd.c:239-0 Message channel init completed.
alpha-sd: dir_cmd.c:250-0 <dird: JobId=42 job=copy_to_gamma.2014-04-02_22.45.40_03 job_name=copy_to_gamma client_name=none type=99 level=70 FileSet=none No
Attr=0 SpoolAttr=0 FileSetMD5=1B+M248Asg/pgA+Y7/hCfC SpoolData=0 PreferMountedVols=1 SpoolSize=0 rerunning=0 VolSessionId=0 VolSessionTime=0 Quota=0 Protocol=
0 BackupFormat=Native DumpLevel=0

alpha-sd: dir_cmd.c:268-0 Do command: JobId=
alpha-sd: job.c:85-0 <dird: JobId=42 job=copy_to_gamma.2014-04-02_22.45.40_03 job_name=copy_to_gamma client_name=none type=99 level=70 FileSet=none NoAttr=
0 SpoolAttr=0 FileSetMD5=1B+M248Asg/pgA+Y7/hCfC SpoolData=0 PreferMountedVols=1 SpoolSize=0 rerunning=0 VolSessionId=0 VolSessionTime=0 Quota=0 Protocol=0 Bac
kupFormat=Native DumpLevel=0
alpha-sd: job.c:105-0 rerunning=0 VolSesId=0 VolSesTime=0 Protocol=0
alpha-sd: job.c:153-0 Quota set as 0
alpha-sd: job.c:161-0 >dird jid=42: 3000 OK Job SDid=1 SDtime=1396471362 Authorization=ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD
alpha-sd: dir_cmd.c:250-0 <dird: bootstrap

alpha-sd: dir_cmd.c:268-0 Do command: bootstrap
alpha-sd: dir_cmd.c:1205-0 === Bootstrap file ===
alpha-sd: dir_cmd.c:1207-0 Storage="alpha-sd"
alpha-sd: dir_cmd.c:1207-0 Volume="manual-0001"
alpha-sd: dir_cmd.c:1207-0 MediaType="alpha_file"
alpha-sd: dir_cmd.c:1207-0 Device="alpha_file"
alpha-sd: dir_cmd.c:1207-0 VolSessionId=1
alpha-sd: dir_cmd.c:1207-0 VolSessionTime=1396470777
alpha-sd: dir_cmd.c:1207-0 VolAddr=601763990-601997968
alpha-sd: dir_cmd.c:1207-0 FileIndex=1-57
alpha-sd: dir_cmd.c:1207-0 Count=57
alpha-sd: dir_cmd.c:1211-0 === end bootstrap file ===
Next        : 0x0
Root bsr    : 0x22b2d28
VolumeName  : manual-0001
  MediaType : alpha_file
  Device    : alpha_file
  Slot      : 0
SessId      : 1
SessTime    : 1396470777
SessId      : 1
SessTime    : 1396470777
VolAddr    : 601763990-601997968
FileIndex   : 1-57
count       : 57
found       : 0
done        : no
positioning : 1
fast_reject : 1
alpha-sd: vol_mgr.c:153-0 add read_vol=manual-0001 JobId=42
alpha-sd: dir_cmd.c:250-0 <dird: use storage=alpha-sd media_type=alpha_file pool_name=manual pool_type=Backup append=0 copy=0 stripe=0

alpha-sd: dir_cmd.c:268-0 Do command: use storage=
alpha-sd: reserve.c:195-0 <dird: use storage=alpha-sd media_type=alpha_file pool_name=manual pool_type=Backup append=0 copy=0 stripe=0
alpha-sd: reserve.c:224-0 <dird device: use device=alpha_file
alpha-sd: reserve.c:427-0 Start find_suit_dev PrefMnt=1 exact=1 suitable=0 chgronly=0 any=0
alpha-sd: reserve.c:552-0 search res for alpha_file
alpha-sd: reserve.c:586-0 Try match res=alpha_file
alpha-sd: reserve.c:623-0 chk MediaType device=alpha_file request=alpha_file
alpha-sd: reserve.c:646-0 try reserve alpha_file
alpha-sd: acquire.c:699-0 Attach Jid=42 dcr=22b31a8 size=0 dev="alpha_file" (/srv/backup)
alpha-sd: reserve.c:125-0 Inc reserve=0 dev="alpha_file" (/srv/backup)
alpha-sd: reserve.c:733-0 Read reserved=1 dev_name=alpha_file mediatype=alpha_file pool=manual ok=1
alpha-sd: reserve.c:746-0 >dird: 3000 OK use device device=alpha_file
alpha-sd: reserve.c:599-0 Device alpha_file reserved=1 for read.
alpha-sd: reserve.c:521-0 available device found=alpha_file
alpha-sd: reserve.c:536-0 OK dev found. Vol=
alpha-sd: dir_cmd.c:250-0 <dird: replicate Job=beta_something.2014-04-02_22.45.40_04 address=gamma.example.com port=9103 ssl=2 Authorization=ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD

alpha-sd: dir_cmd.c:268-0 Do command: replicate
alpha-sd: dir_cmd.c:1486-0 ReplicateCmd: replicate Job=beta_something.2014-04-02_22.45.40_04 address=gamma.example.com port=9103 ssl=2 Authorization=ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD
alpha-sd: dir_cmd.c:1460-0 set sd auth key
alpha-sd: dir_cmd.c:1497-0 Open storage: gamma.example.com:9103 ssl=2
alpha-sd: bsock.c:168-0 All source addresses 
alpha-sd: bsock.c:244-0 Current host[ipv4:95.90.52.66:9103]  All host[ipv4:95.90.52.66:9103] 
alpha-sd: bsock.c:150-0 who=Storage daemon host=gamma.example.com port=9103
alpha-sd: dir_cmd.c:1530-0 Connection OK to SD.
alpha-sd: cram-md5.c:123-0 cram-get received: auth cram-md5 <0123456789.0123456789@gamma-sd> ssl=2
alpha-sd: cram-md5.c:142-0 sending resp to challenge: SECRET
alpha-sd: cram-md5.c:71-0 send: auth cram-md5 <0123456789.0123456789@alpha-sd> ssl=2
alpha-sd: cram-md5.c:90-0 Authenticate OK SECRET

Director {
  Name = alpha-dir
  Password = "p4p_vEiJTFkkzRExbRq8q-pp8cfyUXmS_PaabHn"
  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/gamma-fd.crt.pem
  TLS Key         = /etc/bareos/x509/gamma-fd.key.pem
  TLS DH File     = /etc/bareos/x509/gamma-fd.dh4096.pem
  TLS Verify Peer = yes
  TLS Allowed CN = alpha-dir
  TLS CA Certificate File         = /etc/bareos/x509/bareos-director-ca.
crt.pem
  TLS Certificate Revocation List = /etc/bareos/x509/bareos-director-ca.
crl.pem
}

FileDaemon {                          
  Name = gamma-fd
  Maximum Concurrent Jobs = 2
  Compatible = no
  FDAddresses = {
    ipv4 = { addr = gamma; port = 9102 }
    ipv6 = { addr = gamma; port = 9102 }
  }
  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/gamma-fd.crt.pem
  TLS Key         = /etc/bareos/x509/gamma-fd.key.pem
  TLS CA Certificate File         = /etc/bareos/x509/bareos-storage-daem
on-ca.crt.pem
  TLS Certificate Revocation List = /etc/bareos/x509/bareos-storage-daem
on-ca.crl.pem
  PKI Signatures = yes
  PKI Encryption = yes
  PKI Cipher = aes256
  PKI Keypair    = /etc/bareos/x509/gamma-fd-encryption.combined.pem
  PKI Master Key = /etc/bareos/x509/bareos-aef-encryption.crt.pem
}

Messages {
  Name = Standard
  director = alpha-dir = all, !skipped, !restored
}
Storage {                             # definition of myself
  Name = gamma-sd
  Maximum Concurrent Jobs = 20
  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/gamma-sd.crt.pem
  TLS Key = /etc/bareos/x509/gamma-sd.key.pem
  TLS Verify Peer = yes
  TLS CA Certificate File = /etc/bareos/x509/bareos-file-daemon-ca.crt.pem
  TLS CA Certificate File = /etc/bareos/x509/bareos-storage-daemon-ca.crt.pem
  TLS DH File = /etc/bareos/x509/gamma-sd.dh4096.pem
}

Director {
  Name = alpha-dir
  Password = "SECRET"

  TLS Enable = yes
  TLS Require = yes
  TLS Certificate = /etc/bareos/x509/gamma-sd.crt.pem
  TLS Key = /etc/bareos/x509/gamma-sd.key.pem
  TLS Verify Peer = yes
  TLS Allowed CN = alpha-dir
  TLS CA Certificate File = /etc/bareos/x509/bareos-director-ca.crt.pem
  TLS DH File = /etc/bareos/x509/gamma-sd.dh4096.pem
}

Device {
  Name = gamma_file
  Media Type = gamma_file
  Archive Device = /mnt/data/backup/bareos
  LabelMedia = yes;                   # lets Bacula label unlabeled media
  Random Access = Yes;
  AutomaticMount = yes;               # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}

Messages {
  Name = Standard
  director = alpha-dir = all
}
gamma-sd: bnet.c:763-0 who=client host=1.2.3.210 port=9103
gamma-sd: dir_cmd.c:332-0 Conn: Hello Director alpha-dir calling
gamma-sd: dir_cmd.c:350-0 Got a DIR connection at 02-Apr-2014 22:45:43
gamma-sd: cram-md5.c:64-0 send: auth cram-md5 <0123456789.0123456789@gamma-sd> ssl=2
gamma-sd: cram-md5.c:123-0 cram-get received: auth cram-md5 <0123456789.0123456789@alpha-dir> ssl=2
gamma-sd: cram-md5.c:142-0 sending resp to challenge: SECRET
gamma-sd: bnet.c:292-0 TLS server negotiation established.
gamma-sd: dir_cmd.c:239-0 Message channel init completed.
gamma-sd: dir_cmd.c:250-0 <dird: JobId=43 job=beta_something.2014-04-02_22.45.40_04 job_name=beta_something client_name=beta-fd type=66 level=70 FileSet=beta_something NoAttr=0 SpoolAttr=0 FileSetMD5=W78JK4+Wk9/db4+jHX0IUD SpoolData=0 PreferMountedVols=1 SpoolSize=0 rerunning=0 VolSessionId=0 VolSessionTime=0 Quota=0 Protocol=0 BackupFormat=Native DumpLevel=0

gamma-sd: dir_cmd.c:268-0 Do command: JobId=
gamma-sd: job.c:85-0 <dird: JobId=43 job=beta_something.2014-04-02_22.45.40_04 job_name=beta_something client_name=beta-fd type=66 level=70 FileSet=beta_something NoAttr=0 SpoolAttr=0 FileSetMD5=W78JK4+Wk9/db4+jHX0IUD SpoolData=0 PreferMountedVols=1 SpoolSize=0 rerunning=0 VolSessionId=0 VolSessionTime=0 Quota=0 Protocol=0 BackupFormat=Native DumpLevel=0
gamma-sd: job.c:105-0 rerunning=0 VolSesId=0 VolSesTime=0 Protocol=0
gamma-sd: job.c:153-0 Quota set as 0
gamma-sd: job.c:161-0 >dird jid=43: 3000 OK Job SDid=1 SDtime=1396471470 Authorization=ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD
gamma-sd: dir_cmd.c:250-0 <dird: use storage=gamma-sd media_type=gamma_file pool_name=manual-gamma pool_type=Backup append=1 copy=0 stripe=0

gamma-sd: dir_cmd.c:268-0 Do command: use storage=
gamma-sd: reserve.c:195-0 <dird: use storage=gamma-sd media_type=gamma_file pool_name=manual-gamma pool_type=Backup append=1 copy=0 stripe=0
gamma-sd: reserve.c:224-0 <dird device: use device=gamma_file
gamma-sd: reserve.c:427-0 Start find_suit_dev PrefMnt=1 exact=1 suitable=0 chgronly=0 any=0
gamma-sd: reserve.c:552-0 search res for gamma_file
gamma-sd: reserve.c:586-0 Try match res=gamma_file
gamma-sd: reserve.c:623-0 chk MediaType device=gamma_file request=gamma_file
gamma-sd: reserve.c:646-0 try reserve gamma_file
gamma-sd: acquire.c:699-0 Attach Jid=43 dcr=1a22598 size=0 dev="gamma_file" (/mnt/data/backup/bareos)
gamma-sd: reserve.c:663-0 call reserve for append: have_vol=0 vol=
gamma-sd: reserve.c:858-0 reserve_append device is "gamma_file" (/mnt/data/backup/bareos)
gamma-sd: reserve.c:949-0 PrefMnt=1 exact=1 suitable=1 chgronly=0 any=0
gamma-sd: reserve.c:911-0 MaxJobs=0 Jobs=0 reserves=0 Status= Vol=
gamma-sd: reserve.c:1053-0 OK Dev avail reserved "gamma_file" (/mnt/data/backup/bareos)
gamma-sd: reserve.c:125-0 Inc reserve=0 dev="gamma_file" (/mnt/data/backup/bareos)
gamma-sd: reserve.c:672-0 Reserved=1 dev_name=gamma_file mediatype=gamma_file pool=manual-gamma ok=1
gamma-sd: reserve.c:674-0 Vol= num_writers=0, have_vol=0
gamma-sd: reserve.c:685-0 no vol, call find_next_appendable_vol.
gamma-sd: askdir.c:263-0 dir_find_next_appendable_volume: reserved=1 Vol=
gamma-sd: askdir.c:280-0 >dird CatReq Job=beta_something.2014-04-02_22.45.40_04 FindMedia=1 pool_name=manual-gamma media_type=gamma_file
gamma-sd: askdir.c:174-0 <dird 1000 OK VolName=manual-gamma-0007 VolJobs=0 VolFiles=0 VolBlocks=0 VolBytes=0 VolMounts=0 VolErrors=0 VolWrites=0 MaxVolBytes=4294967296 VolCapacityBytes=0 VolStatus=Append Slot=0 MaxVolJobs=0 MaxVolFiles=0 InChanger=0 VolReadTime=0 VolWriteTime=0 EndFile=0 EndBlock=0 LabelType=0 MediaId=7 Encryption
gamma-sd: askdir.c:209-0 do_reqest_vol_info return true slot=0 Volume=manual-gamma-0007
gamma-sd: vol_mgr.c:587-0 find_read_vol: read_vol_list empty.
gamma-sd: vol_mgr.c:771-0 Vol=manual-gamma-0007 not in use.
gamma-sd: askdir.c:289-0 Call reserve_volume for write. Vol=manual-gamma-0007
gamma-sd: vol_mgr.c:355-0 enter reserve_volume=manual-gamma-0007 drive="gamma_file" (/mnt/data/backup/bareos)
gamma-sd: vol_mgr.c:264-0 new Vol=manual-gamma-0007 at 1a121b8 dev="gamma_file" (/mnt/data/backup/bareos)
gamma-sd: vol_mgr.c:479-0 === set in_use. vol=manual-gamma-0007 dev="gamma_file" (/mnt/data/backup/bareos)
gamma-sd: vol_mgr.c:513-0 Inc walk_start use_count=2 volname=manual-gamma-0007
gamma-sd: vol_mgr.c:200-0 List end new volume: manual-gamma-0007 in_use=1 swap=0 on device "gamma_file" (/mnt/data/backup/bareos)
gamma-sd: askdir.c:296-0 dir_find_next_appendable_volume return true. vol=manual-gamma-0007
gamma-sd: reserve.c:689-0 looking for Volume=manual-gamma-0007
gamma-sd: reserve.c:746-0 >dird: 3000 OK use device device=gamma_file
gamma-sd: reserve.c:596-0 Device gamma_file reserved=1 for append.
gamma-sd: reserve.c:521-0 available device found=gamma_file
gamma-sd: reserve.c:536-0 OK dev found. Vol=manual-gamma-0007
gamma-sd: dir_cmd.c:250-0 <dird: listen
gamma-sd: dir_cmd.c:268-0 Do command: listen
gamma-sd: sd_cmds.c:232-0 beta_something.2014-04-02_22.45.40_04 waiting 1800 sec for SD to contact SD key=ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD-ABCD
gamma-sd: bnet.c:763-0 who=client host=1.2.3.210 port=9103
gamma-sd: dir_cmd.c:332-0 Conn: Hello Start Storage Job beta_something.2014-04-02_22.45.40_04
gamma-sd: dir_cmd.c:346-0 Got a SD connection at 02-Apr-2014 22:45:44
gamma-sd: sd_cmds.c:109-0 Found Job beta_something.2014-04-02_22.45.40_04
gamma-sd: cram-md5.c:64-0 send: auth cram-md5 <0123456789.0123456789@gamma-sd> ssl=2
gamma-sd: cram-md5.c:123-0 cram-get received: auth cram-md5 <0123456789.0123456789@alpha-sd> ssl=2
gamma-sd: cram-md5.c:142-0 sending resp to challenge: SECRET

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to