Building my own 5-port gigabit switch for Linux control

  Рет қаралды 14,203

Martijn Braam

Martijn Braam

Күн бұрын

Пікірлер: 51
@MartijnBraam
@MartijnBraam 19 күн бұрын
I have released the source files for the second revision of this switch now on codeberg.org/MartijnBraam/Gigabit-Switch Hopefully there will be many more weird switches in the future :D
@lookitsahorner
@lookitsahorner 20 күн бұрын
I've been eyeing up those switch chips with the external interfaces for quite a while now - Thank you for going for it and making it happen! I hope this goes places for low cost high quality managed switches in the future! The manufacturers these days cripple their managed switches intentionally so much to make you buy the more expensive ones when the chips in the cheap ones are perfectly capable of many more features.
@MartijnBraam
@MartijnBraam 19 күн бұрын
Maybe some day embedded developers will start making decent control interfaces for their devices, probably a few decades in the future though... Would be interesting to create a proper managed switch firmware for the 8051 core in this but it's sadly completely undocumented how that core is supposed to work.
@PhilippBlum
@PhilippBlum 21 күн бұрын
When I read your article, I had to think about IPv6 over BLE, 6LoWPAN and all those shenanigans. Might be interesting to build a router that can also just route all these IoT radio protocols.
@MartijnBraam
@MartijnBraam 21 күн бұрын
That should be easily doable by adding the radios for that to the SBC connected to the switch :)
@PhilippBlum
@PhilippBlum 21 күн бұрын
@@MartijnBraam Don't motivate me. I need to get one thing done first.
@PhilippBlum
@PhilippBlum 21 күн бұрын
@@MartijnBraam That's also what I thought. I flash a RTOS like RIOT on them and they just bridge the radio to LAN.
@MartijnBraam
@MartijnBraam 21 күн бұрын
that would make a very neat home automation hub, add a few 433mhz radios, some zigbee maybe. Actual WiFi is also useful :D
@enryfrafranci
@enryfrafranci 20 күн бұрын
I love this so much! I've always wanted to make an alternative to the unifi wall access point and this is exactly the lead i was looking for, i can now just figure out how to to add some wifi enabled soc connected to one of the extra ports (an allwinner perhaps?) and this could become a super cool project. Thanks so much for sharing! I'd love to see more...
@MartijnBraam
@MartijnBraam 20 күн бұрын
Those accesspoints generally have hilariously underpowered SoCs in them so a random allwinner will probably work fine.
@daisywong-ke1kz
@daisywong-ke1kz 17 күн бұрын
STUNNING work!
@B_dev
@B_dev 21 күн бұрын
Wow very cool
@nephew455
@nephew455 21 күн бұрын
Thank you Kanye, very cool
@EricLikness
@EricLikness 20 күн бұрын
Embedded electronics for the win! It looks good.
@kbhasi
@kbhasi 19 күн бұрын
The switch chip being used in unmanaged and managed models made me think of TP-Link and Netgear 5/8/16 port network switches that have both unmanaged and managed variants. 🤯 It's probably that the managed variants have an EEPROM chip (+ licence for the firmware) and reset button, while the unmanaged ones don't.
@MartijnBraam
@MartijnBraam 19 күн бұрын
Yeah it seems like the main difference is the storage, the unmanaged ones have a tiny i2c eeprom for hardcoding a few registers and the managed ones have a 4Mb nor flash chip on the SPI bus with 8051 firmware and templates for the webpages. Apparently it's possible to grab the Netgear GS105E firmware from the website, load it in a nor flash and then boot it on this device but I have not tried it yet.
@kbhasi
@kbhasi 19 күн бұрын
@@MartijnBraam Interesting. I was thinking it'd also be possible with the TP-Link TL-SG105E firmware, but for the hardware revisions I have (though of the 108E and 116E because I don't have any 105Es), no firmware updates were released. I also forgot about 8051 microcontrollers having existed, probably because when I think of a microcontroller chip, I usually think of an RP2040. I saw your video on my KZbin homepage and didn't think it was possible for Linux to directly address a managed network switch chip until I watched it. I was surprised.
@MartijnBraam
@MartijnBraam 19 күн бұрын
8051 cores are absolutely everywhere. If something has the slightest chance of running firmware at all it most likely has an 8051 core in it. As far as I know the SG105E and GS105E are practically the same device. The 108 devices are basically the same topology but it uses the RTL8370MB instead probably. That's an 8 port switch chip with 2 internal CPU ports available. This one is also supported by Linux.
@ompizz
@ompizz 16 күн бұрын
Nice work. I know a commercial unmanaged switch where you can access SMI without voiding warranty and there is an 8051 just waiting for your code to execute. SDCC goes brrrr. Too bad these infos are obscured / NDA'd.
@MartijnBraam
@MartijnBraam 16 күн бұрын
Yeah if only I could get any of those docs. That would add a lot of interesting possibilities to this platform since you can access quite a bunch of gpios and busses with it and there's the internal network interface. Which existing switch allows SMI access?
@ompizz
@ompizz 16 күн бұрын
Asus XG-U2008 has SMI pins under the serial# label. Oh, and it's a Z80 not a 8051.
@danmanmgm
@danmanmgm 21 күн бұрын
What happens if you run tcpdump on one of those lanX ports? Does it work? Can you include *MII interface in the next revision?
@MartijnBraam
@MartijnBraam 21 күн бұрын
If you tcpdump on one of the lan ports you'll just get the traffic destined for your mac or ip on that interface, if it's in a bridge you still only see the packets for your own interface since the rest is handled in hardware. The issues with exposing more interfaces like the MII bus is that most pins are shared for other functions so you can't make one design that fits all.
@bastian775
@bastian775 20 күн бұрын
mooi man :-)
@nnighthawk
@nnighthawk 21 күн бұрын
Can you share how you need to set the solder bridges to make this work? Do you just need SMI_SEL high or does it require anything else?
@MartijnBraam
@MartijnBraam 21 күн бұрын
I have SMI_SEL high, EN_SPIF low, DIS_8051 high and DISAUTOLOAD low
@nnighthawk
@nnighthawk 20 күн бұрын
@@MartijnBraam Thank you! I have a project laying around here, that uses a Realtek 8367N chip with SMI and your video fascinates me. I have never seen this anywhere before. So I would like to try this, even if it makes no sense in my project. Unfortunately the part how to configure this in Linux is very short in your video. Would you mind sharing a few more details, like which dtoverlay you're loading, which parameters you're using? I tried grepping through the entire filesystem of my Raspberry Pi, but doesn't contain "realtek-smi" anywhere.
@MartijnBraam
@MartijnBraam 20 күн бұрын
You probably will have to build all the DSA and switchdev related modules, no distro seem to ship it out of the box. I have written down more details here: blog.brixit.nl/making-a-linux-managed-network-switch/
@nnighthawk
@nnighthawk 20 күн бұрын
@@MartijnBraam Very cool. I'll work my way through it and hope that my Pi will still boot in the end. 🤓
@nnighthawk
@nnighthawk 20 күн бұрын
@@MartijnBraam Do you absolutely need the reset pin to be wired up to a GPIO or is that the interrupt pin you're talking about in the video? On my PCB reset is hard wired high, unfortunately. 😕
@boneappletee6416
@boneappletee6416 20 күн бұрын
This is super cool! :) What project were you working on that inspired you to do this?
@MartijnBraam
@MartijnBraam 19 күн бұрын
This is one of the wild ideas for improving the hardware for streaming the FOSDEM conference. The main thing this is trying to solve is having a switch inside a 1U rack case that takes up as little space as possible and having one port on the inside of the case for plugging into a SBC. The alternative is having a cable looping around on the front which is ugly, or having neutrik ethercon jacks on the frontpanel and a bunch of small ethernet cables inside the case which is not space efficient. The switch doesn't even need to be managed in this usecase but having monitoring would improve everything.
@bobby9568
@bobby9568 14 күн бұрын
When will you release more 3D printing videos?
@marcogenovesi8570
@marcogenovesi8570 19 күн бұрын
I'm wondering if this can be controlled from a x86 system using a usb to gpio like FT232H. Not sure if Linux can be convinced to use that for the realtek-smi
@MartijnBraam
@MartijnBraam 19 күн бұрын
It's not really possible to get a phandle for the gpios on an USB gpio chip so it can't be done in the same way at least. In theory it would be possible to add a glue driver in Linux but that would be pretty difficult.
@Jkjk-pu2vt
@Jkjk-pu2vt 20 күн бұрын
Could you share the PCB, or do we need to purchase it?
@MartijnBraam
@MartijnBraam 19 күн бұрын
I'm working on the final touchups of the design. I didn't want to release the version yet that has electrical issues that required cutting traces and snipping off pins to get a connection up and running. It will be OSHW and can be fully assembled by LCSC.
@hardillb
@hardillb 18 күн бұрын
I assume this is similar to how the Banana Pi-R* boards work, they just have an ARM SoC on the same board
@MartijnBraam
@MartijnBraam 18 күн бұрын
Yeah one of the Banana Pi boards is one of the few boards I found with schematic that had an RTL8367 on it, but only on preproduction models so very hard to get info on.
@sanjikaneki6226
@sanjikaneki6226 19 күн бұрын
i think that any MCU can do the management via MDIO/SMI but i had a hard time finding good libraries/drivers
@MartijnBraam
@MartijnBraam 19 күн бұрын
That's true, since my final design won't have an ARM board but an x86 board it will simply be managed over USB with a raspberry pi pico. The code to get that working is relatively simple. I've seen some people also use an ESP32 to manage this.
@sanjikaneki6226
@sanjikaneki6226 19 күн бұрын
@@MartijnBraam where? i am also doing something similar ut 100Mb + esp32 on the same pcb , found some code in 1 place but i dont have that much information regarding the switch registers , i can only guess atm
@MartijnBraam
@MartijnBraam 19 күн бұрын
I also can't find it quickly anymore, at some point I came across some github repositories with chinese readmes that had a bunch of docs and a picture of a PCB with an ESP32 on it and a reference that it was running lua code, sadly there were not more details.
@user-hc9dw9gb5w
@user-hc9dw9gb5w 18 күн бұрын
You are using ipv6 Internet. Is it really possible to ping any other device on ipv6 Internet if I know its ipv6 address? I mean, all devices are not hidden behind NAT, so they all are accessible directly by IP without need of intermediate node somewhere on the Internet.
@MartijnBraam
@MartijnBraam 18 күн бұрын
That's not at all how IPv6 works. On IPv6 you have the same hiding mechanics as IPv4 but instead of with NAT it happens by the firewall, if you use any normal IPv6-capable router that's what happens in the background. IPv6 is also still routed like regular network traffic so it goes through all your intermediate nodes, you just stop changing IP addresses at random places.
@TilmanBaumann
@TilmanBaumann 19 күн бұрын
Can it do tagged vlan?
@MartijnBraam
@MartijnBraam 19 күн бұрын
Yes it has support for letting the switch handle the tagging and trunking of the traffic although I haven't actually tried to set that up.
@CappellaTheCat
@CappellaTheCat 18 күн бұрын
several parts where🤣
@RakeshShah-cx7ep
@RakeshShah-cx7ep 17 күн бұрын
translation Hindi
@RakeshShah-cx7ep
@RakeshShah-cx7ep 17 күн бұрын
Translation Hindi
Fast networking is cheaper than you think.
22:58
Hardware Haven
Рет қаралды 401 М.
DIY 16MB 30-Pin FPM SIMMs: Supercharge Your Vintage Hardware!
21:54
Bits und Bolts
Рет қаралды 48 М.
A teacher captured the cutest moment at the nursery #shorts
00:33
Fabiosa Stories
Рет қаралды 17 МЛН
Heartwarming moment as priest rescues ceremony with kindness #shorts
00:33
Fabiosa Best Lifehacks
Рет қаралды 38 МЛН
УГАДАЙ ГДЕ ПРАВИЛЬНЫЙ ЦВЕТ?😱
00:14
МЯТНАЯ ФАНТА
Рет қаралды 4,1 МЛН
Red❤️+Green💚=
00:38
ISSEI / いっせい
Рет қаралды 80 МЛН
When Did Raspberry Pi become the villain?
21:54
Jeff Geerling
Рет қаралды 1,5 МЛН
Raspberry Pi 5 with 16GB Ram??
35:41
Handyman Dan
Рет қаралды 7 М.
Intel Express Stacks
32:38
clabretro
Рет қаралды 39 М.
Phosh on the PinePhone Pro
7:00
Martijn Braam
Рет қаралды 7 М.
There’s NO WAY this works - Debunking bogus network splitters.
9:01
Linus Tech Tips
Рет қаралды 3,8 МЛН
I 3D Printed a $1,224 Chair
23:56
Morley Kert
Рет қаралды 1,2 МЛН
The Ultimate Mini Server Rack - Size doesn't matter...
13:17
Raid Owl
Рет қаралды 141 М.
BELIEVE IT OR NOT THIS IS A MUSICAL INSTRUMENT...
14:10
LOOK MUM NO COMPUTER
Рет қаралды 178 М.
A SERIOUS Home Server That's Affordable
18:59
Hardware Haven
Рет қаралды 119 М.
Looks very comfortable. #leddisplay #ledscreen #ledwall #eagerled
0:19
LED Screen Factory-EagerLED
Рет қаралды 2,5 МЛН
S24 Ultra and IPhone 14 Pro Max telephoto shooting comparison #shorts
0:15
Photographer Army
Рет қаралды 9 МЛН
Что делать если в телефон попала вода?
0:17
Лена Тропоцел
Рет қаралды 2,6 МЛН