How to access Kali or Remote machine with cmd prompt
SSH Command in Linux
ssh stands for “Secure Shell”. It is a protocol used to securely connect to a remote server/system. ssh is secure in the sense that it transfers the data in encrypted form between the host and the client. It transfers inputs from the client to the host and relays back the output. ssh runs at TCP/IP port 22.
first check ip of that machine in k
ali using ifconfig & in window ipconfig
if cmd display error like: ssh: connect to host port 22 : connection refused
then u have to install ssh in device
Change Your User go to Root User:- $sudo -i
Install SSH :- sudo apt-get update sudo apt-get install ssh systemctl restart ssh.service systemctl enable ssh.service systemctl status ssh.service
cmd for access kali :
ssh user_name@host(IP/Domain_name)
Post a Comment
0Comments