-
Notifications
You must be signed in to change notification settings - Fork 0
/
tool-nas-mgmnt.pl
239 lines (214 loc) · 5.96 KB
/
tool-nas-mgmnt.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/usr/bin/perl
use strict;
use warnings;
# Muestra el mensaje de ayuda
sub show_help {
print <<"END_HELP";
Uso: perl $0 <modo> <tipo> [origen] [destino] [opciones]
Modo:
send - Envía un archivo al NAS
receive - Recibe un archivo del NAS
list - Lista archivos en el NAS
mkdir - Crea un directorio en el NAS
rm - Elimina un archivo en el NAS
Tipo:
rsync - Transmisión usando rsync
scp - Transmisión usando scp
ftp - Transmisión usando ftp
sftp - Transmisión usando sftp
Opciones:
-u <usuario> - Usuario para autenticación (si aplica)
-p <password> - Contraseña para autenticación (si aplica)
-h <host> - Host del NAS (para scp, sftp, ftp)
-d <directorio> - Directorio destino (para ftp y sftp)
-o <archivo> - Salida a archivo especificado
Ejemplo:
perl $0 send rsync archivo.txt -h nas.example.com -u usuario
perl $0 receive scp archivo.txt -h nas.example.com -u usuario -o salida.txt
perl $0 list ftp -h ftp.nas.example.com -u usuario -d /directorio
perl $0 mkdir sftp -h sftp.nas.example.com -u usuario -d /nuevo_directorio
perl $0 rm scp archivo.txt -h nas.example.com -u usuario
END_HELP
exit;
}
# Verifica los argumentos
@ARGV >= 2 || !-t and show_help();
my ($mode, $type) = @ARGV;
# Procesa opciones adicionales
my ($host, $user, $password, $directory, $output_file);
while (@ARGV) {
my $arg = shift @ARGV;
if ($arg eq '-h') { $host = shift @ARGV; }
elsif ($arg eq '-u') { $user = shift @ARGV; }
elsif ($arg eq '-p') { $password = shift @ARGV; }
elsif ($arg eq '-d') { $directory = shift @ARGV; }
elsif ($arg eq '-o') { $output_file = shift @ARGV; }
}
# Si se especifica archivo de salida
if ($output_file) {
open my $out_fh, '>', $output_file or die "No se puede abrir $output_file: $!";
select $out_fh; # Cambia la salida estándar al archivo
}
# Función para enviar usando rsync
sub rsync_send {
my ($src) = @_;
my $dest = "$host:$directory/$src";
system("rsync -avz $src $dest");
}
# Función para recibir usando rsync
sub rsync_receive {
my ($src) = @_;
my $dest = "$directory/$src";
system("rsync -avz $host:$src $dest");
}
# Función para enviar usando scp
sub scp_send {
my ($src) = @_;
my $dest = "$user\@$host:$directory/$src";
system("scp $src $dest");
}
# Función para recibir usando scp
sub scp_receive {
my ($src) = @_;
my $dest = "$directory/$src";
system("scp $user\@$host:$src $dest");
}
# Función para enviar usando ftp
sub ftp_send {
my ($src) = @_;
my $ftp_command = <<"END_FTP";
open $host
user $user $password
binary
cd $directory
put $src
bye
END_FTP
open my $ftp_fh, '|-', 'ftp' or die "No se puede ejecutar ftp: $!";
print $ftp_fh $ftp_command;
close $ftp_fh;
}
# Función para recibir usando ftp
sub ftp_receive {
my ($src) = @_;
my $ftp_command = <<"END_FTP";
open $host
user $user $password
binary
cd $directory
get $src
bye
END_FTP
open my $ftp_fh, '|-', 'ftp' or die "No se puede ejecutar ftp: $!";
print $ftp_fh $ftp_command;
close $ftp_fh;
}
# Función para enviar usando sftp
sub sftp_send {
my ($src) = @_;
my $sftp_command = <<"END_SFTP";
open $user\@$host
put $src $directory/
bye
END_SFTP
open my $sftp_fh, '|-', 'sftp' or die "No se puede ejecutar sftp: $!";
print $sftp_fh $sftp_command;
close $sftp_fh;
}
# Función para recibir usando sftp
sub sftp_receive {
my ($src) = @_;
my $sftp_command = <<"END_SFTP";
open $user\@$host
get $src $directory/
bye
END_SFTP
open my $sftp_fh, '|-', 'sftp' or die "No se puede ejecutar sftp: $!";
print $sftp_fh $sftp_command;
close $sftp_fh;
}
# Función para listar archivos usando ftp
sub ftp_list {
my $ftp_command = <<"END_FTP";
open $host
user $user $password
binary
cd $directory
ls
bye
END_FTP
open my $ftp_fh, '|-', 'ftp' or die "No se puede ejecutar ftp: $!";
print $ftp_fh $ftp_command;
close $ftp_fh;
}
# Función para listar archivos usando sftp
sub sftp_list {
my $sftp_command = <<"END_SFTP";
open $user\@$host
ls $directory
bye
END_SFTP
open my $sftp_fh, '|-', 'sftp' or die "No se puede ejecutar sftp: $!";
print $sftp_fh $sftp_command;
close $sftp_fh;
}
# Función para crear un directorio usando ftp
sub ftp_mkdir {
my $ftp_command = <<"END_FTP";
open $host
user $user $password
binary
cd $directory
mkdir $ARGV[0]
bye
END_FTP
open my $ftp_fh, '|-', 'ftp' or die "No se puede ejecutar ftp: $!";
print $ftp_fh $ftp_command;
close $ftp_fh;
}
# Función para crear un directorio usando sftp
sub sftp_mkdir {
my $sftp_command = <<"END_SFTP";
open $user\@$host
mkdir $directory/$ARGV[0]
bye
END_SFTP
open my $sftp_fh, '|-', 'sftp' or die "No se puede ejecutar sftp: $!";
print $sftp_fh $sftp_command;
close $sftp_fh;
}
# Función para eliminar un archivo usando ftp
sub ftp_rm {
my $ftp_command = <<"END_FTP";
open $host
user $user $password
binary
cd $directory
delete $ARGV[0]
bye
END_FTP
open my $ftp_fh, '|-', 'ftp' or die "No se puede ejecutar ftp: $!";
print $ftp_fh $ftp_command;
close $ftp_fh;
}
# Función para eliminar un archivo usando sftp
sub sftp_rm {
my $sftp_command = <<"END_SFTP";
open $user\@$host
rm $directory/$ARGV[0]
bye
END_SFTP
open my $sftp_fh, '|-', 'sftp' or die "No se puede ejecutar sftp: $!";
print $sftp_fh $sftp_command;
close $sftp_fh;
}
# Mapeo de tipos y acciones
my %actions = (
'rsync' => { 'send' => \&rsync_send, 'receive' => \&rsync_receive },
'scp' => { 'send' => \&scp_send, 'receive' => \&scp_receive },
'ftp' => { 'send' => \&ftp_send, 'receive' => \&ftp_receive, 'list' => \&ftp_list, 'mkdir' => \&ftp_mkdir, 'rm' => \&ftp_rm },
'sftp' => { 'send' => \&sftp_send, 'receive' => \&sftp_receive, 'list' => \&sftp_list, 'mkdir' => \&sftp_mkdir, 'rm' => \&sftp_rm },
);
# Verifica si el tipo y modo son válidos
exists $actions{$type} && exists $actions{$type}{$mode} or show_help();
$actions{$type}{$mode}->($ARGV[0]);