Find the port number of current session in PuTTY

10,881

Solution 1

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.

Solution 2

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.

Share:
10,881

Related videos on Youtube

Dr. Essen
Author by

Dr. Essen

Updated on September 18, 2022

Comments

  • Dr. Essen
    Dr. Essen over 1 year

    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.

    • Florian Castellane
      Florian Castellane about 6 years
      from the host side: unix.stackexchange.com/questions/54975/… ss -nlput | grep sshd will show tcp LISTEN 0 0 *:22 *:* sshd 1234 42 -> port 22
    • Guntram Blohm
      Guntram Blohm about 6 years
      After reading your answer, I'd like you to clarify the question. The standard ssh port is 22, so the question sounds like you want to know the port the client used when setting up the connection to server 22. But the answer answers how to find out which server port you connected to, instead of 22. This makes sense in some cases - many virtual host providers give your vhost an ipv6, address, and very few forwarded ipv4 ports, so selecting the ssh server port determines which vhost you're connecting to - but that's not what the typical reader of your question would expect.
  • Dr. Essen
    Dr. Essen about 6 years
    Please read the question properly.
  • Martin Prikryl
    Martin Prikryl about 6 years
    I read it. Is there anything wrong with my answer?
  • Dr. Essen
    Dr. Essen almost 6 years
    You are right, I got confused with "and a port number of the current session:" and my query for the server which I want to connect. Never mind. :)