how to install a lftp program on centOS

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
how to install a lftp program on CentOS and use it to transfer files between servers.
I used the below command but got an error as bad command.
wget http://example.com/user/filename.gz.tar
ftp lftp
add a comment |
up vote
0
down vote
favorite
how to install a lftp program on CentOS and use it to transfer files between servers.
I used the below command but got an error as bad command.
wget http://example.com/user/filename.gz.tar
ftp lftp
1
wgetis notlftp. Also it's important to share any error messages in the question.
– Pavel Šimerda
Dec 29 '14 at 10:51
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
how to install a lftp program on CentOS and use it to transfer files between servers.
I used the below command but got an error as bad command.
wget http://example.com/user/filename.gz.tar
ftp lftp
how to install a lftp program on CentOS and use it to transfer files between servers.
I used the below command but got an error as bad command.
wget http://example.com/user/filename.gz.tar
ftp lftp
ftp lftp
edited Nov 20 at 20:26
Rui F Ribeiro
38.2k1475125
38.2k1475125
asked Jun 19 '14 at 0:29
user72966
6112
6112
1
wgetis notlftp. Also it's important to share any error messages in the question.
– Pavel Šimerda
Dec 29 '14 at 10:51
add a comment |
1
wgetis notlftp. Also it's important to share any error messages in the question.
– Pavel Šimerda
Dec 29 '14 at 10:51
1
1
wget is not lftp. Also it's important to share any error messages in the question.– Pavel Šimerda
Dec 29 '14 at 10:51
wget is not lftp. Also it's important to share any error messages in the question.– Pavel Šimerda
Dec 29 '14 at 10:51
add a comment |
2 Answers
2
active
oldest
votes
up vote
5
down vote
You can install lftp from CentOS repository:
sudo yum install lftp
The best way to learn how to transfer files is reading man lftp
add a comment |
up vote
1
down vote
I would urge caution on using SFTP or FTPS if you're planning on exposing this traffic to the interent. You need to make absolutely certain that you're blocking TCP port 21 (normal, unsecured FTP), and that you disable anonymous logins over SFTP/FTPS.
While SFTP does have its uses, it uses SSH. Make sure you're on SSH v2 if you take that route. I would recommend using FTPS (uses an SSL, and default traffic is over TCP port 443). The real advantage of FTPS is that when a file transfer is interrupted, the file transfer will resume where it left off once a connection is re-established. SFTP will work fine for small files, but if you're going to transfer files that might take hours or days, FTPS is the better solution. If an SFTP transfer is interrupted for any reason, when the connection resumes, the transfer will have to start over from the beginning.
If your goal is to be able to transfer files internally within your own network, then learn how to use SCP (secure copy) and avoid the headache of patching LFTP as vulnerabilities are discovered.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
You can install lftp from CentOS repository:
sudo yum install lftp
The best way to learn how to transfer files is reading man lftp
add a comment |
up vote
5
down vote
You can install lftp from CentOS repository:
sudo yum install lftp
The best way to learn how to transfer files is reading man lftp
add a comment |
up vote
5
down vote
up vote
5
down vote
You can install lftp from CentOS repository:
sudo yum install lftp
The best way to learn how to transfer files is reading man lftp
You can install lftp from CentOS repository:
sudo yum install lftp
The best way to learn how to transfer files is reading man lftp
answered Jul 29 '14 at 14:21
svq
760310
760310
add a comment |
add a comment |
up vote
1
down vote
I would urge caution on using SFTP or FTPS if you're planning on exposing this traffic to the interent. You need to make absolutely certain that you're blocking TCP port 21 (normal, unsecured FTP), and that you disable anonymous logins over SFTP/FTPS.
While SFTP does have its uses, it uses SSH. Make sure you're on SSH v2 if you take that route. I would recommend using FTPS (uses an SSL, and default traffic is over TCP port 443). The real advantage of FTPS is that when a file transfer is interrupted, the file transfer will resume where it left off once a connection is re-established. SFTP will work fine for small files, but if you're going to transfer files that might take hours or days, FTPS is the better solution. If an SFTP transfer is interrupted for any reason, when the connection resumes, the transfer will have to start over from the beginning.
If your goal is to be able to transfer files internally within your own network, then learn how to use SCP (secure copy) and avoid the headache of patching LFTP as vulnerabilities are discovered.
add a comment |
up vote
1
down vote
I would urge caution on using SFTP or FTPS if you're planning on exposing this traffic to the interent. You need to make absolutely certain that you're blocking TCP port 21 (normal, unsecured FTP), and that you disable anonymous logins over SFTP/FTPS.
While SFTP does have its uses, it uses SSH. Make sure you're on SSH v2 if you take that route. I would recommend using FTPS (uses an SSL, and default traffic is over TCP port 443). The real advantage of FTPS is that when a file transfer is interrupted, the file transfer will resume where it left off once a connection is re-established. SFTP will work fine for small files, but if you're going to transfer files that might take hours or days, FTPS is the better solution. If an SFTP transfer is interrupted for any reason, when the connection resumes, the transfer will have to start over from the beginning.
If your goal is to be able to transfer files internally within your own network, then learn how to use SCP (secure copy) and avoid the headache of patching LFTP as vulnerabilities are discovered.
add a comment |
up vote
1
down vote
up vote
1
down vote
I would urge caution on using SFTP or FTPS if you're planning on exposing this traffic to the interent. You need to make absolutely certain that you're blocking TCP port 21 (normal, unsecured FTP), and that you disable anonymous logins over SFTP/FTPS.
While SFTP does have its uses, it uses SSH. Make sure you're on SSH v2 if you take that route. I would recommend using FTPS (uses an SSL, and default traffic is over TCP port 443). The real advantage of FTPS is that when a file transfer is interrupted, the file transfer will resume where it left off once a connection is re-established. SFTP will work fine for small files, but if you're going to transfer files that might take hours or days, FTPS is the better solution. If an SFTP transfer is interrupted for any reason, when the connection resumes, the transfer will have to start over from the beginning.
If your goal is to be able to transfer files internally within your own network, then learn how to use SCP (secure copy) and avoid the headache of patching LFTP as vulnerabilities are discovered.
I would urge caution on using SFTP or FTPS if you're planning on exposing this traffic to the interent. You need to make absolutely certain that you're blocking TCP port 21 (normal, unsecured FTP), and that you disable anonymous logins over SFTP/FTPS.
While SFTP does have its uses, it uses SSH. Make sure you're on SSH v2 if you take that route. I would recommend using FTPS (uses an SSL, and default traffic is over TCP port 443). The real advantage of FTPS is that when a file transfer is interrupted, the file transfer will resume where it left off once a connection is re-established. SFTP will work fine for small files, but if you're going to transfer files that might take hours or days, FTPS is the better solution. If an SFTP transfer is interrupted for any reason, when the connection resumes, the transfer will have to start over from the beginning.
If your goal is to be able to transfer files internally within your own network, then learn how to use SCP (secure copy) and avoid the headache of patching LFTP as vulnerabilities are discovered.
answered Oct 27 '17 at 15:17
Brian
111
111
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f137942%2fhow-to-install-a-lftp-program-on-centos%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
wgetis notlftp. Also it's important to share any error messages in the question.– Pavel Šimerda
Dec 29 '14 at 10:51