Re: SSL Telnet



You need to set up SSL on the server. This will involve the Digital
Certificate Manager (aka DCM) to set up a *SYSTEM certificate, and
configuring a port for secure connections. I have not done the second
part for Telnet. I have done it for a custom port, where we wrote code
for the SSL. I'm sure there are simple configuration settings for
Telnet. I just don't know where these are.

The biggest draw back can be the overhead of encrypting every
transaction. If you don't have one of the hardware features for
encryption, the CPU has to do it. I have never been able to get IBM to
say exactly how much workload this is. The workload is noticeable, so
not a good idea if you are low on CPU and/or memory. Encryption
involves math with very long integers. The CPU has to do the math
piecemeal, and uses memory to store numerous intermediate results. The
hardware features have chips which do the "big endian" math, which
the CPU can't. If you know a PhD in math, ask them what the heck
"big endian" is. All I know is that it is the math for very long
integers, where the result must be precise. In other words, no
approximate results in scientific notation allowed.

I have one client who chose to use an external PC solution for the SSL.
They have 13 servers, and did not want to do the SSL administration in
13 places. They also did not want to risk additional overhead, which
IBM did not nor could I estimate for them. The other advantage of the
PC approach was they put a hardware feature in it to do the encryption,
thus avoided buying 13 of those.

.



Relevant Pages

  • Re: SSL Overhead?
    ... Encryption itself isn't the sole culprit of data expansion. ... behind data expansion is the web service - and not SSL. ... I don't see how your comment on security has any credence. ...
    (microsoft.public.dotnet.framework.compactframework)
  • Re: Secure web authentication system w/o SSL and PKI
    ... Authentication has nothing to do with SSL. ... Why do you want symmetric encryption? ...
    (comp.security.misc)
  • RE: ssh and ids
    ... box is the termination point of the SSL tunnel. ... Subject: ssh and ids ... Your claim is only partially true Peter. ... Encryption remains the bane of network-based intrusion ...
    (Focus-IDS)
  • Re: Why is .NET CF 2.0 (HttpWebRequest Class) using 40-bit Encryption over HTTPS?
    ... EndGetResponsemethod on the HttpWebRequest object. ... encryption, or requires no encryption at all, then my code works perfectly. ... I am investigating how to properly implement SSL Certificates because our ... above) and it still fails to communicate with the newly configured server. ...
    (microsoft.public.dotnet.framework.compactframework)
  • Re: username and Password sent as clear text strings
    ... encryption of the traffic. ... SSL is used. ... client, it would seem like too much hassle for a low possibility hack. ... This is how all web applications on the planet work today by design. ...
    (Pen-Test)