LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 08-09-2004, 10:28 AM   #1
tricky_linux
Member
 
Registered: Jul 2003
Distribution: Red Hat Linux 9.0; Old and Solid
Posts: 674

Rep: Reputation: 30
10BaseT Hub, Collision???


I have a 10BaseT Hub from DYNA-NET.
this hub is pretty old, i never used it to do anything.
now, i got many files to transfer. it works but how come everything i transfer something from port a to port b. the Collision light blinks!
i just wondering does that means bad or ???
 
Old 08-09-2004, 12:09 PM   #2
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
It's nothing to worry about unless the light stays on constantly (no blinking, just solid).

A collision occurs in networking when two computers/items try to talk at the same time. The connection between them can only allow one individual to talk at once. So each individual has the ability to detect if someone else is trying to talk at the same time. When that happens, each network machine trying to talk will "back off" and wait a random amount of time before trying again. It's normal to see the collision light blink every so often.
 
Old 08-09-2004, 12:14 PM   #3
tricky_linux
Member
 
Registered: Jul 2003
Distribution: Red Hat Linux 9.0; Old and Solid
Posts: 674

Original Poster
Rep: Reputation: 30
thanx
 
Old 08-10-2004, 03:04 AM   #4
theYinYeti
Senior Member
 
Registered: Jul 2004
Location: France
Distribution: Arch Linux
Posts: 1,897

Rep: Reputation: 66
And when it constantly blinks?

I have a switch, and whenever I sftp a file between my two PCs (only 2 on the switch), the collision light blinks madly without interruption until the file-transfer is done.

Yves.
 
Old 08-10-2004, 07:27 AM   #5
fredgt
Member
 
Registered: Feb 2004
Location: Belgium
Distribution: Suse 9.1 Pro / Gentoo
Posts: 114

Rep: Reputation: 15
When you're using a 10BaseT Hub it's normal that you have all these collisions.
10BaseT means that you"re using an 10Mbit hub when you are probably using 10/100 Mbit network adapters so the hub will slow down traffic to 1.25 MB/s, when you use an 100Mbit hub it would be 12.5MB/s.
The second problem is that you're using a hub and not a switch. A hub sends all the traffic to every port of the hub so when you send data from computer A to computer B, it will also be send to all other computers on that hub with will cause all these collisions. A switch is a little more intelligent and will send it only to the computer that the data is supposed to go to.
So if you have a lot of traffic trough the hub it might be a good idea to replace that with a 10/100BaseT switch.
 
Old 08-10-2004, 10:58 AM   #6
Dark_Helmet
Senior Member
 
Registered: Jan 2003
Posts: 2,786

Rep: Reputation: 374Reputation: 374Reputation: 374Reputation: 374
The more the collision light blinks, the slower your transfer will be (because it's riddled with retries). If the transfer succeeds, then it's not a fatal problem. However, if you're trying to transfer a 1MB file and it takes 10 minutes, then that's not good. Collisions can occur for any number of reasons: bad cables, bad hardware, different settings between devices. I wouldn't worry about it too much if the transfers happen in a reasonable amount of time.

You can always time the transfer (using the time command or a stopwatch) for a large file. Then calculate what the actual transfer rate is. You'll never actually achieve the ideal speed of 10Mbit or 100Mbit depending on what devices are involved. I would say 75% or better is probably acceptable. 50% - 75% is cause for some concern and might be worth investigating. Anything below 50% is the point I would start swapping components if possible.
 
Old 08-10-2004, 01:32 PM   #7
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
I agree 100% with Dark_Helmet's comments. The only thing I'd add is that if you do observe unsatisfactory transfer speeds, make sure you are using a quality brand of cable. We encountered a situation like this a while back, and simply replacing the generic, no-name cable with a brand name made all the difference in the world. Obviously there can be other causes, but don't overlook the cables. -- J.W.
 
Old 08-10-2004, 04:40 PM   #8
tricky_linux
Member
 
Registered: Jul 2003
Distribution: Red Hat Linux 9.0; Old and Solid
Posts: 674

Original Poster
Rep: Reputation: 30
thanx to fredgt and Dark_Helmet

from the start i know hub is a little dumb and switch is smarter.
but i am just not clear what the difference is.
now i understood.
thanx you ya's help

also, i have a question regarding hubs.
you(fredgt) said that hub sends all signals to other port. so does that mean switches are secure?
since it's not a 1 to all action, but 1 to 1 transfer action
and does switch do one tasks at a time or can do mutiple tasks unlike hubs?
 
Old 08-10-2004, 05:29 PM   #9
fredgt
Member
 
Registered: Feb 2004
Location: Belgium
Distribution: Suse 9.1 Pro / Gentoo
Posts: 114

Rep: Reputation: 15
"and does switch do one tasks at a time or can do multiple tasks unlike hubs?"
well the problem with for example a 5 port hub would be that if you send information from port1 to port2 it will also occupate the other ports while with a switch will only use port1 and port2 so the other ports have the full bandwidth available because there is no other data beïng transmitted.

When you go from dumb to smart the order would be something like this:
HUB -> unmanaged SWITCH -> managed SWITCH -> ROUTER
HUB : sends data to all ports
unmanaged SWITCH : normal cheap switch you can buy at you local computer store.
ideal for home networks and small company networks
managed SWITCH : the same as the other switch but has some extra options you can configure. This is for big networks with high capacities.
ROUTER : Does the same as a switch but it acts like a computer, it has an IP address, it has a build in DHCP server to supply the connected computers of a dynamic IP,... This is used to share internet connections,...

If it is just to replace the hub a small unmanaged SWITCH should do the trick.
a 5 port hub cost about ¤ 30 ( or $ 37 ) this price can be different depending on where you live.
 
Old 08-10-2004, 07:34 PM   #10
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
Quote:
I have a switch, and whenever I sftp a file between my two PCs (only 2 on the switch), the collision light blinks madly without interruption until the file-transfer is done.
Switches don't have "Collision" lights (at least, I have never seen a switch with one). What you are probably seeing is the "Activity" light, which should light up when traffic is going through the switch.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Change Broadcom Ethernet media from auto to 10BaseT PinRojas Linux - Hardware 2 07-09-2005 01:53 PM
fedora core hub / no hub problem plu5even Linux - Networking 3 02-28-2005 02:30 PM
Autonegotiate 10BaseT Half-Duplex on Mandrake 10 Zmaster115 Linux - Networking 4 05-06-2004 03:03 PM
via-rhine, change link speed to 10baseT purjo Linux - Networking 2 03-17-2004 03:58 AM
setting NIC to 10baseT-FD on boot? monwel Linux - Networking 6 02-11-2004 11:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 11:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration