十年網(wǎng)站開(kāi)發(fā)經(jīng)驗(yàn) + 多家企業(yè)客戶(hù) + 靠譜的建站團(tuán)隊(duì)
量身定制 + 運(yùn)營(yíng)維護(hù)+專(zhuān)業(yè)推廣+無(wú)憂(yōu)售后,網(wǎng)站問(wèn)題一站解決
拓?fù)鋱D如下:
創(chuàng)新互聯(lián)成立于2013年,先為拉薩等服務(wù)建站,拉薩等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢(xún)服務(wù)。為拉薩企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。
1、設(shè)置sw三層交換機(jī)
sw#conf t
Enter configuration commands, one per line. End with CNTL/Z.
sw(config)#no ip routing //關(guān)閉路由功能
sw(config)#
2、設(shè)置路由R1
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#int f0/0
R1(config-if)#ip add 192.168.10.1 255.255.255.0 //僅設(shè)定IP地址與子網(wǎng)掩碼
R1(config-if)#no shut
*Mar 1 00:03:21.575: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
*Mar 1 00:03:22.575: %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 8.0.0.1 255.0.0.0 //僅設(shè)定IP地址與字網(wǎng)掩碼
R1(config-if)#no shut
*Mar 1 00:03:42.443: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
*Mar 1 00:03:43.443: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R1(config-if)#ex
R1(config)#ip route 0.0.0.0 0.0.0.0 8.0.0.2 //設(shè)置默認(rèn)路由
R1(config)#do show ip route //查看路由表
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is 8.0.0.2 to network 0.0.0.0
C 192.168.10.0/24 is directly connected, FastEthernet0/0
C 8.0.0.0/8 is directly connected, FastEthernet0/1
S* 0.0.0.0/0 [1/0] via 8.0.0.2
R1(config)#
3、設(shè)置路由R2
R2#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#int f 0/1
R2(config-if)#ip add 8.0.0.2 255.0.0.0 //僅設(shè)定IP地址與子網(wǎng)掩碼
R2(config-if)#no shut
R2(config-if)#int f 0/0
R2(config-if)#
*Mar 1 00:05:13.815: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
*Mar 1 00:05:14.815: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R2(config-if)#ip add 192.168.200.1 255.255.255.0 //僅設(shè)定IP地址與字網(wǎng)掩碼
R2(config-if)#no shut
R2(config-if)#
*Mar 1 00:05:40.643: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
*Mar 1 00:05:41.643: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
R2(config-if)#ex
R2(config)#ip route 192.168.10.0 255.255.255.0 8.0.0.1 //設(shè)置靜態(tài)路由
R2(config)#do show ip route //查看路由表
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
S 192.168.10.0/24 [1/0] via 8.0.0.1
C 192.168.200.0/24 is directly connected, FastEthernet0/0
C 8.0.0.0/8 is directly connected, FastEthernet0/1
R2(config)#
4、設(shè)定三臺(tái)PC機(jī)
PC1
PC1>
PC1> ip 192.168.10.10 192.168.10.1
Checking for duplicate address...
PC1 : 192.168.10.10 255.255.255.0 gateway 192.168.10.1
PC1>
PC2
PC2>
PC2> ip 192.168.10.20 192.168.10.1
Checking for duplicate address...
PC1 : 192.168.10.20 255.255.255.0 gateway 192.168.10.1
PC2>
PC3
PC3>
PC3> ip 192.168.200.20 192.168.200.1
Checking for duplicate address...
PC1 : 192.168.200.20 255.255.255.0 gateway 192.168.200.1
PC3>
為滿(mǎn)足實(shí)驗(yàn)?zāi)康?,接下?lái)將進(jìn)行靜態(tài)NAT的設(shè)置
在R1上設(shè)置靜態(tài)NAT
R1(config)#ip nat source static 192.168.10.10 8.8.8.8 //靜態(tài)NAT1
*Mar 1 00:13:12.995: %LINEPROTO-5-UPDOWN: Line protocol on Interface NVI0, changed state to up
R1(config)#ip nat source static 192.168.10.20 8.8.8.10 //靜態(tài)NAT2
R1(config)#int f 0/0
R1(config-if)#ip nat inside //啟用外部NAT
R1(config-if)#int f 0/1
R1(config-if)#ip nat outside //啟用內(nèi)部NAT
R1(config-if)#
拓?fù)鋱D如下:
1、設(shè)置Linux服務(wù)器
將端口進(jìn)行綁定,綁定在VMnet1上,并設(shè)置靜態(tài)IP
[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-ens33
改dhcp為static
在末行按o在下行插入
IPADDR=192.168.100.100
NETMASK=255.255.255.0
GATEWAY=192.168.100.1
[root@localhost ~]# service network restart
Restarting network (via systemctl): [ 確定 ]
[root@localhost ~]# ifconfig
ens33: flags=4163 mtu 1500
inet 192.168.100.100 netmask 255.255.255.0 broadcast 192.168.100.255
安裝http服務(wù)并自定義首頁(yè)
[root@localhost ~]# yum install httpd -y
[root@localhost ~]# vim /var/www/html/index.html //寫(xiě)測(cè)試網(wǎng)頁(yè)
this is inside web
[root@localhost ~]# systemctl start httpd
[root@localhost ~]# systemctl stop firewalld.service
[root@localhost ~]# setenforce 0
2、設(shè)置路由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.10.1 255.255.255.0 //僅設(shè)置IP地址和子網(wǎng)掩碼
R1(config-if)#no shut
*Mar 1 00:00:44.895: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
*Mar 1 00:00:45.895: %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 8.0.0.1 255.0.0.0 //僅設(shè)置IP地址和子網(wǎng)掩碼
R1(config-if)#no shut
R1(config-if)#ex
*Mar 1 00:01:03.159: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
*Mar 1 00:01:04.159: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R1(config-if)#ex
R1(config)#
3、設(shè)置Host2主機(jī)
綁定VMnet2,并設(shè)置靜態(tài)IP
為了滿(mǎn)足實(shí)驗(yàn)要求,下面將進(jìn)行端口映射
R1
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]
//端口和地址都進(jìn)行了轉(zhuǎn)換
使用Host2主機(jī)再次進(jìn)行訪問(wèn),輸入http://12.0.0.100:8080
同樣可以訪問(wèn)。