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

2021-04-14 01:11:57 字數 763 閱讀 1922

1 如何手動修改時區?

tzconfig

2 在debian中設定啟動服務

在/etc/init.d/bootmisc.sh的末尾,新增你要啟動服務。

例如:: exit 0

/usr/local/ssh3291/sbin/sshd2

/usr/local/mysql-4.1.12/share/mysql/mysql.server start

/usr/local/apache-1.3.33/bin/apachectl start

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

vi /etc/network/inte***ces

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet static

address 192.168.0.25

netmask 255.255.255.0

network 192.168.0.0

broadcast 192.168.0.255

gateway 192.168.0.1

auto eth0:0

iface eth0:0 inet static

address 192.168.0.26

netmask 255.255.255.0

network 192.168.0.0

broadcast 192.168.0.255

gateway 192.168.0.1

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

常常我們有需要乙個網絡卡象windows一樣設定多個ip。下面我們看看在ubuntu下怎麼樣做.我們先開啟網路介面的檔案 sudo vi etc network inte ces 只需 eth0 新增eth0 0 auto eth0 iface eth0 inet static address 19...

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...

Linux一塊網絡卡配置多個IP

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