1. 程式人生 > >NAT配置

NAT配置

內網訪問外網 config text mark itl 測試 router pro 思路

1,實驗名稱:NAT配置內網訪問外網

2,實驗目的:不同網絡的路由器進行訪問

3,實驗拓撲:

技術分享圖片

4,配置步驟:

R3:

R3(config)#INTerface GI0/0

R3(config-if)#ip address 192.168.10.254 255.255.255.0

R3(config-if)#no shutdown

R3(config)#interface gi0/1

R3(config-if)#ip address 100.1.1.254 255.255.255.0

R3(config-if)#no shutdown

R3(config)#route rip

R3(config-router)#version 2

R3(config-router)#no auto-summary

R3(config-router)#network 192.168.10.0

R3(config-router)#network 100.1.1.0

R3(config)#ip route 0.0.0.0 0.0.0.0 100.1.1.254

R3(config)#ip nat inside source static 192.168.10.1 100.1.1.254

R4:

R4(config)#interface gi0/1

R4(config-if)#ip address 100.1.1.254 255.255.255.0

R4(config-if)#no shutdown

R4(config-if)#interface gi0/0

R4(config-if)#ip address 200.1.1.1 255.255.255.0

R4(config-if)#no shutdown

R4(config)#route rip

R4(config-router)#version 2

R4(config-router)#no auto-summary

R4(config-router)#network 100.1.1.0

R4(config-router)#network 200.1.1.0

R4(config-router)#passive-interface gi0/1

R4(config-router)#exit

R5:

R5(config)#interface gi0/1

R5(config-if)#ip address 200.1.1.254 255.255.255.0

R5(config-if)#no shutdown

R5(config)#route rip

R5(config-router)#version 2

R5(config-router)#no auto-summary

R5(config-router)#network 200.1.1.0



5,驗證及測試:

技術分享圖片

技術分享圖片技術分享圖片

6,配置思路:

(1)配置PC機IP地址,內網路由器網關,配置中繼IP地址,外網網關地址

(2)外網配置rip

(3)內網配置下一跳,


NAT配置