M BUZZ CRAZE NEWS
// news

Find the port number of current session in PuTTY

By Gabriel Cooper

I have list of server names in the PuTTY saved sessions. I connected to one session and can know the IP address of the machine connected to using ifconfig for Ubuntu and ipconfig for Windows. But how to know the port number which has been used in to save those sessions in PuTTY while/after connecting?

I tried echo "$SSH_CLIENT" but didn't get the right IP, so, the port might also be wrong.

2

2 Answers

To answer your literal question: To find an IP address and a port number of the current session:

  • Right click PuTTY console window title;
  • Select Event Log;
  • The very first entry in the log says:

    Connecting to <ip> port <port>

    enter image description here


Though in majority of cases the port will be 22, as that's the standard SSH port.

3

After spending some time with putty, I figured out myself.

In putty configuration, click name in the Saved Sessions, then click Load button, one can see the port number in the above Port field.

Open Putty -> select Session -> Load -> See the Port Field

Sometimes, simple things just doesn't get easily caught with our eyes.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy