1、靜態nat(一對一)
2、動態nat(多對多)
3、埠多路復用pat(多對一)
1、靜態配置
(1)配置外部介面ip位址
(2)配置內部介面ip 位址
(3)在內部區域性和內部全域性位址之間建立位址轉換
router(config)#ip nat inside source static local-ip global-ip
(4)在內外部介面上啟用nat
router(config)#int s0/0
router(config-if)# ip nat outside
router(config)#int f0/0
router(config-if)# ip nat inside
2、動態nat配置
(1)(2)與靜態配置相同
(3)定義內部網路中允許訪問外部網路的訪問控制列表
router(config)#access-list access-list-number permit source source-wildcard
router(config)#access-list 1 permit 192.168.100.0 0.0.0.255
(4)定義合法的ip位址池
router(config)#ip nat pool pool-name start-ip end-ip [type rotary]
netmask:表示子網掩碼
prefix-length:表示網路字首
type rotary (可選):位址池中的位址為迴圈使用
router(config)#ip nat pool test 61.159.62.130 61.159.62.132 netmask 255.255.255.192
(5)實現網路位址轉換
router(config)#ip nat inside source list access-list-number pool pool-name
router(config)#ip nat inside source list 1 pool test
(6)在內外部介面上啟用nat
3、pat埠多路復用,就是把多個內部位址轉化為乙個外部位址(通過埠來區別)。這個外部位址可以是定義的只包括乙個位址的位址池;也可以是使用外部介面的ip位址。
(3)定義內部訪問列表
router(config)#access-list 1 permit 10.1.1.0 0.0.0.255
(4)定義合法位址池
router(config)#ip nat pool onlyone 61.159.62.130 61.159.62.130 netmask 255.255.255.248
因為只有乙個位址,所以位址池的起始位址與終止位址相同
router(config)#ip nat inside source list access-list-number pool pool-name overload
router(config)#ip nat inside source list 1 pool onlyone overload
router(config)#ip nat inside source list 1 inte***ce s0/0 overload
www.net130.com 出處:網路征途
網路位址轉換 NAT
nat概述 網路位址轉換 nat 通過將內部網路的私有ip位址翻譯成全球唯一的公網ip位址,使內部網路可以連線到網際網路等外部網路上,廣泛應用於各型別的網際網路接入方式和各種型別的網路中。nat的實現方式有一下三種 靜態位址轉換 將內部網路的私有ip位址轉換為公有的合法的ip位址,ip位址的對應關係...
網路位址轉換NAT
一般來說每台主機都有乙個固定的ip位址用於表示自己在internet中的身份,但乙個單位只能分配到少量的公開ip位址,同時也為了安全而不向internet公開單位內部的位址,所以企業內部的主機通常都使用私有位址,當內部主機要訪問internet時,必須進行 網路位址轉換 即把私有ip位址轉換成公開i...
網路位址轉換NAT
概述 nat是將ip資料報文報頭中的ip位址轉換為另乙個ip位址的過程,主要用於實現內部網路 私有ip位址 訪問外部網路 公有ip位址 的功能。nat有三種型別 靜態nat 動態nat 網路位址埠轉換napt nat轉換裝置 實現nat功能的網路裝置 維護著位址轉換列表,所有經過nat轉換裝置並且需...