On Wed, 14 Jan 2009 22:08:15 -0800,
(E-Mail Removed) wrote:
> My problem now is that I've tried changing the IP address of the
> RedHat servers to 192.168.200.X, but it cannot ping other machines in
> the network. I keep getting the "Destination Host Unreachable" error.
> I've never tried to configure a Linux machine to connect to an
> internal network before, and I'm wondering if there's some
> configuration steps that I need to do first.
man lspci
lists your hardware, assuming your NIC is modern.
man lsmod
check that the module for your nic is loaded
man ifconfig
probably
ifconfig etho <- should tell you if the NIC is set up properly.
Looks something like
some-host:somedirectory# ifconfig eth0
eth0 Link encap:Ethernet HWaddr 00:60:67:72:93:A4
inet addr:192.168.X.Y Bcast:192.168.X.255
Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500
Metric:1 RX packets:5361288 errors:0 dropped:0 overruns:0
frame:0 TX packets:31895883 errors:0 dropped:0 overruns:7
carrier:0 collisions:0 txqueuelen:1000
RX bytes:742199991 (707.8 MiB) TX bytes:3212574150 (2.9 GiB)
Interrupt:9 Base address:0x1400
Yes, the X.y is fudging the actual address
>
> Thank you.