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

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

內(nèi)網(wǎng)無路由跨網(wǎng)絡(luò)服務(wù)——單網(wǎng)卡雙IP配置-創(chuàng)新互聯(lián)

有些時候,在我們內(nèi)網(wǎng)服務(wù)中,如果不想使用路由功能,又想讓某些服務(wù)器能夠跨網(wǎng)絡(luò)服務(wù),那么此時,就需要在服務(wù)器網(wǎng)卡上配置多個IP地址,讓它能夠提供多個網(wǎng)絡(luò)的訪問,那么在linux下該如何實(shí)現(xiàn)了,今天就給大家分享一下。

我們擁有十年網(wǎng)頁設(shè)計(jì)和網(wǎng)站建設(shè)經(jīng)驗(yàn),從網(wǎng)站策劃到網(wǎng)站制作,我們的網(wǎng)頁設(shè)計(jì)師為您提供的解決方案。為企業(yè)提供網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、微信開發(fā)、小程序開發(fā)、手機(jī)網(wǎng)站開發(fā)、H5高端網(wǎng)站建設(shè)、等業(yè)務(wù)。無論您有什么樣的網(wǎng)站設(shè)計(jì)或者設(shè)計(jì)方案要求,我們都將富于創(chuàng)造性的提供專業(yè)設(shè)計(jì)服務(wù)并滿足您的需求。

操作步驟

1、cp eth0 eth0:1將網(wǎng)卡接口配置文件復(fù)制一份命名為eth0:1

2、修改網(wǎng)卡的具體配置信息

注意:eth0可以用DHCP,可以靜態(tài)配置

 eth0:1只能用靜態(tài)配置

 既然我們是服務(wù)器,當(dāng)然兩個配置都使用靜態(tài)IP最好了

3、重啟網(wǎng)絡(luò)服務(wù)(確保NetworkManager服務(wù)處于停止?fàn)顟B(tài))

4、驗(yàn)證最終效果

第一步:cp eth0 eth0:1將網(wǎng)卡接口配置文件復(fù)制一份命名為eth0:1

[root@Centos6 network-scripts]# cp ifcfg-eth0 ifcfg-eth0:1

第二步:修改網(wǎng)卡的具體配置信息

[root@Centos6 network-scripts]# vim ifcfg-eth0

[root@Centos6 network-scripts]# cat ifcfg-eth0

DEVICE=eth0

BOOTPROTO=none

IPADDR=10.1.253.253

PREFIX=16

[root@Centos6 network-scripts]# cat ifcfg-eth0:1

DEVICE=eth0:1

BOOTPROTO=none

IPADDR=192.168.253.253

PREFIX=24

[root@Centos6 network-scripts]#

第三步:重啟網(wǎng)絡(luò)服務(wù)(確保NetworkManager服務(wù)處于停止?fàn)顟B(tài))

注意系統(tǒng)默認(rèn)會開啟NetworkManager服務(wù),要想啟用單網(wǎng)卡雙IP,最好先關(guān)閉,否則會不生效

[root@Centos6 network-scripts]# service NetworkManager status

NetworkManager is stopped

[root@Centos6 network-scripts]# service network restart

Shutting down interface eth0:                [  OK  ]

Shutting down loopback interface:              [  OK  ]

Bringing up loopback interface:               [  OK  ]

Bringing up interface eth0:  Determining if ip address 10.1.253.253 is already in use for device eth0...

Determining if ip address 192.168.253.253 is already in use for device eth0...

                             [  OK  ]

[root@Centos6 network-scripts]# ifconfig

eth0    Link encap:Ethernet  HWaddr 00:0C:29:C8:72:26

     inet addr:10.1.253.253  Bcast:10.1.255.255  Mask:255.255.0.0

     inet6 addr: fe80::20c:29ff:fec8:7226/64 Scope:Link

     UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

     RX packets:1185 errors:0 dropped:0 overruns:0 frame:0

     TX packets:366 errors:0 dropped:0 overruns:0 carrier:0

     collisions:0 txqueuelen:1000

     RX bytes:107195 (104.6 KiB)  TX bytes:38655 (37.7 KiB)

eth0:1   Link encap:Ethernet  HWaddr 00:0C:29:C8:72:26

     inet addr:192.168.253.253  Bcast:192.168.253.255  Mask:255.255.255.0

     UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

lo     Link encap:Local Loopback

     inet addr:127.0.0.1  Mask:255.0.0.0

     inet6 addr: ::1/128 Scope:Host

     UP LOOPBACK RUNNING  MTU:65536  Metric:1

     RX packets:260 errors:0 dropped:0 overruns:0 frame:0

     TX packets:260 errors:0 dropped:0 overruns:0 carrier:0

     collisions:0 txqueuelen:0

     RX bytes:18160 (17.7 KiB)  TX bytes:18160 (17.7 KiB)

[root@Centos6 network-scripts]#

第四步:驗(yàn)證最終效果,從Centos7去pingCentos6上配置的雙IP

[root@centos7 network-scripts]# ifconfig

eno16777728: flags=4163  mtu 1500

    inet 10.1.254.254  netmask 255.255.0.0  broadcast 10.1.255.255

    inet6 fe80::20c:29ff:fe06:f987  prefixlen 64  scopeid 0x20

    ether 00:0c:29:06:f9:87  txqueuelen 1000  (Ethernet)

    RX packets 133425  bytes 10462696 (9.9 MiB)

    RX errors 0  dropped 0  overruns 0  frame 0

    TX packets 61400  bytes 6585145 (6.2 MiB)

    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

eno16777728:1: flags=4163  mtu 1500

    inet 192.168.253.254  netmask 255.255.255.0  broadcast 192.168.253.255

    ether 00:0c:29:06:f9:87  txqueuelen 1000  (Ethernet)

lo: flags=73  mtu 65536

    inet 127.0.0.1  netmask 255.0.0.0

    inet6 ::1  prefixlen 128  scopeid 0x10

    loop  txqueuelen 0  (Local Loopback)

    RX packets 2496  bytes 234576 (229.0 KiB)

    RX errors 0  dropped 0  overruns 0  frame 0

    TX packets 2496  bytes 234576 (229.0 KiB)

    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

[root@centos7 network-scripts]# ping -c 4 10.1.253.253

PING 10.1.253.253 (10.1.253.253) 56(84) bytes of data.

64 bytes from 10.1.253.253: icmp_seq=1 ttl=64 time=3.41 ms

64 bytes from 10.1.253.253: icmp_seq=2 ttl=64 time=0.536 ms

64 bytes from 10.1.253.253: icmp_seq=3 ttl=64 time=0.539 ms

64 bytes from 10.1.253.253: icmp_seq=4 ttl=64 time=0.738 ms

--- 10.1.253.253 ping statistics ---

4 packets transmitted, 4 received, 0% packet loss, time 3029ms

rtt min/avg/max/mdev = 0.536/1.306/3.413/1.219 ms

[root@centos7 network-scripts]# ping -c 4 192.168.253.254

PING 192.168.253.254 (192.168.253.254) 56(84) bytes of data.

64 bytes from 192.168.253.254: icmp_seq=1 ttl=64 time=0.135 ms

64 bytes from 192.168.253.254: icmp_seq=2 ttl=64 time=0.126 ms

64 bytes from 192.168.253.254: icmp_seq=3 ttl=64 time=0.126 ms

64 bytes from 192.168.253.254: icmp_seq=4 ttl=64 time=0.128 ms

--- 192.168.253.254 ping statistics ---

4 packets transmitted, 4 received, 0% packet loss, time 3017ms

rtt min/avg/max/mdev = 0.126/0.128/0.135/0.014 ms

[root@centos7 network-scripts]#

可以看出,兩個IP地址都可以ping通,所以如果是跨網(wǎng)絡(luò)服務(wù)時,單網(wǎng)卡雙IP的功效就體現(xiàn)出來了。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


當(dāng)前文章:內(nèi)網(wǎng)無路由跨網(wǎng)絡(luò)服務(wù)——單網(wǎng)卡雙IP配置-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://weahome.cn/article/gdsss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部