computing
  • 28

Solved Need Help Write Batch File To Login Cisco Router With PuTTY

  • 28

can any body hep me in writing a batch file to login cisco router with putty i’m using putty in windows 2008

message edited by dhanusha

Share

1 Answer

  1. That would be the command you would need to run inside the batchfile to invoke putty.

    You could also run that from the command line to invoke putty as well.

    The “yourusername@yourserverlocationIusemyddns ” portion would need to be tailored to your system. Most routers don’t have a DNS “name” and the default login on most is username = admin, password = admin. So, assuming your router is at 192.168.1.1 your putty command would look as follows:

    putty.exe admin@192.168.1.1 -pw admin

    It matters not how straight the gate,
    How charged with punishments the scroll,
    I am the master of my fate;
    I am the captain of my soul.

    ***William Henley***

    • 0