Logging to multiple servers

Guys, i need to login to multiple servers from the desktop or using putty. Is there any way i can do it.

Currently i am using this for single server login.

Creating a putty windows short cut and setting target as below in properties
"C:\Program Files\Putty\putty.exe" -ssh userID@ServerName1 -pw userpassword

i have 3 servers (ServerName1, ServerName2, ServerName3)

Can this be modified to login in all the servers in one click.

Thanks,
Nick

You may write a windows batch file using multiple "start" commands:

start "C:\Program Files\Putty\putty.exe" -ssh userID@ServerName1 -pw userpassword
start "C:\Program Files\Putty\putty.exe" -ssh userID@ServerName2 -pw userpassword
start "C:\Program Files\Putty\putty.exe" -ssh userID@ServerName3 -pw userpassword

The last time, I had to use windows as desktop, I used Cygwin bash to create my workspace of different sized terminals in optimal position on the desktop with one click.

The ssh remote connection is easy when configured in .ssh/config with normal openssh-client, which is available with Cygwin

I tried batch file with start command but its not working....Getting error as windows can not find -ssh

I'm not quite fit with Windows. You can check out the help of the start command with start /? in windows console.

Hi,

You can use superputty, it allow connect to multiple servers at same time.

1 Like

Its remote system...No software's are allowed to be installed.

Hi,

OK, I've run the same commands on my windows laptop and it works fine without it start. EJ

"C:\Program Files\Putty\putty.exe" -ssh userID@ServerName3 -pw userpasswor

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.