Page 1 of 1
Disable FTP and telnet via SSH??
Posted: Sat Dec 05, 2015 4:43 pm
by djcool
Hello is there a command to disable with ssh the telnet and busybox ftp cause its unsecure to let ip open.....
Re: Disable FTP and telnet via SSH??
Posted: Sat Dec 05, 2015 5:13 pm
by mad_ady
I don't think the're started as services, so you could write an ugly but effective kill -9 $(ps -ef | grep telnetd | awk '{print $2}'). Check before executing
Re: Disable FTP and telnet via SSH??
Posted: Sat Dec 05, 2015 5:19 pm
by zoelechat
"Security" doesn't depend on TV but on your network

Re: Disable FTP and telnet via SSH??
Posted: Sat Dec 05, 2015 5:33 pm
by mad_ady
Network security is always effective if implemented in layers. Host "hardening" should be such a layer. By the way - do hosts.allow/hosts.deny work in these systems?