二、实验配置

1、Router2的配置

  1. Router2#sh startup-config  
  2. Using 580 bytes  
  3. !  
  4. version 12.4  
  5. service password-encryption  
  6. !  
  7. hostname Router2  
  8. !  
  9. !  
  10. enable password 7 0822455D0A16  
  11. !  
  12. !  
  13. !  
  14. !  
  15. ip ssh version 1  
  16. !  
  17. !  
  18. interface FastEthernet0/0  
  19. no ip address  
  20. duplex auto  
  21. speed auto  
  22. shutdown  
  23. !  
  24. interface FastEthernet0/1  
  25. ip address 192.168.1.1 255.255.255.0  
  26. duplex auto  
  27. speed auto  
  28. !  
  29. interface Serial0/3/0  
  30. ip address 192.168.2.1 255.255.255.0  
  31. clock rate 56000  
  32. !  
  33. interface Vlan1  
  34. no ip address  
  35. shutdown  
  36. !  
  37. router eigrp 10            \\启用EIGRP路由协议  
  38. network 192.168.1.0  
  39. network 192.168.2.0  
  40. auto-summary  
  41. !  
  42. ip classless  
  43. !  
  44. !  
  45. !  
  46. !  
  47. !  
  48. line con 0  
  49. line vty 0 4  
  50. password 7 0822455D0A16  
  51. login  
  52. !  
  53. !  
  54. end 


相关内容