Network card cable connection query

2008-09-25 Thread Dan Track
Hi Is there a way to identify whether a network card has a rj45 cable plugged into it from linux? Thanks Dan -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines:

Re: Network card cable connection query

2008-09-25 Thread Alan Cox
On Thu, 25 Sep 2008 11:15:56 +0100 Dan Track [EMAIL PROTECTED] wrote: Hi Is there a way to identify whether a network card has a rj45 cable plugged into it from linux? ethtool /sbin/ethtool eth0 Settings for eth0: Supported ports: [ TP ] Supported link modes: 10baseT/Half

Re: Network card cable connection query

2008-09-25 Thread Dan Track
On Thu, Sep 25, 2008 at 11:29 AM, Alan Cox [EMAIL PROTECTED] wrote: On Thu, 25 Sep 2008 11:15:56 +0100 Dan Track [EMAIL PROTECTED] wrote: Hi Is there a way to identify whether a network card has a rj45 cable plugged into it from linux? ethtool /sbin/ethtool eth0 Settings for eth0:

Re: Network card cable connection query

2008-09-25 Thread Alan Cox
Thanks Alan, that was spot on. I assume the link detected means that a cable is connected in. Technically I believe it means the other end of the cable is also connected to something. -- fedora-list mailing list fedora-list@redhat.com To unsubscribe:

Re: Network card cable connection query

2008-09-25 Thread ANOOP
On Thu, Sep 25, 2008 at 3:45 PM, Dan Track [EMAIL PROTECTED] wrote: Hi Is there a way to identify whether a network card has a rj45 cable plugged into it from linux? You can use mii-tool [...] # mii-tool eth2 eth2: negotiated 100baseTx-FD flow-control, link ok [...] Thanks, Anoop Thanks