Archives
- October 2024
- August 2024
- June 2024
- May 2024
- February 2024
- December 2023
- October 2023
- June 2023
- April 2023
- August 2016
- June 2016
- May 2016
- February 2016
- December 2015
- October 2015
- May 2015
- April 2015
- January 2015
- December 2014
- November 2014
- October 2014
- January 2014
- December 2013
- November 2013
- October 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- April 2012
Categories
Meta
Category Archives: SSH
Allow ssh only as a single user or from specific IPs
The following are the relevant config bits in /etc/ssh/sshd_config # disable password authentication globally PasswordAuthentication no Either by username: # now re-enable it down at the very end of the sshd_config file like thus Match User rack PasswordAuthentication yes or … Continue reading
Connecting to an external MySQL server through an SSH tunnel
Scenario: You’re at home, and you want to connect to a mysql server on the other side of a firewall. There is a machine with ssh open on it that you can use as a gateway. On your home machine: … Continue reading
SSH stuff
Use the -i option to specify a new key ssh -i newkey root@108.166.84.188 How to strip a passphrase from an openssl key cp filename.key filename.key.encrypted openssl rsa -in filename.key -out filename.key.nopass cp filename.key.nopass filename.key How to add or change a … Continue reading