Archives for “ssh”

Today I needed to access a webserver with phpMyAdmin configured as default page if no virtual host matched the requested one. It was configured to deny access from outside so my solution was to use a SSH tunnel: carlos$ ssh -L 10080:192.168.1.3:80 user@host So I can access phpMyAdmin writting this in my browser address bar: localhost:10080 That’s all!