CISCOOct 30th,2009iocblog
cisco TFTP备份:
1.电脑现在安装cisco TFTP服务器,打开TFTP
2.备份:进入路由器,使用copy startup-config tftp 回车,填入你的TFTP服务器ip地址,回车,输入需要保存的配置文件名称,不填写则为交换机默认名称,在回车,出现!!!号表示备份成功。
3.恢复:进入路由器,使用copy tftp: startup-config 回车,填入你的TFTP服务器ip地址,输入配置文件名称,回车,OK。
   
阅读全文
TFTP
,备份
CISCOOct 30th,2009iocblog
interface FastEthernet0/0
ip address 10.1.5.130 255.255.255.252
ip access-group 102 in
ip access-group 105 out
ip nat outside
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 158.88.0.254 255.255.0.0
ip access-group 102 in
ip nat inside
speed auto
full-duplex
!
ip nat pool globalpool 10.1.5...   
阅读全文
NAT
CISCOOct 30th,2009iocblog
实例1:禁止172.16.4.0/24网段中除172.16.4.13这台计算机访问172.16.3.0/24的计算机。172.16.4.13可以正常访问172.16.3.0/24。
路由器配置命令
access-list 1 permit host 172.16.4.13 设置ACL,容许172.16.4.13的数据包通过。
access-list 1 deny any 设置...   
阅读全文
ACL
CISCOOct 30th,2009iocblog
方法一:
1、 冷启动路由器
2、 在冷启动后60秒内按住CTRL+C
3、 修改NVRAM寄存器的值
rommon 1>confreg 0x2142
4、重新启动路由器
rommon 2>reset
5、 进入特权模式(不需要密码):
router>enable
6、 如果还想让以前的配置文件生效,把NVRAM中的备份配置文件拷到RAM中去:
router#copy startup-config running-config
或router#config ...   
阅读全文
路由器
,密码