Hello,
# chkconfig NetworkManager off
# chkconfig --level 35 network on
# cd /etc/sysconfig/network-scripts/
# vi ifcfg-ethX X = 0,1,2 etc
DEVICE=eth0
HWADDR=XX:XX:XX:XXX:XX _ your mac/hardware address
ONBOOT=yes
IPADDR=XXX.XXX.XX.X
NETMASK=255.XXX.XXX.X
NETWORK=XXX.0.0.0
TYPE=Ethernet
BOOTPROTO=static
IPV6INIT=no
USERCTL=no
NM_CONTROLLED=no
# vi /etc/resolv.conf
options single-request
nameserver 127.0.0.1
nameserver 8.8.8.8
nameserver XXX.XXX.XX.X _ your local network router
search
www.your_domain.com Your ISP domain
# reboot
NOTE: If you are running an onboard NIC you may need driver r8168, that has been removed from current kernels. You can search the web for drivers
Here is my onboard
Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI
You can get this info from
# lspci |grep -i eth
Here is a website to help:
http://forums.remote-exploit.org/bt3...ontroller.html
The weblink to diver inside does not work
http://elrepo.org/tiki/kmod-r8168
TO SEE DRIVER:
# ifconfig eth0 up
# ethtool -i eth0
Good luck