vote up 6 vote down star
1

I'm a game developer looking to increase my knowledge of networking. I figured it's about time I learned what these things are. So...

What are routers, hubs, and switches?

Edit: reopened, granted, it is not directly programming related, but the subject is of enough interest for programmers.

Edit: reopened again. Please stop closing it. We are trying to learn here :-)

Edit: Closed again. This is not a site for "questions of interest to programmers", it is a site for programming questions.

flag

It isn't programming related at all, this is a place for programming questions not sysadmin/networking/anything related to a computer questions. – Robert Gamble Nov 9 '08 at 19:44
I'm all in favour of learning, but this is not the place to learn about networking – Orion Edwards Nov 9 '08 at 20:36
... especially when the answer can be so easily found on wikipedia and so on! – Orion Edwards Nov 9 '08 at 20:37
Would you argue then, that knowing the distinction between routers, switches and hubs wouldn't make you a better programmer? With networks being more central to applications today, coders could stand to learn more about networking. To close this as 'not programming related' is very short sighted. – Murali Suriar Nov 9 '08 at 20:41
It wouldn't be a bad thing if more programmers understood the OSI model. How are "Coolest Server Names" or "Favourite Programmer Cartoon", whilst more amusing, any more programming related? Some serious double standards emerging here. – seanb Nov 9 '08 at 21:19
show 2 more comments

closed as not programming related by MrDatabase Nov 10 '08 at 1:29

5 Answers

vote up 6 vote down check

It's useful to think about computer networks as consisting of several different layers; the most common model is the OSI Model:

  • physical layer
  • data link
  • network
  • transport
  • session
  • presentation
  • application

Hubs work at the physical layer; they make an electrical connection between network segments.

Switches work at the data link level, and move packets from one network segment to another based on network-level addressing (MAC addresses on an ethernet network).

Routers work at the network layer and move packets of information between networks. Unlike switches, routers will move traffic to other networks regardless of whether the destination network is directly connected.

link|flag
That's a long time ago. But as I remember well, it is better to reverse the order of the layers because each layer is build on top of the other. – Gamecat Nov 9 '08 at 19:33
That's true; I did it this way because of the order of the question (hub, switch, router)- the order seemed to address the question better inverted. – Tim Howland Nov 9 '08 at 19:35
Tim - a minor correction here. Switches traditionally work at the data link layer (ignoring multi-layer switches). Routers work at the network layer. – Murali Suriar Nov 10 '08 at 11:17
Muz, you're right- I'll edit to suit. Hazy OSI recollections to blame here (I'm a TCP guy, which munges half of these together). – Tim Howland Nov 10 '08 at 12:48
vote up 1 vote down

As far as I remember:

  • A hub is a simple network connector that broadcast anything to all connected ports.
  • A switch has a bit of intelligence and sends only to apropriate ports.
  • A router connects different networks (mostly lan - wan) and often has an inbuild firewall and NAT functionality.
link|flag
vote up 0 vote down

try CCNA exam, which will give insight into networking.

link|flag
vote up 0 vote down

Tim's point leading you to the OSI model was a good start. However, a couple of errata:

  1. Switches operate at the data link layer. In most networks, this is Ethernet (IEEE 802.3).
  2. Routers operate at the network layer (Most commonly IP, Internet Protocol)
  3. The transport layer is concerned with getting data between end users; it is what most developers will interact with when writing their applications. The two most common transport layer protocols are UDP and TCP.

In terms of the functions that each bit of kit you listed provides. (I'll talk in terms of Ethernet and IP, as these are the defacto standards):

Routers: these devices connect different networks. They maintain routing tables which map IP addresses (more correctly, IP prefixes) to an outgoing interface. Note that an interface may contain one or more ports (See below).

Switches: these maintain forwarding tables which map MAC addresses to physical ports. This is not necessarily a one-to-one mapping; many MAC addresses can be bound to the same physical port. This is the case where you have multi-layer switched networks (think a Netgear or Belkin switch plugged into your office or university network), or a hub connected to a switch port.

Hubs: these are essentially multi-port signal repeaters. They can be either unpowered (simply providing a physical connection for the existing signal to propagate along), or powered, where they actually regenerate and/or amplify the signal they receive. The point to note here is that hubs are a single collision domain. A collision domain represents a set of devices all connected to the same physical transmission medium, such that only one of them can transmit at any given time (ignoring multiplexing technologies like wavelength division multiplexing, frequency-division multiplexing, time-division multiplexing, etc etc.).

In practice, hubs are found less and less in today's data networks, as they have poor performance (as only one user can transmit at a time) and poor security (anyone connected to the same hub can hear everything all other users transmit and receive).

Hope that helped.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.