Network and FTP issues
up vote
0
down vote
favorite
I am new to Ubuntu. I've done installs on CentOS and Redhat, but on Ubuntu I am having network and ftp issues. I ask them together as these issues might be related.
This is also my first experience with netplan.
I did the install and had no issues. Then I installed vsftpd and it works when I use it using localhost on the server, but not from any other system in my network. Initially, I thought that the default ip address might be incompatible so I changed the address to something in my domain, but vsftpd still is not visible and I no longer have internet access. my vsftpd.conf file is pretty much default.
My netplan yaml file looks like
network:
version: 2
ethernets:
ens33:
addresses: [192.168.0.201/24]
gateway4: 192.168.0.1
nameservers:
addresses: [75.75.75.75,192.168.0.145]
The DNS servers are one provided by my ISP and the other is a local server
My environment is Ubuntu 18.04 which runs on a VMWare virtual machine
Do I have two issues here, or one networking issue? Any help will be greatly appreciated.
Paul
ftp vsftpd netplan
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
I am new to Ubuntu. I've done installs on CentOS and Redhat, but on Ubuntu I am having network and ftp issues. I ask them together as these issues might be related.
This is also my first experience with netplan.
I did the install and had no issues. Then I installed vsftpd and it works when I use it using localhost on the server, but not from any other system in my network. Initially, I thought that the default ip address might be incompatible so I changed the address to something in my domain, but vsftpd still is not visible and I no longer have internet access. my vsftpd.conf file is pretty much default.
My netplan yaml file looks like
network:
version: 2
ethernets:
ens33:
addresses: [192.168.0.201/24]
gateway4: 192.168.0.1
nameservers:
addresses: [75.75.75.75,192.168.0.145]
The DNS servers are one provided by my ISP and the other is a local server
My environment is Ubuntu 18.04 which runs on a VMWare virtual machine
Do I have two issues here, or one networking issue? Any help will be greatly appreciated.
Paul
ftp vsftpd netplan
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Some additional information. I'm using FileZilla as an FTP client. The version of Ubuntu is the community server edition. I can ping the server from other systems in my network.
– Socrates Schwartz
Dec 10 at 20:51
Mind sharing your vsftpd configuration? It would be important to have that as well.
– Thomas Ward♦
Dec 10 at 20:53
Netplan is very picky about indentation. Is the above what your yaml file actually reads?
– chili555
Dec 10 at 20:58
When I issue netplan apply I get no errors. After changing the ip address I can ping the server using ping 192.168.0.201. So I assume it's working, however, I no longer have internet access. ifconfig shows the changes were made.
– Socrates Schwartz
Dec 10 at 22:04
vsftpd.conf looks like this (I removed comments for clarity in this post) listen=NO listen_ipv6=YES anonymous_enable=NO local_enable=YES write_enable=YES dirmessage_enable=YES use_localtime=YES xferlog_enable=YES connect_from_port_20=YES xferlog_std_format=YES secure_chroot_dir=/var/run/vsftpd/empty pam_service_name=vsftpd rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.key rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key ssl_enable=NO
– Socrates Schwartz
Dec 10 at 22:47
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am new to Ubuntu. I've done installs on CentOS and Redhat, but on Ubuntu I am having network and ftp issues. I ask them together as these issues might be related.
This is also my first experience with netplan.
I did the install and had no issues. Then I installed vsftpd and it works when I use it using localhost on the server, but not from any other system in my network. Initially, I thought that the default ip address might be incompatible so I changed the address to something in my domain, but vsftpd still is not visible and I no longer have internet access. my vsftpd.conf file is pretty much default.
My netplan yaml file looks like
network:
version: 2
ethernets:
ens33:
addresses: [192.168.0.201/24]
gateway4: 192.168.0.1
nameservers:
addresses: [75.75.75.75,192.168.0.145]
The DNS servers are one provided by my ISP and the other is a local server
My environment is Ubuntu 18.04 which runs on a VMWare virtual machine
Do I have two issues here, or one networking issue? Any help will be greatly appreciated.
Paul
ftp vsftpd netplan
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am new to Ubuntu. I've done installs on CentOS and Redhat, but on Ubuntu I am having network and ftp issues. I ask them together as these issues might be related.
This is also my first experience with netplan.
I did the install and had no issues. Then I installed vsftpd and it works when I use it using localhost on the server, but not from any other system in my network. Initially, I thought that the default ip address might be incompatible so I changed the address to something in my domain, but vsftpd still is not visible and I no longer have internet access. my vsftpd.conf file is pretty much default.
My netplan yaml file looks like
network:
version: 2
ethernets:
ens33:
addresses: [192.168.0.201/24]
gateway4: 192.168.0.1
nameservers:
addresses: [75.75.75.75,192.168.0.145]
The DNS servers are one provided by my ISP and the other is a local server
My environment is Ubuntu 18.04 which runs on a VMWare virtual machine
Do I have two issues here, or one networking issue? Any help will be greatly appreciated.
Paul
ftp vsftpd netplan
ftp vsftpd netplan
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Dec 10 at 20:53
Thomas Ward♦
43.1k23120170
43.1k23120170
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Dec 10 at 20:48
Socrates Schwartz
1
1
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Socrates Schwartz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Some additional information. I'm using FileZilla as an FTP client. The version of Ubuntu is the community server edition. I can ping the server from other systems in my network.
– Socrates Schwartz
Dec 10 at 20:51
Mind sharing your vsftpd configuration? It would be important to have that as well.
– Thomas Ward♦
Dec 10 at 20:53
Netplan is very picky about indentation. Is the above what your yaml file actually reads?
– chili555
Dec 10 at 20:58
When I issue netplan apply I get no errors. After changing the ip address I can ping the server using ping 192.168.0.201. So I assume it's working, however, I no longer have internet access. ifconfig shows the changes were made.
– Socrates Schwartz
Dec 10 at 22:04
vsftpd.conf looks like this (I removed comments for clarity in this post) listen=NO listen_ipv6=YES anonymous_enable=NO local_enable=YES write_enable=YES dirmessage_enable=YES use_localtime=YES xferlog_enable=YES connect_from_port_20=YES xferlog_std_format=YES secure_chroot_dir=/var/run/vsftpd/empty pam_service_name=vsftpd rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.key rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key ssl_enable=NO
– Socrates Schwartz
Dec 10 at 22:47
add a comment |
Some additional information. I'm using FileZilla as an FTP client. The version of Ubuntu is the community server edition. I can ping the server from other systems in my network.
– Socrates Schwartz
Dec 10 at 20:51
Mind sharing your vsftpd configuration? It would be important to have that as well.
– Thomas Ward♦
Dec 10 at 20:53
Netplan is very picky about indentation. Is the above what your yaml file actually reads?
– chili555
Dec 10 at 20:58
When I issue netplan apply I get no errors. After changing the ip address I can ping the server using ping 192.168.0.201. So I assume it's working, however, I no longer have internet access. ifconfig shows the changes were made.
– Socrates Schwartz
Dec 10 at 22:04
vsftpd.conf looks like this (I removed comments for clarity in this post) listen=NO listen_ipv6=YES anonymous_enable=NO local_enable=YES write_enable=YES dirmessage_enable=YES use_localtime=YES xferlog_enable=YES connect_from_port_20=YES xferlog_std_format=YES secure_chroot_dir=/var/run/vsftpd/empty pam_service_name=vsftpd rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.key rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key ssl_enable=NO
– Socrates Schwartz
Dec 10 at 22:47
Some additional information. I'm using FileZilla as an FTP client. The version of Ubuntu is the community server edition. I can ping the server from other systems in my network.
– Socrates Schwartz
Dec 10 at 20:51
Some additional information. I'm using FileZilla as an FTP client. The version of Ubuntu is the community server edition. I can ping the server from other systems in my network.
– Socrates Schwartz
Dec 10 at 20:51
Mind sharing your vsftpd configuration? It would be important to have that as well.
– Thomas Ward♦
Dec 10 at 20:53
Mind sharing your vsftpd configuration? It would be important to have that as well.
– Thomas Ward♦
Dec 10 at 20:53
Netplan is very picky about indentation. Is the above what your yaml file actually reads?
– chili555
Dec 10 at 20:58
Netplan is very picky about indentation. Is the above what your yaml file actually reads?
– chili555
Dec 10 at 20:58
When I issue netplan apply I get no errors. After changing the ip address I can ping the server using ping 192.168.0.201. So I assume it's working, however, I no longer have internet access. ifconfig shows the changes were made.
– Socrates Schwartz
Dec 10 at 22:04
When I issue netplan apply I get no errors. After changing the ip address I can ping the server using ping 192.168.0.201. So I assume it's working, however, I no longer have internet access. ifconfig shows the changes were made.
– Socrates Schwartz
Dec 10 at 22:04
vsftpd.conf looks like this (I removed comments for clarity in this post) listen=NO listen_ipv6=YES anonymous_enable=NO local_enable=YES write_enable=YES dirmessage_enable=YES use_localtime=YES xferlog_enable=YES connect_from_port_20=YES xferlog_std_format=YES secure_chroot_dir=/var/run/vsftpd/empty pam_service_name=vsftpd rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.key rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key ssl_enable=NO
– Socrates Schwartz
Dec 10 at 22:47
vsftpd.conf looks like this (I removed comments for clarity in this post) listen=NO listen_ipv6=YES anonymous_enable=NO local_enable=YES write_enable=YES dirmessage_enable=YES use_localtime=YES xferlog_enable=YES connect_from_port_20=YES xferlog_std_format=YES secure_chroot_dir=/var/run/vsftpd/empty pam_service_name=vsftpd rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.key rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key ssl_enable=NO
– Socrates Schwartz
Dec 10 at 22:47
add a comment |
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Socrates Schwartz is a new contributor. Be nice, and check out our Code of Conduct.
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%2faskubuntu.com%2fquestions%2f1099887%2fnetwork-and-ftp-issues%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Socrates Schwartz is a new contributor. Be nice, and check out our Code of Conduct.
Socrates Schwartz is a new contributor. Be nice, and check out our Code of Conduct.
Socrates Schwartz is a new contributor. Be nice, and check out our Code of Conduct.
Socrates Schwartz is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1099887%2fnetwork-and-ftp-issues%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
Some additional information. I'm using FileZilla as an FTP client. The version of Ubuntu is the community server edition. I can ping the server from other systems in my network.
– Socrates Schwartz
Dec 10 at 20:51
Mind sharing your vsftpd configuration? It would be important to have that as well.
– Thomas Ward♦
Dec 10 at 20:53
Netplan is very picky about indentation. Is the above what your yaml file actually reads?
– chili555
Dec 10 at 20:58
When I issue netplan apply I get no errors. After changing the ip address I can ping the server using ping 192.168.0.201. So I assume it's working, however, I no longer have internet access. ifconfig shows the changes were made.
– Socrates Schwartz
Dec 10 at 22:04
vsftpd.conf looks like this (I removed comments for clarity in this post) listen=NO listen_ipv6=YES anonymous_enable=NO local_enable=YES write_enable=YES dirmessage_enable=YES use_localtime=YES xferlog_enable=YES connect_from_port_20=YES xferlog_std_format=YES secure_chroot_dir=/var/run/vsftpd/empty pam_service_name=vsftpd rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.key rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key ssl_enable=NO
– Socrates Schwartz
Dec 10 at 22:47