具體做法如下:
1.進入目錄:
[root@dfxg root]# cd /etc/sysconfig/network-scripts/
2:ifcfg-eh0:0中的eh0:0是網絡卡的代號,當然你也可以用eh0:1之類的,隨你喜歡怎麼弄,但在eh0:x之前必須有ifcfg,也就是下面這種形式的,我們以eh0:0為例。
[root@dfxg root]#cp ifcfg-eth0 ifcfg-eth0:0
3,編輯ifcfg-eth0:0
[root@linuxsir root]# vi ifcfg-eth0:0
ifcfg-eth0:0裡面有這樣的內容,你可以這樣設定,然後ip可以自己設定了。象我這樣設定也一樣。
# please read /usr/share/doc/initscripts-*/sysconfig.txt
# for the documentation of these parameters.
userctl='no'
netmask='255.255.255.0' -》子掩碼
bootproto='static' -》協議
device='eth0:0' -》虛擬網絡卡的代號
ipaddr='192.168.0.9' -》我自己設定的ip
type='ethernet'
onboot='yes' -》是否開機啟用
network='192.168.0.0' -》網域
broadcast='192.168.0.255' -》廣播
4.儲存退出,然後執行如下的命令,來啟用虛擬的網絡卡。
[root@dfxg root]# ifup eh0:0
linux下 單網絡卡配置多Ip
配置ip很簡單,你可以寫指令碼放在rc.local中,也可以按照下面的操作方式一勞永逸。按 etc sysconfig network scripts ifcfg eth0增加一檔案,根據網路虛擬介面的名字進行命名 例如ifcfg eth0 0或者ifcfg eth0 1等等 下邊看下ifcfg e...
Linux雙網絡卡雙IP雙閘道器
ubuntu雙網絡卡雙ip.不同閘道器.不同子網.如何同時ping通兩塊網絡卡的解決方法,伺服器環境如下 系統 ubuntu 9.04 x64 server 電信ip tel 114.80.0.4 netmask 255.255.255.128 gateway 114.80.0.3 聯通ip cnc...
linux雙網絡卡雙ip配置
在 etc rc.local裡面加上 ip route replace default via 221.6.67.33 dev eth1 ip route replace default via 180.97.81.1 dev eth0 ip route flush table ctc ip rou...