Eh I uninstalled and purged ufw. I will manually manage iptables. ufw had too much overhead for me and obfuscated my understanding of what is going on. Thanks for your help though. It helped me get back into iptables after so long.

Glad it was of some use for you in making your choice for LL your way
I want to suggest you check an app called fail2ban, it works with any firewall using iptables (including UFW), it is for people running servers like yourself.
Ok, something deeper than iptables is going on with LL 4.2.
I still can't even ping my LL machine for the other computer.
I flushed iptables with
and allowed all chains to accept:
Code:
sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
and still can't get a ping response from LL.
Any suggestions on what could be happening?
Setup another machine on the LAN and it can ping and ftp to the LL machine fine. I guess it's a problem on my first computer. :o
Check your BIOS on the unresponsive machine.
You can try this too:
https://linux.die.net/man/8/dmidecode if you can't access BIOS normally.
Possible commands below:
dmidecode -t 24 and dmidecode -t 30
Otherwise look for other hard block switches on the system.
TC
No bios, this is a vintage Atari ST computer. Turned out it was the IOGear wired-to-wifi adapter causing the problems. I connected the computer directly to the router with a cat5 cable and everything works now.

One last issue remains. In my vsftpd.conf file I have the local_root set but the path has a directory with spaces in it and vsftpd won't switch to it and it dumps me in my home directory.
Code:
local_enable=YES
local_root=/mnt/windows/home/users/My FTP Files/
What is the proper way to format this line to allow the path with spaces in it?
Eh I just changed the directory name with no spaces lol. Linux and it's spaces issues. :

(01-03-2019, 12:48 AM)timbuck2 link Wrote: [ -> ]Eh I just changed the directory name with no spaces lol. Linux and it's spaces issues. :
It doesn't have any 'spaces issues'. Use back slashes like so:
Code:
/mnt/windows/home/users/My\ FTP\ Files/
Yes, I tried that of course but it dumped me to my linux home directory instead of the local_root until I took the spaces out of the pathname.
Btw, thanks for LL. It's a great distro and am really enjoying it. I donated $20 to the project.