• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

why does ssh require a password, and ssl doesn't

VirtualLarry

No Lifer
just wondering.

couldn't you provide an ssh password through an ssl web page?

wondering about securing a connection over unsecured wireless

also, is there an ssl or ssh tunneling program?
 
just wondering.

couldn't you provide an ssh password through an ssl web page?

wondering about securing a connection over unsecured wireless

also, is there an ssl or ssh tunneling program?

SSL uses certificates and public key auth to authenticate the server to the client and encrypt the stream but there's (usually) no client authentication happening, although client auth via a second cert is possible. SSH always authenticates both the client and the server, usually with a password for the former but doing it via public key is also popular.

Recent versions of OpenSSH support setting up a VPN tunnel and I think they'll do SOCKS proxying as well if you just want to tunnel a specific app.
 
Last edited:
Back
Top