Security Stuff!!
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode

Configuring SSH

SSH key generator generate keys by command ssh-keygen -t rsa and then follow the default configuration. Generating public/private rsa key pair. Enter file in which to save the key (/home/example/.ssh/id\_rsa): Created directory '/home/example/.ssh'. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/example/.ssh/id\_rsa. Your public key has been saved in /home/example/.ssh/id\_rsa.pub. The key fingerprint is: 5e:3f:6f:57:42:d0:b2:f5:aa:98:53:0f:20:5d:b0:2a example@example it will generates 2 files in ~/.
Read full post

Port Forwarding

SSH Port Forwarding/SSH tunneling Allow to establish SSH session (secured connection) and then making TCP connection (unsecured connection) inside the tunnel or through it, it’s used for securing unsecured connection. Local Port Forwarding To understand port forwarding let’s see examples, when i want to access my mail client via pop (post office protocol) port 110, so to secure this connection, i should first establish SSH session, and then make a normal TCP connection through this channel
Read full post