this post was submitted on 24 Nov 2025
75 points (100.0% liked)

No Stupid Questions

44458 readers
386 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here. This includes using AI responses and summaries.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 2 years ago
MODERATORS
 

And why are managed switches so much more expensive than unmanaged ones?

top 14 comments
sorted by: hot top controversial new old
[–] shalafi@lemmy.world 20 points 1 day ago (2 children)

If OP is asking such a question, y'all are probably making your answers too complicated.

Unmanaged switch: All the ports are equal. Plug anything in anywhere, it works, done.

Managed switch: There is a world of options to control how data moves in and out of those ports. You can really go nuts!

Your basic home or business user only needs an unmanaged switch, good enough.

A home user that wants to learn, build a home lab, managed switch. A business with more complex networking and security needs, managed switch.

As to the expense, managed switches are stupid cheap on eBay. If you want to experiment with networking, that's the way to go.

One more funny note, if you end up with a managed switch, but don't need or care about the options, reset to factory and it's now an unmanaged switch! (You can still program it of course, but you don't have to in order to make it fly. Just plug stuff in.)

[–] WhyJiffie@sh.itjust.works 2 points 11 hours ago

Your basic home or business user only needs an unmanaged switch, good enough.

I always say vlans are useful in any environments

[–] thermal_shock@lemmy.world 3 points 22 hours ago* (last edited 22 hours ago)

If you reset a managed one to unmanaged, at least set the admin password, don't leave it default. Security 101.

[–] IcedRaktajino@startrek.website 59 points 1 day ago* (last edited 1 day ago) (2 children)

An unmanaged switch is just a single plane where all ports are equal. All ports share OSI layers 1 and 2. Anything you plug into port 24 can always reach anything you have plugged into port 3.

Managed switches (also sometimes known as "smart" switches) provide additional features on top of that. The most useful is VLANs (virtual LANs) which let you segregate traffic. Two ports on different VLANs share the same physical layer (layer 1) but are separated at the data link layer (layer 2). This lets you create up to 4096 different networks on the same switch; each network is isolated from the other. If port 24 and port 3 are on different VLANs, then they will not be able to communicate unless they can reach a common router at layer 3.

Additionally, managed switches let you do things like disable/enable ports (for security, power savings, etc), enable port mirroring, and combine multiple ports into an aggregation group (e.g. bond four 1 Gb links into one 4 Gb link).

The available features on a managed/smart switch vary by manufacturer and, often, by the license level (sadly common in enterprise gear). VLANs, port control, mirroring, and LAGs are usually common "baseline" features, though.

[–] ThePantser@sh.itjust.works 13 points 1 day ago

My favorite feature is being able to selectively reboot the POE ports for my security cameras. I have Blue Iris tell Home assistant that a camera is offline and then with the home assistant integration for Netgear it sends the reboot POE command.

Some reolink cameras get in a weird mode where rtsp is broken but direction connecting to the cam stays working. I could issue the reboot command directly from the reolink integration but I find a full power reboot keeps them running longer than just a reboot.

[–] chocrates@piefed.world 2 points 1 day ago

I had a nasty virus in my network and had to get a managed switch to port mirror into an ids. Sadly my IDs was so badly configured I never found it that way. Random repeated virus scans on all the windows gear in the house finally found it

[–] henfredemars@infosec.pub 17 points 1 day ago* (last edited 1 day ago)

An unmanaged switch is a simple, zero-configuration network device that connects multiple Ethernet devices together. This is by far the most common type of switch because they're cheaper to make and satisfy most needs in the home and small office. There are no settings to configure, and the device generally avoids inspecting the traffic it switches. Unmanaged switches are commodity products that are all pretty much same, varying only in the number of ports and speeds provided. These are made in large volumes.

Managed switches add a central processor (CPU) for device administration. This design enables configuration settings which is usually an important precursor to have features such as VLANs, QoS, IGMP snooping, and port security. Businesses need managed switches to implement security policies. In addition to the added hardware, businesses have deep pockets, and managed switches are no longer simple commodities because comparing the advanced feature set and software is no longer trivial. Professional managed switches can cost thousands.

Only recently have we seen pro-sumer switches occupy the space in between these two options by offering some managed features (VLANs) while reserving necessary enterprise features (port security, DHCP snooping, reporting) to segment the market. I bought one for $25 the other day which is almost the same as an unmanaged switch. I would no longer recommend buying an unmanaged switch to anyone with even a passing interest in home networking.

[–] db2@lemmy.world 23 points 1 day ago

Unmanaged switches just do their thing, managed switches let you tell them what that thing is.

[–] neidu3@sh.itjust.works 10 points 1 day ago* (last edited 19 hours ago) (1 children)

Unmanaged switches don't care about VLAN tags, spanning trees, management interfaces, or LACP.

Managed switches care about at least some of those features and therefore will have a management interface to configure them, as well as firmware supporting them.

A dumb/unmanaged switch will look up the MAC address of the intended recipient and map that to a port before forwarding a packet to a particular port. A managed switch might do a lot more.

If you don't need a managed switch, don't buy one. If you're OK with everything on one port being able to communicate with anything on another port, and connectivity is your only concern, you're probably going to be fine with an unmanaged switch.

Source: I manage (amongst other things) managed switches for a living.

[–] Azzu@lemmy.dbzer0.com 6 points 1 day ago* (last edited 1 day ago) (1 children)

Would you say you're a managed switch manager? Do you have any aspirations of eventually becoming a manager of other managed switch managers? And if so, how would you manage that?

[–] neidu3@sh.itjust.works 5 points 1 day ago

I wouldn't, as managed switching is only a small subset of the managerial tasks I attend. I don't manage individual switches as much as I manage production systems where managed switch management is only a minor component.

On that note, we actually use hubs in one particular place in these systems, and since I manage their installation and asset tracking, does this make them managed Ethernet hubs?

[–] dhork@lemmy.world 5 points 1 day ago

Unmanaged switches are extremely dumb. They do simple things, and do them well.

Managed switches have lots of other shiny features, which is why they are more expensive. They also have to be configured to enable those features, which means you have to know how to drive them

[–] Brkdncr@lemmy.world 4 points 1 day ago

Why are they so much more expensive..

Because people will pay that much for those features. You can find managed switches for $60 pretty easily. Until you get into the 48port blades they don’t change a whole lot, so the higher prices are typically from different ways to trick you into paying more.

Some features like line rate, buffers, do add to the cost though.

[–] nukeforyou@lemmy.zip 3 points 1 day ago

you can web into a managed switch