Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
bacula-common /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
autochangers
[ DIR ]
drwxr-xr-x
2025-07-14 12:21
conf
[ DIR ]
drwxr-xr-x
2025-07-14 12:21
database
[ DIR ]
drwxr-xr-x
2025-07-14 12:21
devices
[ DIR ]
drwxr-xr-x
2025-07-14 12:21
nagios
[ DIR ]
drwxr-xr-x
2025-07-14 12:21
reports
[ DIR ]
drwxr-xr-x
2025-07-14 12:21
vm
[ DIR ]
drwxr-xr-x
2025-07-14 12:21
AFS-README
1.37
KB
-rw-r--r--
2016-09-21 11:58
Write-DVD-with-UDF.txt
2.64
KB
-rw-r--r--
2016-09-21 11:58
afs-bacula.gz
2.47
KB
-rw-r--r--
2016-09-21 11:58
backup-acls.txt
569
B
-rw-r--r--
2016-09-21 11:58
backup-every-other-week.txt
2.73
KB
-rw-r--r--
2016-09-21 11:58
backup-to-cdwriter.txt.gz
5.2
KB
-rw-r--r--
2016-09-21 11:58
client-backup
285
B
-rwxr-xr-x
2016-09-21 11:58
local_partitions
555
B
-rw-r--r--
2016-09-21 11:58
local_partitions.txt
352
B
-rw-r--r--
2016-09-21 11:58
recover.pl.gz
15.86
KB
-rw-r--r--
2016-09-21 11:58
sample-query.sql.gz
2.18
KB
-rw-r--r--
2016-09-21 11:58
ssh-tunnel-README.txt.gz
2.15
KB
-rw-r--r--
2016-09-21 11:58
ssh-tunnel.sh
1.14
KB
-rwxr-xr-x
2016-09-21 11:58
upgrade-win32-client.txt
2.58
KB
-rw-r--r--
2016-09-21 11:58
Save
Rename
#!/bin/sh # script for creating / stopping a ssh-tunnel to a backupclient # Stephan Holl<sholl@gmx.net> # Modified by Joshua Kugler <joshua.kugler@uaf.edu> # # # variables USER=bacula CLIENT=$2 LOCAL=your.backup.server.host.name SSH=/usr/bin/ssh case "$1" in start) # create ssh-tunnel echo "Starting SSH-tunnel to $CLIENT..." $SSH -fnCN2 -o PreferredAuthentications=publickey -i /usr/local/bacula/ssh/id_dsa -l $USER -R 9101:$LOCAL:9101 -R 9103:$LOCAL:9103 $CLIENT > /dev/null 2> /dev/null exit $? ;; stop) # remove tunnel echo "Stopping SSH-tunnel to $CLIENT..." # find PID killem PID=`ps ax | grep "ssh -fnCN2 -o PreferredAuthentications=publickey -i /usr/local/bacula/ssh/id_dsa" | grep "$CLIENT" | awk '{ print $1 }'` kill $PID exit $? ;; *) # usage: echo " " echo " Start SSH-tunnel to client-host" echo " to bacula-director and storage-daemon" echo " " echo " USAGE:" echo " ssh-tunnel.sh {start|stop} client.fqdn" echo "" exit 1 ;; esac