Your network mask may be set incorrectly (should be /24 or 255.255.255.0 probably); do you just use DHCP from your router or is the IP set up manually? Another slight possibility is that it uses the same IP address as one of the other computers.
Have a look at the output of 'ip a l' or 'ifconfig'. It should list something like
Code:
$ ifconfig eth0
eth0 Link encap:Ethernet HWaddr 00:24:e8:8e:e1:d0
inet addr:192.168.0.x Bcast:0.0.0.0 Mask:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Memory:f6ae0000-f6b00000
$ ip a l eth0
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
link/ether 00:24:e8:8e:e1:d0 brd ff:ff:ff:ff:ff:ff
inet 192.168.0.x/24 scope global eth0
Both tools do the same thing so just use the one you're most comfortable with. Replace 192.168.0.x with the actual IP address of your linux box, of course. The suspected culprit is the '255.255.255.0' with ifconfig or the '/24' with ip.
Since you're using fedora your /etc/sysconfig/network-scripts/ifcfg-eth0 probably needs attention.
Hope that helps. If not, I don't immediately have a clue.
-Bert