拓撲圖:
實驗要求:
1.r2、
r3能訪問外網的
4.4.4.4
(4.4.4.4為r4
上的環迴介面,用來模擬
inter
網)。
2.r4訪問
222.222.222.100
其實訪問到的是內網的
192.168.0.101。
配置:
r1:
router>en
router#conf t
router(config)#int fa0/0
router(config-if)#ip add 192.168.0.1 255.255.255.0
router(config-if)#no shutdown
router(config-if)#ip nat inside
router(config-if)#exit
router(config)#int se1/0
router(config-if)#ip add 222.222.222.222 255.255.255.0
router(config-if)#no shutdown
router(config-if)#ip nat outside
router(config-if)#clock rate 64000
router(config-if)#exit
router(config)#access-list 1 permit 192.168.0.0 0.0.0.255
router(config)#ip nat inside source list 1 inte***ce se1/0
router(config)#ip nat inside source static 192.168.0.101 222.222.222.100
router(config)#ip route 0.0.0.0 0.0.0.0 se1/0
r2:
router>en
router#conf t
router(config)#int fa0/0
router(config-if)#ip add 192.168.0.100 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#ip route 0.0.0.0 0.0.0.0 192.168.0.1
r3:
router>en
router#conf t
router(config)#int fa0/0
router(config-if)#ip add 192.168.0.101 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#ip route 0.0.0.0 0.0.0.0 192.168.0.1
r1(config)#line vty 0 4
r1(config-line)#password 123456
r1(config-line)#login
r1(config-line)#exit
r1(config)#enable password 123456
r1(config)#
exit
r4:
router>en
router#conf t
router(config)#int se0/0
router(config-if)#ip add 222.222.222.1 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#int loopback 0
router(config-if)#ip add 4.4.4.4 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
結果:
1.r2、
r3能夠訪問到外網的
4.4.4.4。
2.用r4去
telnet 222.222.222.100
,確實訪問到的是內網的
192.168.0.101。
總結:本次實驗用到了nat
中的靜態
nat和動態
nat(
pat),靜態路由繫結,預設路由等,只要掌握了相關知識加以綜合運用就可以得到!
動態對映和靜態對映
先說virtualalloc和virtualcopy virtualalloc 首先會從我們的虛擬位址空間中申請 或者說預留 一塊虛擬空間,準備接下來要用它。注意此時,可用的物理記憶體並沒有減少,只是虛擬位址少了一塊可用的區域。真正把這塊之前 reserved 的虛擬空間對映到物理的記憶體區域就是由...
靜態NAT 動態NAT
靜態nat 動態nat 實驗拓撲 掌握靜態nat 和動態nat的配置 分析靜態nat 和動態nat的區別 使用show命令來檢查nat的運 況 實驗要求 按拓撲圖來配置靜態nat 和動態nat 實驗步驟 步驟1按如上拓撲做好底層配置,並檢驗相鄰裝置之間的連通性 步驟2在nat上配置一條到intern...
思科NAT對映詳解
1.實驗拓撲圖如下 左側模仿內網,右側模仿外網 2.分別給裝置配置ip,內網配置預設路由 r1配置如下 配置路由 r1 ip route 0.0.0.0 0.0.0.0 200.0.0.2 r2配置如下 r3配置如下 pc配置如下 3.配置nat轉換 r1上操作如下 r1 config access...