靜態一對一映射;
基於地址池多對一映射(NAPT):網絡地址和端口都做轉換,多對一的關系;
基於地址池一對一映射(NO-PAT):隻對IP地址做轉換,一對一的關系。
Easy IP 技術是對動態 NAPT 技術的簡化,在Easy IP 技術中隻會用到一個 IP 地址,因此無須建立公有 IP 地址池,用於轉換的公網IP地址就是該路由器接口的 IP 地址。
當外邊網絡向內部服務器的外部地址(global-address)發起連接請求時,NAT 將該請求的目的地址替換為私網地址(inside-address)後,轉發給私網內的服務器。
R2 上配置 Loopback 地址 114.114.114.114 ,用來模擬公網 IP。
1、配置靜態 NAT
2、配置動態 NAT
3、配置 Easy IP
4、配置 NAT Server
1、配置 IP 地址和路由
SW1 的配置:
vlan batch 5 10 20 30 40
#
interface Vlanif5
ip address 192.168.1.2 255.255.255.252
#
interface Vlanif10
ip address 192.168.10.1 255.255.255.0
#
interface Vlanif20
ip address 192.168.20.1 255.255.255.0
#
interface Vlanif30
ip address 192.168.30.1 255.255.255.0
#
interface GigabitEthernet0/0/1
port link-type access
port default vlan 5
#
interface GigabitEthernet0/0/2
port link-type access
port default vlan 10
#
interface GigabitEthernet0/0/3
port link-type access
port default vlan 20
#
interface GigabitEthernet0/0/4
port link-type access
port default vlan 30
#
interface GigabitEthernet0/0/5
port link-type access
port default vlan 40
#
ip route-static 0.0.0.0 0.0.0.0 192.168.1.1
#
上一篇