笔者目前使用的版本  【verycd下载】 http://www.verycd.com/topics/170716/
国内最新版本下载     【工大瑞普BBS】http://bbs.edurainbow.com/

安装过程请参照压缩包中的《使用指南.pdf》

>>>更多Tips不断整理中,随时更新

我对路由器做了初始化配置,如何保存到硬盘上,避免以后繁琐的操作

可以使用tftp。在路由器上都配置好了之后,一般要保存一个常规配置的备份

R5#copy running-config tftp://192.168.1.102/ccna.ver.route.R5
Address or name of remote host [192.168.1.102]?
Destination filename [ccna.ver.route.R5]?
!!
712 bytes copied in 2.556 secs (356 bytes/sec)

或者可以直接在路由器上show run,然后报滚屏的内容拷入txt文档

我们得到的是一个console会话还是telnet会话

虽然使用指南中,让我们用telnet来登陆路由器,但是,事实上我们得到的是一个console会话

R5#show users
    Line       User       Host(s)              Idle       Location
*  0 con 0                idle                 00:00:00  

  Interface  User      Mode                     Idle Peer Address

这里稍微解释一下为什么得到的是console会话-事实上,我们telnet连接的是dynamips Server,dynamips使用串口驱动连接着所有的路由器和交换机的console,然后把这些串口分别映射成服务端口,让我们登陆。

如何保存配置文件

在安装目录下找到net目录,使用记事本(或者其他文本编辑器)打开*.net文件(*表示你要使用的实验台),将其中的confreg = 0×2142替换为confreg = 2102。重启dynamips服务,即可使用write保存你的路由器配置。

如何与本地连接通信

实验台中的拓扑默认有一台路由器通过交换机与“本地连接”相连。找出该台路由器,配置与交换机相连端口的IP地址即可。For example:
ccna 路由版,R5

R5>enable
R5#configure terminal
R5(config)#interface ethernet 1/3
R5(config-if)#ip address 192.168.1.105 255.255.255.0
R5(config-if)#no shutdown

R5#ping 192.168.1.103

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.103, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 44/65/140 ms


Trackback

no comment untill now

Add your comment now