實驗目的:服務器
掌握TCP的負載均衡配置負載均衡
理解NAT的工做原理dom
實驗環境拓撲圖及要求:ide
要求:router
假定有3個服務器10.1.1.一、10.1.1.2和10.1.1.3,使用一個虛擬主機10.1.1.100來表明這個服務器組,要求實現負載均衡來實現服務器的訪問。blog
實驗步驟:【必寫】ip
第一步: 設置外部端口IP地址get
Int f0/0it
Ip add 192.168.1.1 255.255.255.0io
No sh
exit
第二步:設置內部端口IP地址
Int f1/0
Ip add 10.1.1.10 255.255.255.0
No sh
exit
第三步:爲虛擬主機定義一個標準的IP訪問控制列表
Router(config)#access-list 1 permit 10.1.1.100
第四步:給真實主機定義一個NAT地址集
Router(config)#ip nat pool jl 10.1.1.1 10.1.1.3 prefix-length 24 type rotary
第五步:設置訪問控制列表和NAT地址集之間的映射
Ip nat inside destination list 1 pool jl
第六步:在內部和外部端口上啓用NAT
Int f0/0
Ip nat outside
exit
Int f1/0
Ip nat inside
end
配置命令:(實現全網互通)
RA:
en
conf t
no ip domain-lo
host RA
int f1/0
ip add 10.1.1.10 255.255.255.0
no sh
exit
int f0/0
ip add 192.168.1.1 255.255.255.0
no sh
exit
router rip
network 192.168.1.0
network 10.1.1.0
exit
access-list 1 permit 10.1.1.100
ip nat pool jl 10.1.1.1 10.1.1.3 prefix-length 24 type rotary
ip nat inside destination list 1 pool jl
int f1/0
ip nat inside
exit
int f0/0
ip nat outside
end
-----------------------------------------------------
RB:
en
conf t
no ip domain-lo
host RB
int f0/0
ip add 192.168.1.2 255.255.255.0
no sh
exit
int f1/0
ip add 172.16.1.1 255.255.255.0
no sh
exit
router rip
network 192.168.1.0
network 172.16.1.0
end
--------------------------------------------------------
PC1:
en
conf t
host PC1
no ip routing
no ip domain-lo
int f0/0
ip add 10.1.1.1 255.255.255.0
no sh
exit
ip default-gateway 10.1.1.10
end
---------------------------------------------------------
PC2:
en
conf t
host PC2
no ip routing
no ip domain-lo
int f0/0
ip add 10.1.1.2 255.255.255.0
no sh
exit
ip default-gateway 10.1.1.10
end
---------------------------------------------------------
PC3:
en
conf t
host PC3
no ip routing
no ip domain-lo
int f0/0
ip add 10.1.1.3 255.255.255.0
no sh
exit
ip default-gateway 10.1.1.10
end
---------------------------------------------------------
查看轉換列表