您好,登錄后才能下訂單哦!
設置方式:
方法一:建立地址池(單一地址)作為對外全局地址
方法二:不建立地址池(設置端口作為對外地址)
拓撲圖如下:
1、設定三臺PC機的地址
PC1
PC1>
PC1> ip 192.168.100.30 192.168.100.1
Checking for duplicate address...
PC1 : 192.168.100.30 255.255.255.0 gateway 192.168.100.1
PC1>
PC2
PC2>
PC2> ip 192.168.100.20 192.168.100.1
Checking for duplicate address...
PC1 : 192.168.100.20 255.255.255.0 gateway 192.168.100.1
PC2>
PC3
PC3>
PC3> ip 10.0.0.10 10.0.0.1
Checking for duplicate address...
PC1 : 10.0.0.10 255.255.255.0 gateway 10.0.0.1
PC3>
2、設定二層交換機sw
sw#conf t
Enter configuration commands, one per line. End with CNTL/Z.
sw(config)#no ip routing //關閉路由功能,使三層交換鏡像變為二層交換機
sw(config)#
3、設定路由R1
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#int f 0/0
R1(config-if)#ip add 192.168.100.1 255.255.255.0 //僅設定IP地址與子網掩碼
R1(config-if)#no shut
*Mar 1 00:06:33.063: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
*Mar 1 00:06:34.063: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
R1(config-if)#int f 0/1
R1(config-if)#ip add 10.0.0.1 255.0.0.0 //僅設定IP地址與子網掩碼
R1(config-if)#no shut
R1(config-if)#ex
*Mar 1 00:06:48.191: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
*Mar 1 00:06:49.191: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R1(config)#
為滿足實驗要求,下面將正式進行PAT(端口多路復用)的設置。
4、在路由R1上進行PAT設置
R1(config)#access-list 1 permit 192.168.100.0 0.0.0.255 //建立標準ACL
R1(config)#ip nat pool kgc 10.0.0.20 10.0.0.20 netmask 255.0.0.0 //建立地址池
*Mar 1 00:08:29.815: %LINEPROTO-5-UPDOWN: Line protocol on Interface NVI0, changed state to up
R1(config)#ip nat inside source list 1 pool kgc //建立PAT
R1(config)#int f 0/1
R1(config-if)#ip nat inside //在內部啟用PAT
R1(config-if)#int f 0/0
R1(config-if)#ip nat outside //在外部啟用PAT
R1(config-if)#end
R1#
*Mar 1 00:10:27.007: %SYS-5-CONFIG_I: Configured from console by console
R1#
實驗成功,外網能訪問的IP地址以更改為公網IP。
拓撲圖如下:
前面所有對PC1、PC2、PC3、sw以及R1的設置均與方法一相同,不再過多贅述。這里只對PAT的設置與啟用進行說明
R1(config)#access-list 1 permit 192.168.100.0 0.0.0.255 //建立標準ACL
R1(config)#ip nat inside source list 1 interface f0/1 overload //不進行地址池的設置,將外部端口f0/1的IP作為對外全局地址
R1(config)#
R1(config)#int f 0/0
R1(config-if)#ip nat inside //啟用內部PAT
R1(config-if)#int f 0/1
R1(config-if)#ip nat outside //啟用外部PAT
R1(config-if)#end
R1#
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。