Ssh
Frequently used ssh snippets
Was this helpful?
Frequently used ssh snippets
Was this helpful?
Was this helpful?
Say we want to connect to a web server running at example.com:8080
and we have user
to connect to the server. We can create a tunel to see the server on our local port 9000
by doing:
ssh -L 9000:localhost:8080 user@example.com
localhost:8080
, is to forward connections from your local port 9000
to localhost:8080
on your server. Now we can simply connect to our webserver.
chmod 400 *.pem
execute
sudo adduser user
then, edit /etc/ssh/sshd_config
and add/edit:
AllowUsers user
PasswordAuthentication yes
then, execute
sudo service ssh reload
Add to sudoers
usermod -aG sudo user
Review ssh login attemps
sudo vim /var/log/auth.log
Copy the file "foobar.txt" from the local host to a remote host
scp foobar.txt your_username@remotehost.edu:/some/remote/directory