真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

NAT靜態(tài)和端口映射配置實驗

一、靜態(tài)NAT配置圖

NAT靜態(tài)和端口映射配置實驗
1、配置主機地址:

創(chuàng)新互聯(lián)公司從2013年開始,先為漣源等服務(wù)建站,漣源等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為漣源企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

PC1> ip 192.168.100.10 192.168.100.1
Checking for duplicate address...
PC1 : 192.168.100.10 255.255.255.0 gateway 192.168.100.1

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

PC3> ip 12.0.0.12 12.0.0.1
Checking for duplicate address...
PC1 : 13.0.0.13 255.255.255.0 gateway 13.0.0.1

2、配置R1路由

R1#conf t
R1(config)#int f0/0
R1(config-if)#ip add 192.168.100.1 255.255.255.0
R1(config-if)#no shut
R1(config)#int f0/1
R1(config-if)#ip add 12.0.0.1 255.255.255.0
R1(config-if)#no shut

3、關(guān)閉sw路由功能

no  ip  routing

4、配置主機地址

PC1> ip  192.168.100.10  192.168.100.1
Checking for duplicate address...
PC1 : 192.168.100.10 255.255.255.0 gateway 192.168.100.1

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

PC3> ip  12.0.0.12  12.0.0.1
Checking for duplicate address...
PC1 : 12.0.0.12 255.255.255.0 gateway 12.0.0.1

5、互聯(lián)互通測試

PC1> ping 192.168.100.20
84 bytes from 192.168.100.20 icmp_seq=1 ttl=64 time=0.000 ms
84 bytes from 192.168.100.20 icmp_seq=2 ttl=64 time=0.000 ms
84 bytes from 192.168.100.20 icmp_seq=3 ttl=64 time=0.000 ms
84 bytes from 192.168.100.20 icmp_seq=4 ttl=64 time=0.000 ms
84 bytes from 192.168.100.20 icmp_seq=5 ttl=64 time=0.000 ms

PC1> ping 12.0.0.12     
13.0.0.13 icmp_seq=1 timeout
13.0.0.13 icmp_seq=2 timeout
84 bytes from 12.0.0.12 icmp_seq=3 ttl=62 time=62.485 ms
84 bytes from 12.0.0.12 icmp_seq=4 ttl=62 time=69.039 ms
84 bytes from 12.0.0.12 icmp_seq=5 ttl=62 time=69.046 ms

6、配置靜態(tài)NAT列表

R1(config)#ip nat inside source static 192.168.100.10 12.0.0.10
R1(config)#ip nat inside source static 192.168.100.20 12.0.0.20
R1(config)#int f0/0
R1(config-if)#ip nat inside
R1(config-if)#int f0/1
R1(config-if)#ip nat outside
R1(config-if)#end
R1#debug ip nat     
IP NAT debugging is on

7、測試連通性

PC1> ping 12.0.0.12
13.0.0.13 icmp_seq=1 timeout
13.0.0.13 icmp_seq=2 timeout
84 bytes from 12.0.0.12 icmp_seq=3 ttl=62 time=84.698 ms
84 bytes from 12.0.0.12 icmp_seq=4 ttl=62 time=85.265 ms
84 bytes from 12.0.0.12 icmp_seq=5 ttl=62 time=69.205 ms

*Mar  1 00:23:50.619: NAT*: s=192.168.100.10 -> 12.0.0.10,d=12.0.0.12[5464]
*Mar  1 00:23:51.831: NAT*: s=192.168.100.10->12.0.0.10, d=12.0.0.12 [5465]
  #將目標地址12.0.0.10轉(zhuǎn)換成192.168.100.10,這個就是靜態(tài)地址轉(zhuǎn)換的過程

二、NAT靜態(tài)端口映射配置

1、實驗環(huán)境
Linux搭建的一臺Web服務(wù)器,局域網(wǎng)地址為192.168.100.100,默認端口號80。局域網(wǎng)的網(wǎng)關(guān)192.168.100.1,映射地址:192.168.100.100:80—>12.0.0.100:8080。
別人只能看到公網(wǎng)IP地址,私網(wǎng)地址不能被直接訪問。
2、實驗?zāi)康?/strong>
廣域網(wǎng)的客戶機無法直接訪問100.100地址,如果想訪問的話就需要做端口映射。
3、實驗圖
NAT靜態(tài)和端口映射配置實驗
4、在Linux中安裝httpd的服務(wù)軟件包,并開啟httpd服務(wù),寫測試網(wǎng)頁等

[root@localhost ~]# yum install httpd -y
[root@localhost ~]# vim /var/www/html/index.html        //寫測試網(wǎng)頁

this is inside web

[root@localhost ~]# systemctl start httpd [root@localhost ~]# systemctl stop firewalld.service [root@localhost ~]# setenforce 0

5、配置網(wǎng)關(guān)地址

R1#conf t 
R1(config)#int f0/0
R1(config-if)#ip add 192.168.100.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#ex
R1(config)#int f0/1  
R1(config-if)#ip add 12.0.0.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#ex

6、通過centos中的瀏覽器可看到測試頁面(ping 192.168.100.100或127.0.0.1都行)

NAT靜態(tài)和端口映射配置實驗

7、給Linux綁定VMnet1網(wǎng)卡,給Host綁定VMnet2網(wǎng)卡,配置靜態(tài)地址
8、訪問對方192.168.100.100,此時是可以訪問的,但是真實情況下是無法直接訪問對方私有地址的

NAT靜態(tài)和端口映射配置實驗
9、靜態(tài)端口映射配置

R1(config)# ip  nat  inside  source  static  tcp  192.168.100.100  80  12.0.0.100  8080  extendable 
R1(config)#int f0/0
R1(config-if)#ip nat inside
R1(config-if)#int f0/1
R1(config-if)#ip nat outsid
R1(config-if)#end
R1#debug ip nat
IP NAT debugging is on

*Mar  1 00:36:59.327: NAT*: TCP s=49160, d=8080->80
*Mar  1 00:36:59.327: NAT*: s=12.0.0.12, d=12.0.0.100->192.168.100.100 [364]
   # 端口和地址都進行了轉(zhuǎn)換

10、再次嘗試使用公網(wǎng)地址在win7進行訪問,此時可以成功,實驗成功!
NAT靜態(tài)和端口映射配置實驗


網(wǎng)站名稱:NAT靜態(tài)和端口映射配置實驗
網(wǎng)頁路徑:http://weahome.cn/article/jpscpj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部