What is the disadvantage to cascading multiple switches?

Solution 1:

We did this in an office where we were stuck with 1 port in each room, and we put a 100Mb switch in each room. It was OK for basic tasks, web surfing, email, etc - but the BIG downside is that if you start doing heavy network traffic (for example, copying a multi-gig file from one office to another) you chew up ALL the bandwidth for two offices, because each office is sharing a single uplink.

So it really depends on your level of activity, but you may have a larger issue with a contractor taking you for a ride (depending on your definition of "exorbitant"). Yes it should and will be more expensive multiple lines if you want them all in different locations, but if you want to run say, 4 lines into one location within the room then the extra costs should be:

  • More expensive cabling cost (usually pretty nominal, maybe $0.50/meter)
  • More expensive wall socket (Maybe twice the price of a single)
  • More expensive labour costs for crimping the ends (they can take a while, and includes the time taken to get a cable tester onto each end)
  • Larger or multiple patch panels in the central location

What you've got to weigh up against the cost of the installation is the cost of configuring, maintaining and purchasing multiple switches cascading off eachother. If I had a choice I would have paid the extra money to get it done properly (multiple lines into the room) because the hassle of maintaing THAT MANY cascaded switches can become prohibitive.

Solution 2:

You are almost describing the cisco multi-tier model. You have a 'core' layer connected to 'distribution' switches (or a 'head' switch in each closet) that will connect to 'access' switches that will finally distribute to the end users/servers/devices.

If you use switches and not hubs on all your network, there's not much of a problem doing that (it's even recommended to do it that way). Just remember the uplinks. If you have 48 ports running at 1GB most of the time and your uplink from access to distribution is only 1 GB, you can suffer of lack of bandwidth, so it's better that the uplinks from access to distribution to core to be larger than the average speed of the access ports (in my network now I have access ports at 1GB and 10GB fiber uplinks)

Also, remember to use STP (Spanning Tree Protocol) to prevent loops and provide failover configs on your network.


Solution 3:

I've had a similar situation but modified the scheme somewhat for the reasons already mentioned by coredump and Farseeker, specifically the problem of shared bandwidth.

In my case I was able to determine beforehand that only a couple of users would ever need to transfer large files. With that in mind I ran a single line to the switch in the far office plus a couple of additional lines, one for each of those heavy traffic generating users. This offered the benefit of minimal cost without the problem of one or two users swamping the network.

To further save costs a 100Mb switch that was being upgraded in the server room was used in the far office, as that was more than adequate for those being connected to it. The "special cases" were connected by 1Gb. Of course this scheme is useless if you cannot identify who is going to be generating the traffic beforehand but can be a great money saver otherwise.


Solution 4:

The one issue I would worry about is security. By having your switches distributed around the building you are likely not going to take the effort to physically secure them. If there their is anything valuable on your network then it may be very simple for someone to place a device inline with the switch that will allow them to capture traffic and perform MITM attacks.

If you are going to be processing credit card transactions, health records, or some other else that is high value then distributing switches out in the rooms may not fit your requirements.

You will likely choose low-end switches for a setup like this which means it may be more costly in the future to implement more physical security features since you may need to re-wire things and replace your switches.


Solution 5:

I absolutely avoid cascaded switches whenever reasonably possible. Unless the clients are absolutely controlled, such as a thin client with limited functionality, it's only a matter of when it will be an issue.

This is especially true within the core network or the network infrastructure that supports the servers. When working with purely workstations, you have a little more leeway.

Many of the other points here are fantastic, as such I will not reiterate them any further but I do encourage you to consider them.