Dracula_ wrote:
Hi,
Its 5:26 AM lol... after 6+ hours NONE stop research on how to fix putty on GNS3 as it was opening and closing after a few second.. and couldnt find a SINGLE article ANYWHERE,, i started doing my own research and thinking,
( Teraterm Pro worked fine but putty wasnt, and im a big fan of putty so ... hey :P i got to make it work and be a happy user ) lol
anyway a very simple idea kicked in my head, when i looked at the 'Terminal Command'
C:\Program Files\Putty\putty.exe -telnet %h %p
( C:\Program Files\Putty\putty.exe is my putty directory, you can put it any where i guess )
and for some strainge reasons my pc is getting localhost and 127.0.0.1 not the same, which should be..
and %h is the host ( which will use localhost ) and not 127.0.0.1 ( we want 127.0.0.1 )
so just simply replace %h with 127.0.0.1
C:\Program Files\Putty\putty.exe -telnet 127.0.0.1 %p
And you are good to go... worked for me, but close any other console as it wont abviously open 2 or more at the same time, 1 for each router.
Im using Windows Vista, but it should work for any other windows OS i guess.. I hope it helped you..
P.S i just done another check to see why it wont accept localhost but 127.0.0.1, and on my pc localhost is looking up my ipv6 ip, which i forgot to disable on my wireless, and 127.0.0.1 is looking up my ipv4 which im using now.. ( i checked by pinging, ) you see that localhost will get resolved to a ipv6 sort of thing...
Good Luck,
Putty I love you lol..
Hi,
In windows static DNS entrys is stored in following text file:
Code:
C:\Windows\System32\drivers\etc\hosts
And here is content (Vista):
Code:
# Copyright (c) 1993-2006 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
127.0.0.1 localhost
::1 localhost
It show that 127.0.0.1 (address) is binded to localhost (name) in my case.
It would be nice to see this file in your case.