Simple networking projects, best approach
-
Hello,
my first order just arrived and I can finally start hacking around! I wanted to try some networking solutions to begin with, but I'm kinda confused on what I really need at the moment:
ethernet -> onion -> wifi (creates a new standalone wifi access point)
https://docs.onion.io/omega2-docs/omega-router.htmlwifi -> onion -> wifi (a repeater, basically)
https://docs.onion.io/omega2-docs/wifi-range-extender.htmlWhen and why should I choose one over the other? I just want to connect to my wifi from my room which is too far away from my living room access point. I am trying to understand what's more efficient-effective.
Also, I have an hard time understanding what an ethernet bridge is, even tho I've already read the tutorial https://docs.onion.io/omega2-docs/ethernet-bridge.html : can someone give me some example use cases for this?
Also, this sentence confuses me: The Omega is primarily designed as a development board to prototype WiFi-enabled devices; so i shouldn't be using my omegas to build actual projects but it's meant just to help with first prototyping?
Thanks in advance
-
@Filipe-Madureira said in Simple networking projects, best approach:
The Omega is primarily designed as a development board to prototype WiFi-enabled devices
I interpreted this to mean that you use the Omega for your development so you can plug in the various modules and once your happy with your final design you can build you own boards complete with the required components. For myself I built my IoT using Omega and will soon ship them with OOTB Pro. I don't love the positioning of some of the components but if it ain't broken....
-
@crispyoz said in Simple networking projects, best approach:
OOTB Pro
What's this? Wasn't able to find anything with the help of google.
-
@Filipe-Madureira Out Of The Box (Omega2) Pro
-
@György-Farkas oops I used too much slang
-
I was planning on using the omega2+ as a station to gather sensor data and send it thtough my LAN. Is this a bad idea?
-
@Filipe-Madureira
No, I am doing exactly that.
Why do you think this may be a bad idea? Did you read or observe something that made you think that?
-
@cas From what i understood people use these boards temporary and not for long-term projects. Am i mistaken?
-
This post is deleted!
-
@Filipe-Madureira You'll find many different use cases for the Omega2 here, I guess
My own use case is indeed very long term. I use the Omega2 modules in products that run 24/7 and are expected to do that for years (and have successfully proven that in the past two years already).
I find the combination of a well known router SoC (MT7688) running OpenWrt Linux, which is very carefully optimized for exactly such 24/7 networking devices, a very solid foundation to build on.
OnionOS adds a lot on top of OpenWrt to make it attractive also for the "OOTB" experiment type of projects. Still, it's OpenWrt, so most of the networking howtos of the OpenWrt community can be applied.
Plus, if needed, the Omega2 hardware can also run plain OpenWrt, which might be the way to go for pure networking projects.
You can even build your own customized OpenWrt based firmware (that's what I do for my devices).
So definitely: yes, the Omega2 is good for long-term projects.
-
@luz said in Simple networking projects, best approach:
MT7688
Thank you so much, your reply is very informative and uplifting! Any suggestion on learning OpenWrt for the first time? OnionOS is my first time using an OpenWrt-based OS! I plan on working on heavily networking-focused projects, mostly IoT!
-
@Filipe-Madureira The official openwrt site/wiki has a lot of information and howto guides.
With OnionOS, everything related to the OpenWrt Web UI (LuCI) does not apply, but on the command line most things should work the same or at least in a similar way.
The set of packages installed by default is different from stock OpenWrt, so getting familiar with
opkg
and how to add package feeds might be helpful.The standard network configuration is also different, but the powerful
uci
configuration management is available and worth learning (IMHO a very clever and efficient solution for cleaning up the mess of many different config files and formats). Also note that OnionOS uses a proprietary wifi driver not known in standard OpenWrt, so for details about wifi you need to check the onion docs.
-
@luz Thank you. I have some very specific interrogatives for which I'll open a dedicated thread but I'm really satisfied with my little onion computers so far. Thanks for the links!