ubuntu下一塊網絡卡繫結多個ip

2021-06-05 17:35:56 字數 473 閱讀 9839

常常我們有需要乙個網絡卡象windows一樣設定多個ip。

下面我們看看在ubuntu下怎麼樣做.

我們先開啟網路介面的檔案

sudo vi /etc/network/inte***ces 只需

eth0

新增eth0:0

auto eth0

iface eth0 inet static

address 192.168.1.1

netmask 255.255.255.0

gateway 192.168.1.1

auto eth0:0

iface eth0:0 inet static

address 192.168.1.2

netmask 255.255.255.0

gateway 192.168.1.1

重啟服務

sudo /etc/init.d/networking restart

Linux 在一塊網絡卡上繫結多個IP

配置虛擬主機時有一種方式是在一塊網絡卡上繫結多個ip,操作如下 首先用ifconfig檢視物理網絡卡 code shell ifconfig eth0 link encap ethernet hwaddr 08 00 27 98 1c 2e inet addr 192.168.1.103 bcast...

如何給同一塊網絡卡繫結多個IP位址

1 如何手動修改時區?tzconfig 2 在debian中設定啟動服務 在 etc init.d bootmisc.sh的末尾,新增你要啟動服務。例如 exit 0 usr local ssh3291 sbin sshd2 usr local mysql 4.1.12 share mysql my...

Linux一塊網絡卡配置多個IP

不同的linux distribution一塊網絡卡配置多個ip的方法基本相同,只不過編輯的檔案不同。1.ubuntu 配置多個ip 原來的inte ces為 auto eth0 iface eth0 inet static name ethernet lan card address 192.16...