路由器的基本配置命令详解
步骤 2:复制命令输出。
选择命令输出。在 HyperTerminal 的“编辑”菜单中,选择“复制”命令。
步骤 3:将输出粘贴到记事本。
打开记事本。记事本通常位于开始菜单下的所有程序 > 附件中。在记事本的“编辑”菜单中,单击粘贴。
步骤 4:编辑命令。
对路由器应用启动脚本之前,需要对某些命令进行编辑或添加一些命令。其中一些更改包括:
为正在使用的 FastEthernet 接口和串行接口添加 no shutdown 命令。
将 enable secret 命令中的加密文本替换成正确的口令。
删除各接口的 mac-address 命令。
删除 ip classless 命令。
清除不使用的接口。
按如下所示编辑记事本中的文本:
hostname R1
!
!
enable secret class
!
no ip domain-lookup
!
interface FastEthernet0/0
description R1 LAN
ip address 192.168.1.1 255.255.255.0
no shutdown
duplex auto
speed auto
!
interface Serial0/0/0
description Link to R2
ip address 192.168.2.1 255.255.255.0
clock rate 64000
no shutdown
!
!
!