vsftpd and filezilla
up vote
0
down vote
favorite
I've installed vsftpd and filezilla locally on my pc(ubuntu 12.04)
I can enter ftp via filezilla using 0.0.0.0 and it works.
How can i access to ftp from outside of my computer?
What address should i use?
vsftpd.config
listen=YES
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/vsftpd.pem
ftp vsftpd filezilla
add a comment |
up vote
0
down vote
favorite
I've installed vsftpd and filezilla locally on my pc(ubuntu 12.04)
I can enter ftp via filezilla using 0.0.0.0 and it works.
How can i access to ftp from outside of my computer?
What address should i use?
vsftpd.config
listen=YES
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/vsftpd.pem
ftp vsftpd filezilla
useip a s
to show your adresses, any adress not in 127.0.0.1 will do. You may have to use proper certificates.
– Archemar
Aug 12 '15 at 12:36
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I've installed vsftpd and filezilla locally on my pc(ubuntu 12.04)
I can enter ftp via filezilla using 0.0.0.0 and it works.
How can i access to ftp from outside of my computer?
What address should i use?
vsftpd.config
listen=YES
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/vsftpd.pem
ftp vsftpd filezilla
I've installed vsftpd and filezilla locally on my pc(ubuntu 12.04)
I can enter ftp via filezilla using 0.0.0.0 and it works.
How can i access to ftp from outside of my computer?
What address should i use?
vsftpd.config
listen=YES
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/vsftpd.pem
ftp vsftpd filezilla
ftp vsftpd filezilla
edited Nov 24 at 20:37
Rui F Ribeiro
38.3k1476127
38.3k1476127
asked Aug 12 '15 at 12:30
Jenya Kirmiza
1032
1032
useip a s
to show your adresses, any adress not in 127.0.0.1 will do. You may have to use proper certificates.
– Archemar
Aug 12 '15 at 12:36
add a comment |
useip a s
to show your adresses, any adress not in 127.0.0.1 will do. You may have to use proper certificates.
– Archemar
Aug 12 '15 at 12:36
use
ip a s
to show your adresses, any adress not in 127.0.0.1 will do. You may have to use proper certificates.– Archemar
Aug 12 '15 at 12:36
use
ip a s
to show your adresses, any adress not in 127.0.0.1 will do. You may have to use proper certificates.– Archemar
Aug 12 '15 at 12:36
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You can still bind it to 0.0.0.0, however you have to open the port with your firewall interface (depends, probably ufw or iptables on ubuntu). 0.0.0.0 binds to all interfaces (localhost as well as for example your ethernet interface).
I recommend to search in the ubuntu documentation about firewalls.
If your computer is behind a commonly configured home router and you want to make it available on the internet, you also have to set up a port forward on your router to your pc, this procedure varies from router to router.
You also have to be aware of the security or legal issues of running a public ftp server, especially if you use anonymous_enable=YES
.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can still bind it to 0.0.0.0, however you have to open the port with your firewall interface (depends, probably ufw or iptables on ubuntu). 0.0.0.0 binds to all interfaces (localhost as well as for example your ethernet interface).
I recommend to search in the ubuntu documentation about firewalls.
If your computer is behind a commonly configured home router and you want to make it available on the internet, you also have to set up a port forward on your router to your pc, this procedure varies from router to router.
You also have to be aware of the security or legal issues of running a public ftp server, especially if you use anonymous_enable=YES
.
add a comment |
up vote
1
down vote
accepted
You can still bind it to 0.0.0.0, however you have to open the port with your firewall interface (depends, probably ufw or iptables on ubuntu). 0.0.0.0 binds to all interfaces (localhost as well as for example your ethernet interface).
I recommend to search in the ubuntu documentation about firewalls.
If your computer is behind a commonly configured home router and you want to make it available on the internet, you also have to set up a port forward on your router to your pc, this procedure varies from router to router.
You also have to be aware of the security or legal issues of running a public ftp server, especially if you use anonymous_enable=YES
.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can still bind it to 0.0.0.0, however you have to open the port with your firewall interface (depends, probably ufw or iptables on ubuntu). 0.0.0.0 binds to all interfaces (localhost as well as for example your ethernet interface).
I recommend to search in the ubuntu documentation about firewalls.
If your computer is behind a commonly configured home router and you want to make it available on the internet, you also have to set up a port forward on your router to your pc, this procedure varies from router to router.
You also have to be aware of the security or legal issues of running a public ftp server, especially if you use anonymous_enable=YES
.
You can still bind it to 0.0.0.0, however you have to open the port with your firewall interface (depends, probably ufw or iptables on ubuntu). 0.0.0.0 binds to all interfaces (localhost as well as for example your ethernet interface).
I recommend to search in the ubuntu documentation about firewalls.
If your computer is behind a commonly configured home router and you want to make it available on the internet, you also have to set up a port forward on your router to your pc, this procedure varies from router to router.
You also have to be aware of the security or legal issues of running a public ftp server, especially if you use anonymous_enable=YES
.
answered Aug 12 '15 at 14:33
Jannis
1364
1364
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f222767%2fvsftpd-and-filezilla%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
use
ip a s
to show your adresses, any adress not in 127.0.0.1 will do. You may have to use proper certificates.– Archemar
Aug 12 '15 at 12:36