91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux中怎么給一塊網卡設置多個IP地址

發布時間:2021-07-23 10:49:07 來源:億速云 閱讀:1492 作者:Leah 欄目:云計算

本篇文章給大家分享的是有關Linux中怎么給一塊網卡設置多個IP地址,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

在windows下給一塊網卡設置多個IP,是比較容易的,今天我寫的內容是關于在LINUX系統下,給一塊網卡設置多個IP地址,在Linux系統下面,第一塊網卡就叫eth0,第二塊網卡就叫eth2,這里我們給第一塊網卡設置多個IP,在Linux下,配置網卡的配置文件在目錄/etc/sysconfig/network-script/下 ,原來網卡的配置文件名為ifcfg-eth0 ,我們給一塊網卡配置多個IP地址的配置文件命名為ifcfg-eth0:1和ifcfg-eth0 :2,下面看操作如下:

Last login: Fri Aug  6 00:35:49 2010 from 172.28.102.41  
  [root@rep1 ~]# ifconfig                             ###原來網卡的配置
  eth0      Link encap:Ethernet  HWaddr 00:0C:29:D5:39:A0   
          inet addr:   172.28.90.101  Bcast:172.28.255.255  Mask:255.255.0.0  
          inet6 addr: fe80::20c:29ff:fed5:39a0/64 Scope:Link  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1  
          RX packets:3125184 errors:0 dropped:0 overruns:0 frame:0  
          TX packets:101356 errors:0 dropped:0 overruns:0 carrier:0  
          collisions:0 txqueuelen:1000  
          RX bytes:462342976 (440.9 MiB)  TX bytes:10788008 (10.2 MiB)  
          Interrupt:75 Base address:0x2000

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:16436  Metric:1  
          RX packets:1427 errors:0 dropped:0 overruns:0 frame:0  
          TX packets:1427 errors:0 dropped:0 overruns:0 carrier:0  
          collisions:0 txqueuelen:0  
          RX bytes:3335045 (3.1 MiB)  TX bytes:3335045 (3.1 MiB)

[root@rep1 ~]# cd /etc/sysconfig/net  
netconsole       network          networking/      network-scripts/  
  [root@rep1 ~]# cd /etc/sysconfig/network-scripts/            #配置文件的目錄路徑
[root@rep1 network-scripts]# ls  
  ifcfg-eth0    ifdown-isdn    ifup-aliases  ifup-plip    ifup-wireless  
ifcfg-lo      ifdown-post    ifup-bnep     ifup-plusb   init.ipv6-global  
ifdown        ifdown-ppp     ifup-eth      ifup-post    net.hotplug  
ifdown-bnep   ifdown-routes  ifup-ippp     ifup-ppp     network-functions  
ifdown-eth    ifdown-sit     ifup-ipsec    ifup-routes  network-functions-ipv6  
ifdown-ippp   ifdown-sl      ifup-ipv6     ifup-sit  
ifdown-ipsec  ifdown-tunnel  ifup-ipx      ifup-sl  
ifdown-ipv6   ifup           ifup-isdn     ifup-tunnel  
  [root@rep1 network-scripts]# cp ifcfg-eth0 ifcfg-eth0:1      #復制原來網卡配置
[root@rep1 network-scripts]# cp ifcfg-eth0 ifcfg-eth0:2     #復制原來網卡配置
[root@rep1 network-scripts]# vi ifcfg-eth0:1  
# Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]  
DEVICE=eth0:1                                           #此處修改
BOOTPROTO=static  
BROADCAST=172.28.255.255                  #IP地址的廣播地址
HWADDR=00:0C:29:D5:39:A0               #MAC地址,不用修改  
IPADDR=172.28.90.201                           #設置新的IP
NETMASK=255.255.0.0  
NETWORK=172.28.0.0  
ONBOOT=yes  
~  
——————————————————————————————————  
~  
"ifcfg-eth0:1" 9L, 206C written  
[root@rep1 network-scripts]# vi ifcfg-eth0:2  
# Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]  
DEVICE=eth0:2                                                  #此處修改
BOOTPROTO=static  
BROADCAST=172.28.255.255                      #IP地址的廣播地址  
HWADDR=00:0C:29:D5:39:A0                      #MAC地址,不用修改  
IPADDR=172.28.90.202                                   #設置新的IP  
NETMASK=255.255.0.0  
NETWORK=172.28.0.0  
ONBOOT=yes  
~  
———————————————————————————————————  
~  
"ifcfg-eth0:2" 9L, 206C written  
  [root@rep1 network-scripts]# service network restart           #重啟下網絡服務
Shutting down interface eth0:                              [  OK  ]  
Shutting down loopback interface:                          [  OK  ]  
Bringing up loopback interface:                            [  OK  ]  
Bringing up interface eth0:                                [  OK  ]  
  [root@rep1 network-scripts]# ifconfig                             #修改好后驗證是否成功
eth0      Link encap:Ethernet  HWaddr 00:0C:29:D5:39:A0   
          inet addr:   172.28.90.101  Bcast:172.28.255.255  Mask:255.255.0.0  
          inet6 addr: fe80::20c:29ff:fed5:39a0/64 Scope:Link  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1  
          RX packets:3131096 errors:0 dropped:0 overruns:0 frame:0  
          TX packets:101660 errors:0 dropped:0 overruns:0 carrier:0  
          collisions:0 txqueuelen:1000  
          RX bytes:462925438 (441.4 MiB)  TX bytes:10829005 (10.3 MiB)  
          Interrupt:75 Base address:0x2000

eth0:1    Link encap:Ethernet  HWaddr 00:0C:29:D5:39:A0   
          inet addr:   172.28.90.201  Bcast:172.28.255.255  Mask:255.255.0.0  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1  
          Interrupt:75 Base address:0x2000

eth0:2    Link encap:Ethernet  HWaddr 00:0C:29:D5:39:A0   
          inet addr:   172.28.90.202  Bcast:172.28.255.255  Mask:255.255.0.0  
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1  
          Interrupt:75 Base address:0x2000

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:16436  Metric:1  
          RX packets:1427 errors:0 dropped:0 overruns:0 frame:0  
          TX packets:1427 errors:0 dropped:0 overruns:0 carrier:0  
          collisions:0 txqueuelen:0  
          RX bytes:3335045 (3.1 MiB)  TX bytes:3335045 (3.1 MiB)

[root@rep1 network-scripts]# ls
ifcfg-eth0
      ifdown-ipsec   ifdown-tunnel  ifup-ipx     ifup-sl  
  ifcfg-eth0:1  ifdown-ipv6    ifup           ifup-isdn    ifup-tunnel  
  ifcfg-eth0:2  ifdown-isdn    ifup-aliases   ifup-plip    ifup-wireless  
ifcfg-lo      ifdown-post    ifup-bnep      ifup-plusb   init.ipv6-global  
ifdown        ifdown-ppp     ifup-eth       ifup-post    net.hotplug  
ifdown-bnep   ifdown-routes  ifup-ippp      ifup-ppp     network-functions  
ifdown-eth    ifdown-sit     ifup-ipsec     ifup-routes  network-functions-ipv6  
ifdown-ippp   ifdown-sl      ifup-ipv6      ifup-sit  
[root@rep1 network-scripts]#  
 

我們再wind下驗證下是否通。。。  

C:\Documents and Settings\Administrator>ping 172.28.90.101  

Pinging 172.28.90.101 with 32 bytes of data:  

Reply from 172.28.90.101: bytes=32 time=17ms TTL=63
Reply from 172.28.90.101: bytes=32 time=14ms TTL=63
 

Ping statistics for 172.28.90.101:  
    Packets: Sent = 2, Received = 2, Lost = 0 (0% loss),  
Approximate round trip times in milli-seconds:  
    Minimum = 14ms, Maximum = 17ms, Average = 15ms  
Control-C  
^C  
  C:\Documents and Settings\Administrator>ping 172.28.90.201  

Pinging 172.28.90.201 with 32 bytes of data:  

Reply from 172.28.90.201: bytes=32 time=38ms TTL=63
Reply from 172.28.90.201: bytes=32 time=18ms TTL=63
Reply from 172.28.90.201: bytes=32 time=2ms TTL=63

Ping statistics for 172.28.90.201:  
    Packets: Sent = 3, Received = 3, Lost = 0 (0% loss),  
Approximate round trip times in milli-seconds:  
    Minimum = 2ms, Maximum = 38ms, Average = 19ms  
Control-C  
^C  
  C:\Documents and Settings\Administrator>ping 172.28.90.202  

Pinging 172.28.90.202 with 32 bytes of data:  

Reply from 172.28.90.202: bytes=32 time=39ms TTL=63
Reply from 172.28.90.202: bytes=32 time=17ms TTL=63
Reply from 172.28.90.202: bytes=32 time=17ms TTL=63  

以上就是Linux中怎么給一塊網卡設置多個IP地址,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

无极县| 新野县| 炉霍县| 永新县| 沁阳市| 固镇县| 二连浩特市| 富锦市| 玛曲县| 遵化市| 信阳市| 富蕴县| 南漳县| 涞源县| 赣榆县| 六盘水市| 元氏县| 小金县| 中超| 长泰县| 皮山县| 明水县| 区。| 文成县| 化德县| 鸡东县| 广西| 承德县| 孟村| 庆城县| 北辰区| 左云县| 盐源县| 安吉县| 图木舒克市| 兰西县| 昂仁县| 贞丰县| 宁阳县| 宕昌县| 澜沧|