Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Crossover

  1. #1
    Join Date
    Mar 2008
    Location
    The Burning Earth.
    Beans
    3,660

    Crossover

    I've periodically tried doing a direct connect between two computers for about 9 years with zero results. I cannot, for the life of me, understand why his is so difficult. Most of my attempts have been with Windows machines. My most recent attempt (today) has been with two Ubuntu 9.10 Linux machines. I have followed this thread.

    http://ubuntuforums.org/showthread.php?t=1350838

    However, when I use ifconfig, it isn't showing the ip address under eth0.

    Thanks in advance.
    God does not play dice with the universe - Albert Einstein
    Sure I do, I just use loaded dice. - warfacegod

    An open forum. Its a free for all. Check us out. https://openlinuxforums.org/

  2. #2
    Join Date
    Jan 2006
    Location
    Not heaven... Iowa
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: Crossover

    The cable is a crossover(wire color sequence is different on each end)?
    Linux User #415691 Ubuntu User #8629
    Iowa Team (LoCo): [Wiki] [Launchpad]
    IRC channel: #ubuntu-us-ia on irc.freenode.net

  3. #3
    Join Date
    Mar 2008
    Location
    The Burning Earth.
    Beans
    3,660

    Re: Crossover

    Yes. it even says Xover on it.
    God does not play dice with the universe - Albert Einstein
    Sure I do, I just use loaded dice. - warfacegod

    An open forum. Its a free for all. Check us out. https://openlinuxforums.org/

  4. #4
    Join Date
    Aug 2008
    Location
    WA
    Beans
    2,186
    Distro
    Ubuntu

    Re: Crossover

    are you seeing link light?

    What is the ip/netmask of the machine's on each side of the link?

  5. #5
    Join Date
    Aug 2008
    Location
    WA
    Beans
    2,186
    Distro
    Ubuntu

    Re: Crossover

    Do it the easy way:

    Machine 1:

    open a terminal and run:

    Code:
    sudo nano /etc/network/interfaces
    Add the following section:

    Code:
    iface eth0 inet static
      address 192.168.2.1
      netmask 255.255.255.0
    
    auto eth0
    Machine 2:

    open a terminal and run:

    Code:
    sudo nano /etc/network/interfaces
    Add the following section:

    Code:
    iface eth0 inet static
      address 192.168.2.2
      netmask 255.255.255.0
    
    auto eth0
    The two machines should now be able to ping each other.

    now install openssh-server, and sshfs on both machines.

    from the prompt of machine one:

    Code:
    mkdir machine2
    sshfs yourusername@192.168.2.2:/home/ machine2
    You should now see a folder with other machine show up on your desktop..
    Last edited by iponeverything; January 7th, 2010 at 06:45 PM.

  6. #6
    Join Date
    Mar 2008
    Location
    The Burning Earth.
    Beans
    3,660

    Re: Crossover

    On only one but on my laptop, I don't think it will light up unless the connection is actually doing something.

    ifconfig dooesn't show netmask under eth0

    It's 255.255.255.0 under wlan0 on both in case that helps.
    God does not play dice with the universe - Albert Einstein
    Sure I do, I just use loaded dice. - warfacegod

    An open forum. Its a free for all. Check us out. https://openlinuxforums.org/

  7. #7
    Join Date
    Mar 2008
    Location
    The Burning Earth.
    Beans
    3,660

    Re: Crossover

    Okay, I can see why your above post should work so it makes no sense to me as to why it didn't. Your help, by the way, is greatly appreciated.

    No folder is on the desktop but I can go to the folder in /Home and there is nothing in it. The machines are not getting replies when I ping.
    Last edited by warfacegod; January 7th, 2010 at 08:01 PM.
    God does not play dice with the universe - Albert Einstein
    Sure I do, I just use loaded dice. - warfacegod

    An open forum. Its a free for all. Check us out. https://openlinuxforums.org/

  8. #8
    Join Date
    Aug 2008
    Location
    WA
    Beans
    2,186
    Distro
    Ubuntu

    Re: Crossover

    while the cable is plugged in to both boxes, run:

    Code:
    sudo ethtool eth0
    also make sure that the two machines don't have firewall rules that are preventing them from talking..

    Code:
    sudo iptables -L -n
    Last edited by iponeverything; January 7th, 2010 at 11:53 PM.

  9. #9
    Join Date
    Mar 2008
    Location
    The Burning Earth.
    Beans
    3,660

    Re: Crossover

    Code:
    Settings for eth0:
    	Supported ports: [ TP MII ]
    	Supported link modes:   10baseT/Half 10baseT/Full 
    	                        100baseT/Half 100baseT/Full 
    	Supports auto-negotiation: Yes
    	Advertised link modes:  10baseT/Half 10baseT/Full 
    	                        100baseT/Half 100baseT/Full 
    	Advertised auto-negotiation: Yes
    	Speed: 10Mb/s
    	Duplex: Half
    	Port: MII
    	PHYAD: 32
    	Transceiver: internal
    	Auto-negotiation: on
    	Supports Wake-on: pumbg
    	Wake-on: d
    	Current message level: 0x00000007 (7)
    	Link detected: no
    Code:
    Chain INPUT (policy ACCEPT)
    target     prot opt source               destination         
    
    Chain FORWARD (policy ACCEPT)
    target     prot opt source               destination         
    
    Chain OUTPUT (policy ACCEPT)
    target     prot opt source               destination
    God does not play dice with the universe - Albert Einstein
    Sure I do, I just use loaded dice. - warfacegod

    An open forum. Its a free for all. Check us out. https://openlinuxforums.org/

  10. #10
    Join Date
    Aug 2008
    Location
    WA
    Beans
    2,186
    Distro
    Ubuntu

    Re: Crossover

    Quote Originally Posted by warfacegod View Post
    Code:
    Settings for eth0:
    	Supported ports: [ TP MII ]
    	Supported link modes:   10baseT/Half 10baseT/Full 
    	                        100baseT/Half 100baseT/Full 
    	Supports auto-negotiation: Yes
    	Advertised link modes:  10baseT/Half 10baseT/Full 
    	                        100baseT/Half 100baseT/Full 
    	Advertised auto-negotiation: Yes
    	Speed: 10Mb/s
    	Duplex: Half
    	Port: MII
    	PHYAD: 32
    	Transceiver: internal
    	Auto-negotiation: on
    	Supports Wake-on: pumbg
    	Wake-on: d
    	Current message level: 0x00000007 (7)
    	Link detected: no
    You might have a bad cable..

Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •