Windows与虚拟机Linux之间的访问问题


Putty是一个通过SSH管理远程Linux服务器的软件。现在要实现Windows访问远端主机。我的虚拟机的ip是192.168.137.128,我的本机的ip是192.168.18.7,并要保证它们能互相ping通。由于我用的CentOS-5.5不需要任何的配置就实现了Windows访问远端的Linux主机。

相关阅读:http://www.bkjia.com/search.aspx?Where=Nkey&Keyword=putty

  1. [root@localhost ~]# ping 192.168.18.7  
  2. PING 192.168.18.7 (192.168.18.756(84) bytes of data.  
  3. 64 bytes from 192.168.18.7: icmp_seq=1 ttl=128 time=7.97 ms  
  4. 64 bytes from 192.168.18.7: icmp_seq=2 ttl=128 time=1.15 ms  
  5. 64 bytes from 192.168.18.7: icmp_seq=3 ttl=128 time=1.12 ms  
  6. 64 bytes from 192.168.18.7: icmp_seq=4 ttl=128 time=1.20 ms  
  7. 64 bytes from 192.168.18.7: icmp_seq=5 ttl=128 time=1.16 ms  
  8. 64 bytes from 192.168.18.7: icmp_seq=6 ttl=128 time=1.16 ms  
  9. 64 bytes from 192.168.18.7: icmp_seq=7 ttl=128 time=1.03 ms  
  10.   
  11. C:\Documents and Settings\Administrator>ping 192.168.137.128  
  12.   
  13. Pinging 192.168.137.128 with 32 bytes of data:  
  14.   
  15. Reply from 192.168.137.128: bytes=32 time=3ms TTL=64  
  16. Reply from 192.168.137.128: bytes=32 time=2ms TTL=64  
  17. Reply from 192.168.137.128: bytes=32 time=1ms TTL=64  
  18. Reply from 192.168.137.128: bytes=32 time=2ms TTL=64  
  19.   
  20. Ping statistics for 192.168.137.128:  
  21.     Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),  
  22. Approximate round trip times in milli-seconds:  
  23.     Minimum = 1ms, Maximum = 3ms, Average = 2ms  

相关内容