PuTTY and how to keep alive telnet session -
I need to keep the telnet session alive in the cyst but I still can not understand how to do this. I have this setting:
And if I just try for example:
$ get / signout http / 1.1 If the check is done "Do not close the window on the result" is the inactive window and if the "Close window on check exit" is checked, the window closes after the request. But for example, I must first give something in the session on request and print it on another request which is in session. How do I set it? Thanks
Keep the wrong- alive. TCP Kupalive is a feature of a TCP stack that periodically (every 4 hours is the default, if I remember correctly) sends an empty data packet, to ensure that on the other hand the connection to open end It's a network-level feature and in any case the server (or client) will not have reason to close the not connection.
The HTTP has a line in the Keep-Alive request header, which requests that the server does not close the connection after responding to this request so that the next request will be sent to the same TCP connection To be sent with The server can choose not to respect this request.
Comments
Post a Comment