cisco 1841路由器恢复出厂设置分为以下几步:
1,设备冷重启,按开关关电并重开后进入以下时刻,按Ctrl+Break组合键,进入启动中断界面。
2,进入启动中断界面后, 输入 confreg 0x2142回车,进入IOS启动,加载启动配置文件nvram:startup-config。
3,进入原厂设置后,用more命令读取出存档的启动配置。
4,备份配置等 *** 作完成后,请恢复启动设置参数 0x2102,重启调用启动配置。
Cisco 1841集成多业务路由器能够以线速提供安全的数据访问应用,从而为中小企业和小型分支机构提供全套功能和灵活性,以便实现安全的互联网和内部网接入。
它可通过新型架构提供安全的并发服务,因而价值更高。利用AIM、新型高速WAN接口卡(HWIC)和VWIC模块化特性,用户可以使用多种连接方式。另外,由于支持30多种现有的1700系列WAN接口卡(仅限WIC/VIC/VWIC数据模式),因而能够实现信息保护。
配置ACL
access-list 1 permit 192.168.0.0 0.0.0.255
配置NAT
ip nat inside source list 1 int XX overload
这里的int XX,是本地出口路由器与运营商连接的端口
指定outside
int xx
ip nat outside
这里的XX同上
指定inside
int yy
ip nat inside
这里的YY接口,是下联PC或LAN的接口(PC网关)
HXrouter#show run
Building configuration...
Current configuration : 1503 bytes
!
! Last configuration change at 07:41:21 UTC Sat Mar 21 2015 by hailong
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
!
hostname HXrouter
!
boot-start-marker
boot-end-marker
!
no aaa new-model
ip cef
!
no ip domain lookup
no ipv6 cef
ipv6 multicast rpf use-bgp
!
multilink bundle-name authenticated
!
username hailong privilege 15 password 0 hailong
username cisco privilege 15 password 0 cisco
!
tEthernet0/1
no ip address
media-type rj45
speed auto
duplex auto
negotiation auto
!
interface GigabitEthernet0/2
description *CNC1*
ip address 220.33.76.19 255.255.255.248
ip nat outside
media-type rj45
speed auto
duplex auto
negotiation auto
!
interface GigabitEthernet0/3
ip address 10.10.2.1 255.255.255.0
ip nat inside
media-type rj45
speed auto
duplex auto
negotiation auto
!
ip nat inside source list nat interface GigabitEthernet0/2 overload
ip nat inside source static tcp 192.168.2.104 9080 220.33.76.19 9080 extendable
ip forward-protocol nd
ip http server
no ip http secure-server
!
!
ip route 0.0.0.0 0.0.0.0 220.33.76.17
ip route 192.168.0.0 255.255.0.0 10.10.2.254
!
ip access-list extended nat
permit ip any any
!
!
!
!
control-plane
!
!
line con 0
stopbits 1
line aux 0
stopbits 1
line vty 0 4
login local
!
!
end
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)