nat的负载匀衡
原创
©著作权归作者所有:来自51CTO博客作者相儒以沫的原创作品,请联系作者获取转载授权,否则将追究法律责任
R1(config)# no ip routing
R1(config)# ip default-gateway 193.1.1.1
R1(config)# int e0/1
R1(config-if)# ip add 193.1.1.2 255.255.255.0
R1(config-if)# no shut
R1(config-if)# duplex full
R1(config-if)# end
R1#
R2(config)# no ip routing
R2(config)# ip default-gateway 193.1.1.1
R2(config)# int e0/1
R2(config-if)# ip add 193.1.1.3 255.255.255.0
R2(config-if)# no shut
R2(config-if)# duplex full
R2(config-if)# end
R2#
S1(config)# int range f0/1 - 3
S1(config-if-range)# no shut
S1(config-if-range)# speed 10
S1(config-if-range)# duplex full
S1(config-if-range)# end
R3(config)# int e0/1
R3(cnnfig-if)# ip add 193.1.1.1 255.255.255.0
R3(cnnfig-if)# no shut
R3(cnnfig-if)# duplex full
R3(cnnfig-if)# int e0/2
R3(cnnfig-if)# ip add 192.168.1.1 255.255.255.0
R3(cnnfig-if)# no shut
R3(cnnfig-if)# duplex full
R3(cnnfig-if)# exit
R3(config)# access-list 1 permit 195.1.1.1
R3(config)# ip nat pool tom 192.168.1.2 192.168.1.3 netmask 255.255.255.0 type rotary
R3(config)# ip nat inside destination list 1 pool tom
R3(config)# int e0/1
R3(config-if )# ip nat outside
R3(config-if )# int e0/2
R3(config-if )# ip nat inside
R3(config-if )# end
R3#
S2(config)# int range f0/1 - 3
S2(config-if-range)# no shut
S2(config-if-range)# speed 10
S2(config-if-range)# duplex full
S2(config-if-range)# end
R4(config)# enable password 123
R4(config)# line vty 0 4
R4(config-line)# password 123
R4(config-line)# login
R4(config-line)# exit
R4(config)# no ip routing
R4(config)# ip default-gateway 192.168.1.1
R4(config)# int e0/1
R4(config-if)# ip add 192.168.1.2 255.255.255.0
R4(config-if)# no shut
R4(config-if)# duplex full
R4(config-if)# end
R4#
R5(config)# enable password 123
R5(config)# line vty 0 4
R5(config-line)# password 123
R5(config-line)# login
R5(config-line)# exit
R5(config)# no ip routing
R5(config)# ip default-gateway 192.168.1.1
R5(config)# int e0/1
R5(config-if)# ip add 192.168.1.3 255.255.255.0
R5(config-if)# no shut
R5(config-if)# duplex full
R5(config-if)# end
R5#
验证:
(1) 在R1上telnet 195.1.1.1会登录到R4
(2) 在R2上telnet 195.1.1.1会登录到R5
上一篇:nat 地址转换
下一篇:OSPF ipv6 路由配置
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
使用ansible部署lvs集群的NAT模式
ansible部署lvs集群NAT模式
lvs ansible -
mstp+vrrp+ospf+nat
mstp+vrrp+ospf+nat
优先级 ci Standard -
NAT负载均衡的搭建
一个简单的NAT负载均衡的服务器搭建 基于 ip地址 端口的
易懂负载均衡 NAT -
NAT负载均衡_ftp
NAT负载均衡_ftp配置参数:R2:ip nat pool 1 10.1.2.2 10.1.2.3 netmask 255.255.255.0 type rotary //内网服务器地址池ip nat inside destination list 1 pool 1 //目标NAT绑定access-list 1 permit 192.168.1.2 //路由器外网接口IP地址interface FastEthernet1/0ip nat inside //内网接口interface FastEthernet2/0ip nat outside //外网接口
ccnp 路由器 nat tcp NAT负载均衡 TCP负载均衡