This section discusses connecting a Linux system to a network and/or the Internet.
You can change the network configuration by clicking on the Red Hat in the bottom left corner of your screen, then System Settings-->Network. You will be guided through the steps to configuring your network. The process id described here and an example is shown next:
For example, assume you want to modify the network configuration by modifying files with the following:
# The next line "127.0.0.1" is needed. Do not remove it. 127.0.0.1 localhost.localdomain localhost 192.168.12.21 summer
NETWORKING=yes HOSTNAME=summer GATEWAY=192.168.12.254
DEVICE=eth0 BOOTPROTO=static BROADCAST=192.168.12.255 IPADDR=192.168.12.21 NETMASK=255.255.255.0 NETWORK=192.168.12.0 ONBOOT=yes
domain acme.com search acme.com nameserver 192.168.12.21 nameserver 192.168.12.23
ifconfig eth0 192.168.12.56 netmask 255.255.255.0 up
To set a default route or gateway ("gw" = "gateway"):
route add default gw 192.168.12.1 eth0
Type:
modprobe eth0
dmesg | less
Look for any info about eth0 to help track down the problem.
cat /etc/modules.conf
Look for a line line this:
alias eth0 driver-name-like-wdi or 3c503
Linux Quick Reference Home
Linux Migration Home