下面是我公司cisco2801路由器配置PAT实现上网的配置文件,有配置需求的朋友,修改ip,直接拷贝即可。
ena
conf t
hostname router_1
int f0/0
ip add 121.15.xxx.xxx 255.255.255.248 //配置外网接口的ip
no sh
exit
int f0/1
ip add 192.168.0.1 255.255.255.0 //配置外网接口的ip
no sh
exit
ip route 0.0.0.0 0.0.0.0 121.15.xxx.1 //配置一个默认路由
access-list 10 permit 192.168.0.0 0.0.0.255 //定义一个可以上网的网段
ip nat inside source list 10 int f0/0 overload //端口复用配置
int f0/0
ip nat outside
exit
int f0/1
ip nat inside
exit
no ip http server //禁止web登录
enable password pswd1234
line vty 0 4
access-c 10 in //只允许控制列表10定义的iptelnet连接
password Tpswd1234
exit
exit
wr
遇到的问题,配置完成之后上网正常,断电或者reload之后,保存的配置全丢了,很郁闷。
后来才找到原因:之前我破解完密码之后,忘了把寄存器的值改回来,改回来之后好了。
show version //查看一下寄存器的指是不是 0x2142
config-register 0x2102 //把寄存器值0x2142修改为0x2102