Modify the NIC Eth0
Vim/etc/sysconfig/network-scripts/ifcfg-eth0
++++++++++++++++++++++++++++++++
Device= "Eth0"
bootproto= "Static" #将原来的值 "DHCP" to "Static"
Hwaddr= "00:0c:29:f2:4e:96"
ipv6init= "Yes"
Nm_controlled= "Yes"
onboot= "Yes"
Type= "Ethernet"
Uuid= "B68B1EF8-13A0-4D11-A738-1AE704E6A0A4"
ipaddr=192.168.1.16 #你需要定义的IP地址
#以下两个的值如果不清楚的话, you can open your local computer,--"Control Panel \ All Control Panel items \ Network and Sharing Center \ Local Area Connection \ Details
netmask=255.255.255.0 #子网掩码
gateway=192.168.1.1 #默认网关
++++++++++++++++++++++++++++++++
Save exit
Restart Network Service
Service Network restart
------------------------------------------------------------------------------
Ifconfig ... did not see eth0. Then restart the NIC and report the following error.
Failure phenomena:
Service Network restart
Shutting down loopback insterface: [OK]
Bringing Up loopback insterface: [OK]
Bringing up interface Eth0:device eth0 does no seem to be present,delaying initialization. [FAILED]
Workaround:
First, open the/etc/udev/rules.d/70-persistent-net.rules content as shown in the following example:
# Vi/etc/udev/rules.d/70-persistent-net.rules
# This file is automatically generated by the/lib/udev/write_net_rules
# program, run by the Persistent-net-generator.rules rules file.
#
# can modify it, as long as you keep each rule to a single
# line, and change is only the value of the Name= key.
# PCI Device 0x1022:0x2000 (Pcnet32)
subsystem== "NET", action== "Add", drivers== "? *", attr{address}== "00:0c:29:8f:89:9
7 ", attr{type}==" 1 ", kernel==" eth* ", name=" eth0 "
# PCI Device 0x1022:0x2000 (Pcnet32)
subsystem== "NET", action== "Add", drivers== "? *", attr{address}== "00:0c:29:50:bd:1
7 ", attr{type}==" 1 ", kernel==" eth* ", name=" eth1 "
Record the MAC address of the eth1 Nic 00:0c:29:50:bd:17
Next, open the/etc/sysconfig/network-scripts/ifcfg-eth0
# Vi/etc/sysconfig/network-scripts/ifcfg-eth0
Change device= "eth0" to Device= "eth1",
Change the hwaddr= "00:0c:29:8f:89:97" to the MAC address above hwaddr= "00:0c:29:50:bd:17"
Finally, restart the network
# Service Network Restart
Or
#/etc/init.d/network Restart
Linux Configuration Static IP