192.168.1.100 should never show up at EoFF, it's a LAN address. The address of your router should show up at EoFF.
Do you have two ethernet cards? If the kernel gets to assigning an eth1, it thinks you have two network cards. If you don't have two ethernet cards, then something is getting incorrectly detected as one. You really should check the output of lsmod, and make sure a module for your network card has been loaded. That "eth0 link encap:UNSPEC HWaddr" part, the UNSPEC should be Ethernet. Try ifconfig -a, and check if eth1 is Ethernet. It probably is.
If your network card is being detected as eth1, then you just need to start the network init scripts using eth1 instead of eth0. I don't know if the LiveCD can do that, by default. Likely you'll have to fiddle with things a bit. I wish I had a LiveCD I could check stuff with, but mine is ancient and outdated; this all might be wrong. But try this:
Code:
cp /etc/init.d/net.eth0 /etc/init.d/net.eth1
nano /etc/conf.d/net
/etc/conf.d/net is the config file for the network init scripts. In that file it should say something like
Everywhere it says eth0, change it to eth1. (Only have to worry about the uncommented lines, of course.) Then do this:
Code:
/etc/init.d/net.eth0 stop
/etc/init.d/net.eth1 start
If all that crap doesn't work, you can try manually starting dhcpcd.
This is all assuming that the kernel HAS detected your network card, and that it's eth1. Use lsmod before trying all this junk.