linux伺服器雙網絡卡雙ip和單網絡卡雙ip配置方法
一、雙網絡卡雙ip。
eth0為電信,eth1為聯通。
# cd /etc/sysconfig/network-scripts/然後做策略路由(策略路由檔案由機房提供)。# vi ifcfg-eth0
device=eth0
hwaddr=00:e0:b1:07:d5:86
onboot=yes
bootproto=none
ipaddr=1.2.3.4
netmask=255.255.255.0
gateway=1.2.3.1
type=ethernet
# wq
# vi ifcfg-eth1
device=eth1
hwaddr=00:e0:b2:09:d5:87
onboot=yes
bootproto=none
ipaddr=2.3.4.5
netmask=255.255.255.0
type=ethernet
# wq
二、單網絡卡雙ip。
# cd /etc/sysconfig/network-scripts/啟用網絡卡。# cp ifcfg-eth0 ifcfg-eth0:1
# vi ifcfg-eth0
device=eth0
onboot=yes
bootproto=none
hwaddr=00:0c:29:7d:dc:03
ipaddr=192.168.0.10 //電信ip位址。
netmask=255.255.255.0
gateway=192.168.0.1
type=ethernet
# vi ifcfg-eth0:1
device=eth0:1
onboot=yes
bootproto=none
hwaddr=00:0c:29:7d:dc:03
ipaddr=172.16.0.10 //聯通ip位址。
netmask=255.255.255.0
type=ethernet
# ifup eth0:1然後做策略路由。驗證ip位址是否生效。
# ifconfig eth0:1
# ping 192.168.0.10
# ping 172.16.0.10
三、配置策略路由。
把路由列表檔案放置在任意目錄中,賦予可執行許可權,然後執行一下,最後在rc.local檔案中新增開機自動執行即可。
# cd /etc/sysconfig/# chmod 775 static-routes //假設檔名為static-routes的路由列表檔案放在/etc/sysconfig/目錄下。
# ./static-routes
# cd /etc/rc.d/
# vi rc.local
/etc/sysconfig/static-routes
# wq
Linux IP位址配置
底層修改ip 1 修改 etc sysconfig network scripts ifcfg eth0裡面的ip,子網掩碼,預設閘道器等資訊 我的虛擬機器裡沒有eth0這個檔案,只有eto33?資訊如下圖所示 type為乙太網連線 bootproto引導時為dhcp協議 defroute 將介面設...
linux ip位址配置
centos 系統ip配置 centos系統ip配置檔案的路徑 etc sysconfig network scripts目錄中。以下是ip配置檔案預設的配置 ipv6 init yes ipv6 autoconf yes ipv6 defroute yes ipv6 peerdns yes ipv...
手動修改Linux IP的方法小結
想修改linux的ip,有乙個很簡單的方法,即用命令 netconfig 修改或配置,但有時由於你系統中缺少一些小組件從而無法使用此命令,下面是另外兩種簡單的修改方法,也很好用 1.找到目錄 etc sysconfig network scripts 如果你機器有一塊網絡卡則找到檔案 ifcfg e...