Secure Shell Archives - Hack Ware News https://hackwarenews.com/tag/secure-shell/ News, ethical hacking, cyber crime, network security Thu, 25 Oct 2018 13:53:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 How to set up Linux Encrypted Networking Tool Secure Shell [SSH] in few easy steps on Ubuntu https://hackwarenews.com/how-to-set-up-linux-encrypted-networking-tool-secure-shell-ssh-in-few-easy-steps-on-ubuntu/ https://hackwarenews.com/how-to-set-up-linux-encrypted-networking-tool-secure-shell-ssh-in-few-easy-steps-on-ubuntu/#respond Wed, 30 Aug 2017 07:22:17 +0000 https://hackwarenews.com?p=955&preview=true&preview_id=955 How to set up Linux Encrypted Networking Tool Secure Shell [SSH] in few easy steps on Ubuntu Firstly, what is Secure Shell (SSH)? It is also known as Secure Socket Shell, a network protocol to provide admins with solid protection when accessing another host over the network. SSH will encrypt the network exchange with better […]

The post How to set up Linux Encrypted Networking Tool Secure Shell [SSH] in few easy steps on Ubuntu appeared first on Hack Ware News.

]]>
How to set up Linux Encrypted Networking Tool Secure Shell [SSH] in few easy steps on Ubuntu

Firstly, what is Secure Shell (SSH)?

It is also known as Secure Socket Shell, a network protocol to provide admins with solid protection when accessing another host over the network.

SSH will encrypt the network exchange with better authentication tools and features like Secure File Transfer Protocol [SFTP], Secure Copy [SCP], port and X session forwarding for better security of other insecure protocols.

In the case below we’ll walk you through few easy steps to set up Linux Encrypted Networking Tool SSH on Ubuntu

 

Linux Encrypted Networking Tool Secure Shell

Linux Encrypted Networking Tool Secure Shell

 

  1. sudo apt-get install openssh-server – to begin installation
  2. cp /etc/ssh/sshd_config /etc/ssh/sshd_config.factory-defaults – please make a copy of the default SSH config and rename it to factory default
  3. chmod a-w /etc/ssh/sshd_config.factory-defaults – modify the permissions
  4. gedit /etc/ssh/sshd_config – tweak config  file if required  ( install gedit if required)
  5. restart ssh – or on latest Ubuntu version use next  – systemctl restart ssh
  6. mkdir ~/.ssh – here we are creating  a folder where your generated key will be sored
  7. chmod 700 ~/.ssh – change the permissions
  8. ssh-keygen -t rsa – generate your key

At any point of time if asked always select “Y”

Once all steps above are completed, you are ready to connect.  At this point, you just have to open the terminal, find the IP address of the host you want to SSH.

You can run ifconfig to find out the IP address and to login to the SSH Server type in the terminal: ssh username@ip.address.here

image

Linux Encrypted Networking Tool Secure Shell

The post How to set up Linux Encrypted Networking Tool Secure Shell [SSH] in few easy steps on Ubuntu appeared first on Hack Ware News.

]]>
https://hackwarenews.com/how-to-set-up-linux-encrypted-networking-tool-secure-shell-ssh-in-few-easy-steps-on-ubuntu/feed/ 0