Sabtu, 07 Juli 2018

How to Setting SSH Server on Kali Linux

Hey guys, I want to explain setting SSH Server on Kali Linux. In this tutorial, I used VPS with Kali Linux Operating System. The first, check your services status and please activate your SSH service:
# service --status-all 
# service ssh start
 


Then, I will try to install "open ssh" and I got information that my open ssh is already the newest:
# apt-get install openssh-server
# service ssh restart


I will change SSH port from 22 (default) to "1987" in file "sshd_config" and follow my configuration:
# nano /etc/ssh/sshd_config

























# service ssh restart
# ssh-keygen -t rsa

  
The last activity I want to change "Message of The Day Banner" on Kali Linux in displayed when users login. Please edit your file on "/etc/motd" and restart ssh service after you have completed the edit. If you want to custom text, please visit "http://patorjk.com/software/taag/" and copy paste to "/etc/motd":
# nano /etc/motd
# service ssh restart












Thanks for all ^_^

Reference:
https://www.youtube.com/watch?v=zKnmYXEOCRQ
http://www.drchaos.com/enable-ssh-on-kali-linux-enable-ssh-on-kali-linux/

0 komentar: