ok, I think this indicates that the interface already got the ip from the DHCP server,
[root@localhost les]# ifup eth1
Determining IP information for eth1... done.
[root@localhost les]# ifup eth1
Determining IP information for eth1...SIOCADDRT: File exists
done.
so if you do ifconfig, you should see something lilke this
[root@localhost les]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:50

A:EB:6D:CF
inet addr:192.168.1.240 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:29 errors:0 dropped:0 overruns:0 frame:0
TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:4545 (4.4 Kb) TX bytes:1296 (1.2 Kb)
Interrupt:11 Base address:0x4000
eth1 Link encap:Ethernet HWaddr 00:05:5D:F1:24:A5
inet addr:192.168.1.246 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:500966 errors:0 dropped:0 overruns:0 frame:0
TX packets:451400 errors:2 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:229188599 (218.5 Mb) TX bytes:73032146 (69.6 Mb)
Interrupt:3 Base address:0x100
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:68775 errors:0 dropped:0 overruns:0 frame:0
TX packets:68775 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5151974 (4.9 Mb) TX bytes:5151974 (4.9 Mb)
The thing to do is go to your server/router and ping each of the addresses that are listed to verify they are working. you can also to netstat -rn to look at your routing table, example follows
[root@localhost les]# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
[root@localhost les]#
you will see that both interfacess are listed and what interface is your default gateway, the 0.0.0.0 network is default, as you can see mine is on eth0