假设 两个 E口 分别 E0 E1 。E0接外口
1,基本配置
en
conf t
int e0
ip add 218.64.64.157 255.255.255.128
no shu
exit
int e1
ip add 192.168.1.1 255.255.255.0
no shu
2, 添加默认路由
ip route 0.0.0.0 0.0.0.0 e0
3,设置 内网 DHCP
ip dhcp pool mypool
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 202.101.224.68
dns-server 202.101.226.68
exit
-------------------------------------------------------------
如果外网设备 给你提供了 DHCP服务 你需要如下 配置
int e0
ip address dhcp
no shu
int e1
ip add 192.168.1.1 255.255.255.0
no shu
ip dhcp pool mypool
im all
default-router 192.168.1.1
network 192.168.1.0 255.255.255.0
等会看看 有没有 缺省路由被推过来 如果没有 自己手动填写上
最后 NAT 部分
ip nat in so li natacl in e0 ov
int e0
ip nat outside
int e1
ip nat inside
ip access-li ex natacl
pe ip 192.168.1.0 0.0.0.255 an
exi
!!!!!last !!!
wr
做nat地址转换
步骤:一:做个访问控制列表,二,启用nat转换功能,三,在接口上应用这个nat。
先在全局配置模式下
access-list 10 permit 192.168.1.0 0.0.0.255
ip nat pool (你随便起的名字) 218.64.64.156 218.64.64.156 netmask 255.255.255.128
ip nat inside source list 10 pool (你自己起的名字) overload
在路由器连接内网的接口下
ip nat inside
在路由器连接外网的接口下
ip nat outside
补充下楼上的回答。
在全局配置模式下
access-list 11 permit 192.168.1.0 0.0.0.255
ip nat pool cisco 218.64.64.156 218.64.64.156 netmask 255.255.255.128
ip nat inside source list 11 pool cisco overload
在路由器连接内网的接口下
ip nat inside
在路由器连接外网的接口下
ip nat outside