40. (config)# line con 0 (config-line)# password china123 (config-line)# login 配置console口密码。假设为china123 41. (config)# enable password china123 配置进入特权模式的明文密码 42. (config)# enable secret china456 配置进入特权模式的加密密码 43. (config)# service password-encryption 加密明文密码 44. (config)# line vty 0 4 (config-line)# password china123 (config-line)# login 配置交换机VTY密码。0 4表示允许进入的接口号数假设密码为china123 45. # telnet 192.168.1.2 远程登录交换机或路由器。用户模式也可用该命令。 46. (config)# ip default-gateway 192.168.1.1 配置默认网关 47. # copy tftp flash # copy flash tftp升级路由器IOS。从远程tftp服务器上复制路由器的IOS 把路由器的IOS复制到远程tftp服务器上备份 48. # copy ftp flash # copy flash ftp 升级路由器IOS。从远程ftp服务器上复制路由器的IOS 把路由器的IOS复制到远程ftp服务器上备份路由器密码恢复(拔电源重启60s内按Ctrl+Pause Break键进入ROM Monitor) 49. rommon1>confreg 0x2142rommon2>reset Router# copystartup-config running-config # conf t (config)# line con 0 (config-line)# nopassword (config-line)# exit (config)# config-register 0x2102 (config)# exit # copy running-configstartup-config修改配置寄存器值为2142。重启,进setup模式。把startup-config配置保存到running-config中。设置console口密码为空将配置寄存器的值改回0x2102 保存配置交换机密码恢复(按住MODE键→插电源→出现Switch:时松开MODE键) 50. flash_init renameflash:config.textflash:config.old boot # renameflash:config.oldflash:config.text # copy flash:config.textsystem:running-config# conf t (config)# line con 0 (config-line)# nopassword (config-line)# end # copyrunning-config startup-config初始化FLASH 重命名FLASH中的配置文件,这样就不会加载密码重启(或reset)→按Ctrl+C键直接进入系统。把配置文件的名字改回来手工加载配置文件设置console口密码为空保存配置第九章 Benet公司网络组建工程 51. Router (cofig)# ipdhcp pool global 配置DHCP服务。定义地址池,假设pool name是global。 52. Router(dhcp-config)# network 192.168.1.0 255.255.255.0 动态分配IP地址段 53. Router(dhcp-config)# default-router 192.168.1.254 设定网关地址 54. Router(dhcp-config)# dns-server 192.168.1.253 为客户端配置DNS地址 55. Router(dhcp-config)# lease 3 设定地址租期,假设为3天 56. Router(dhcp-config)# ipdhcp excluded-address192.168.1.1 192.168.1.20 预留静态分配的IP地址范围
|