Community discussions

MikroTik App

Search found 1296 matches

by Josephny
Fri May 16, 2025 11:44 am
Forum: Scripting
Topic: Add and then selectively remove files
Replies: 8
Views: 566

Re: Add and then selectively remove files

Absolutely -- useful approach to consider the topic log entries the same whether they are to "memory" or to "disk"

Thanks!
by Josephny
Thu May 15, 2025 11:59 pm
Forum: Scripting
Topic: Add and then selectively remove files
Replies: 8
Views: 566

Re: Add and then selectively remove files

Sorry, I'm sure I'm not explaining myself clearly enough. I understand the action=logtodisk and the topics= My confusion is with the following: /system logging action add name=logtodisk target=disk disk-file-name=/flash/log # OR if is not present flash memory # add name=logtodisk target=disk disk-fi...
by Josephny
Thu May 15, 2025 11:00 pm
Forum: General
Topic: PoE Switch recommendation
Replies: 11
Views: 542

Re: PoE Switch recommendation

Product page for NetPower 16p says: Device itself does not have an onboard voltage converter. You need 24V PSU to have 24V PoE out and/or 48V PSU to have 48V PoE out (IEEE 802.3 at/af). * Power supply is NOT included with the product. You are welcome to use your preferred power option, like battery...
by Josephny
Thu May 15, 2025 10:20 pm
Forum: General
Topic: PoE Switch recommendation
Replies: 11
Views: 542

Re: PoE Switch recommendation

Does this apply to both the CRS318-16P-2S+OUT as well as the crs328_24p_4s_rm? The former is half the price of the latter. It does apply to both. But for netpower you need to purchase two power adapters (with MSRP of $18 each making price difference a bit less) and the rest of hassles mentioned. An...
by Josephny
Thu May 15, 2025 6:51 pm
Forum: General
Topic: PoE Switch recommendation
Replies: 11
Views: 542

Re: PoE Switch recommendation

I guess that at least part of price premium can be explained/excused by dual PoE-out nature: each port can either act as 802.3 af/at PoE port or as passive PoE port (at 26V), it's software-selectable. So ideal if one has to power a mix of MT devices and standard 802.3 af/at devices. All of that by ...
by Josephny
Thu May 15, 2025 6:15 pm
Forum: General
Topic: PoE Switch recommendation
Replies: 11
Views: 542

Re: Switch recommendation

I don't see POE out listed on the specs or on the brochure. Am I just missing it? My god, I'm sorry - wrong link. Here, the right one. https://mikrotik.com/product/crs328_24p_4s_rm Yep, that works! Thanks. But, it's double the price of the Netpower 16, which is double the price of a cheap-brand dum...
by Josephny
Thu May 15, 2025 6:04 pm
Forum: General
Topic: PoE Switch recommendation
Replies: 11
Views: 542

Re: Switch recommendation

You could look into the CRS328
https://mikrotik.com/product/crs328_4c_20s_4s_rm

Problem is: it costs a lot more. But comes with 24 1Gbps PoE ports, plus 4 SFP+.
I don't see POE out listed on the specs or on the brochure. Am I just missing it?
by Josephny
Thu May 15, 2025 5:55 pm
Forum: General
Topic: PoE Switch recommendation
Replies: 11
Views: 542

PoE Switch recommendation

I need a switch with minimum 12, 1gb POE OUT ports.

I see on mikrotik.com the Netpower 16 (CRS318-16P-2S+OUT).

I think this has POE-out on all 16 ports.

This is for indoor use (I see the Netpower is good for outdoor).

Is there an alternate model I should look at?

Thanks.
by Josephny
Thu May 15, 2025 3:07 pm
Forum: Scripting
Topic: Add and then selectively remove files
Replies: 8
Views: 566

Re: Add and then selectively remove files

1)/2) Yes! 3) I checked the documentation and I don't see what exactly will be written, and when (i.e., on what occurrences). Work exactly as "memory", just is saved on disk and persist after reboot. Understood, but how do I know what exactly gets written for any speficic topic? Documenta...
by Josephny
Thu May 15, 2025 2:02 pm
Forum: Scripting
Topic: Add and then selectively remove files
Replies: 8
Views: 566

Re: Add and then selectively remove files

1) So this is the recommended way, right? :local ldate [ /system clock get date ] :local ltime [ /system clock get time ] 2) Use :pick -- something like this? :local ldate [ /system clock get date] :local yyyy [:pick $ldate 0 4] :local mm [:pick $ldate 5 7] :local dd [:pick $ldate 8 10] :put "$...
by Josephny
Thu May 15, 2025 11:31 am
Forum: Scripting
Topic: Add and then selectively remove files
Replies: 8
Views: 566

Add and then selectively remove files

Two related questions: 1) How can I create a file where the name includes the date and time? I have this: :local date [ :system clock get date ] :local time [ :system clock get time ] /file print file="testfilename-$date-$time.txt" Results in the creation of: testfilename-2025-05-15-04:16:...
by Josephny
Mon May 12, 2025 10:52 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

That is great. I could swear I tried the syntax of quoted variable name followed by the slash (divided by) and then "10" and it "didn't work for me." I quote "didn't work for me" because I know full well that that phrase means that I did something wrong. I added an emai...
by Josephny
Mon May 12, 2025 3:13 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

easy for some problems: was $roundrttavg ms -> was $"roundrttavg"ms Genius: Netwatch at 355hEX detected a up condition to host 192.168.2.2. The rtt-avg was 23ms and the loss-percent was 0%. These value exceed at least 1 of the thresholds of thr-avg of 00:00:00.400 and the threshold loss-p...
by Josephny
Mon May 12, 2025 1:32 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

Imperfections abound.... I'm still working on getting something more useful. The script now produces: Netwatch at 355hEX detected a up condition to host 192.168.2.2. The rtt-avg was 22 ms and the loss-percent was 0 %. These value exceed at least 1 of the thresholds of thr-avg of 00:00:00.400 and the...
by Josephny
Sun May 11, 2025 2:07 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

I'm blown away at the level of expertise on this forum. And, somehow, even more in awe of the generousity shown while sharing all of your expertise. FYI, I am grateful that you are providing an irresistable temptation to exercise this tired old brain. Please let me know if I have this correctly: ROS...
by Josephny
Sat May 10, 2025 2:18 am
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

So these variables hold text, right? $llosspercent $lrttavg But, the following show the results in whole ms: :local roundrttavg ($lrttavg / 1000) :log info $roundrttavg Does adding " / 1000" simply drop the last 3 characters of the text value of $lrttavg? And getting the results in ms to 2...
by Josephny
Fri May 09, 2025 5:24 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

I did read and did try, with and without the "<" and ">" symbols and it doesn't work. :log info "runtime loss-percent is >$llosspercent</10 %" :log info "runtime rtt-avg is >$lrttavg< us (=4294967295 on down)" runtime loss-percent is >0</10 % runtime rtt-avg i...
by Josephny
Fri May 09, 2025 1:42 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

At 00:30 today the netwatched host went down. The rtt-avg was 4294967295 (choose whatever unit you prefer) and the packet loss was 1000% -- that's a lot of DOWN! Netwatch at 355hEX detected a down condition to host 192.168.2.2. The rtt-avg was 4294967295 and the loss-percent was 1000. These value ex...
by Josephny
Fri May 09, 2025 12:13 am
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

And, the rtt-avg of 24516 actually means 24.516ms. Hmmm. :? That would imply that inside the router there Is a clock (or some other high precision technology marvel ) capable of 1 millionth second (microsecond) resolution. :shock: I can't say I know anything about this, but my conclusion was far le...
by Josephny
Thu May 08, 2025 11:25 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

I added this to your script: :local thisBox [/system identity get name] :log info "Netwatch at $thisBox detected a $lstatus condition to host $lhost. The rtt-avg was $lrttavg and the loss-percent was $llosspercent. These value exceed at least 1 of the thresholds of thr-avg of $[get $netwatchID ...
by Josephny
Thu May 08, 2025 3:59 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Scripting in the context of Netwatch

Now that's a sexy script!
by Josephny
Thu May 08, 2025 2:36 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Scripting in the context of Netwatch

Please provide an appropriate title, the current one IS WRONG and ONLY creates CONFUSION. First of all it is wrong to refer to netwatch in this way "/tool/netwatch get [find host=8.8.8.8]" because there can be more than 1 netwatch with the same IP 8.8.8.8, second, thr-avg is a property, a...
by Josephny
Thu May 08, 2025 2:31 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Scripting in the context of Netwatch

delete please
by Josephny
Thu May 08, 2025 1:53 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

An alternative solution that doesn’t require scripting is to enable Netwatch logging with " /system logging add prefix=debug topics=netwatch ", and then check all the values in the log: 07:39:10 netwatch,debug debug: [ type: icmp, host: 1.1.1.1 ] Stats: 07:39:10 netwatch,debug debug: [ OK...
by Josephny
Thu May 08, 2025 12:58 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

I may be old fashioned, but before learning to script better there is IMHO the needed step of learning to script. As I see it (non-working) scripts should be divided between those that do not work because they are "wrong" (conceptually) and those that do not work just because of some mist...
by Josephny
Thu May 08, 2025 12:16 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

@Amm0 so you automatically give for reknown basic things that a beginner needs to learn My point is if you understand the problem, you MAY be able to avoid script. If goal is to JUST "tweak a netwatch", then to output current values (rtt- loss- etc) AND configured "threshold", t...
by Josephny
Wed May 07, 2025 11:19 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

You need to use curly brackets when running commands in the terminal to keep everything in the same "scope": { :local myhost 8.8.8.8 :put $myhost } Or: { :local myhost 8.8.8.8; :put $myhost } Now I get it. Yes, :put output is now "8.8.8.8" Thank you for your extreme patience and...
by Josephny
Wed May 07, 2025 10:31 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

It's a different problem. Anyway, jaclaz has more patience than I. If we knew what the desired output and preferred scheme, it be easier to help. And, my understanding is that only the rtt-* variables are predefined -- not the thr-* variables. Is that not correct? Half true. The thr-* are not passe...
by Josephny
Wed May 07, 2025 10:27 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

So, in the script, if you replace :local myhost $host with :local myhost 8.8.8.8 (or whatever host you are using in the netwatch) what happens? Still blank: [admin@355hEX] /tool/netwatch> :local myhost 8.8.8.8 [admin@355hEX] /tool/netwatch> :put $myhost [admin@355hEX] /tool/netwatch> I tried this o...
by Josephny
Wed May 07, 2025 8:29 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

If there is no output, I would suspect that $myhost is empty/not defined or not found. Simple test: { :local myhost Pippo :put $myhost } and/or: /tool netwatch :local mystatus [get [find where host=] status] does it give the same or a different error? [admin@355hEX] /tool/netwatch> { {... :local my...
by Josephny
Wed May 07, 2025 8:24 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

Didn't we already have this discussion about the same script? See https://forum.mikrotik.com/viewtopic.php?t=216444 It's not helpful to start again, since context is lost. Discussed in that thread is there is no need for :local variables in the first place! When a /system/script is called as action...
by Josephny
Wed May 07, 2025 6:23 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

The following as the script called by DOWN and UP in netwatch works fine: :local myhost $host :log info $myhost /tool netwatch #:local mystatus [get [find where host=$myhost] status] #:local mycomment [get [find where host=$myhost] comment] #:local myinterval [get [find where host=$myhost] interval]...
by Josephny
Wed May 07, 2025 6:09 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

Terminal output: [admin@355hEX] > { {... :local myhost $host {... :put $myhost {... } [admin@355hEX] > In the netwatch UP and DOWN entry: No output because, I believe, :put has no where to "put" it In a script (with nothing else) called by the netwatch UP and DOWN entries: Also, no output.
by Josephny
Wed May 07, 2025 5:54 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Re: Error when defining any local variable

:local myhost $host 
works just fine

"log info $myhost"

creates the correct log entry.

When I uncomment any of the commented :local statements an error is generated.
by Josephny
Wed May 07, 2025 3:00 pm
Forum: Scripting
Topic: Scripting in the context of Netwatch
Replies: 57
Views: 3452

Scripting in the context of Netwatch

This script is called in Netwatch when DOWN or UP status changes. I can't figure out why this script fails if I un-comment any of the ":local" variable declarations: :local myhost $host /tool netwatch #:local mystatus [get [find where host=$myhost] status] #:local mycomment [get [find wher...
by Josephny
Wed May 07, 2025 12:38 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

Is this accurate? Yes , it seems accurate to me , in the sense of accurate representation of how we have understood it works, not necessarily accurate in an absolute way. What is missing is (very likely irrelevant in practice, still ...) is the actual time the ping takes, while it is likely a very,...
by Josephny
Wed May 07, 2025 12:24 pm
Forum: Wireless Networking
Topic: Wireless disconnection messages explained!
Replies: 99
Views: 219686

Re: Wireless disconnection messages explained!

Please someone help me, Quick summary: Four sector 19dbi 120degree antennas connected in both ch0 and ch1 of the netmetal ax using two splitter in offshore to cover 360degree. control room have one dish antenna 30dbi connected in netmetal 5AC. The distance is 6-8km. This setup is for monitor the of...
by Josephny
Wed May 07, 2025 12:14 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

So, provided that the way I understood the mechanism is correct :? , it seems to me that: interval should be as low as possible (with some common sense, the default 10s seems too little, I would settle for 60 seconds or 1 minute) Well, I'd say that setting interval= is more about often you want any...
by Josephny
Wed May 07, 2025 11:59 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

So is this what we all believe happens? Using an example of: interval: 10s timeout: 500ms packet-interval: 100ms packet-count: 20 time 0: Netwatch starts the process of sending "packet-count" number of packets (20) at "packet-interval" (100ms) time 2000ms: Netwatch stops sending ...
by Josephny
Tue May 06, 2025 1:15 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

@jaclaz That is exaclty as I understood it also: packets are sent every 200ms until 400 packets are sent. This process repeats every 2 minutes. And, a 95% packet loss threshold. It was with this understanding of how the parameters interact that I chose them with the goal of netwatch not triggering a...
by Josephny
Tue May 06, 2025 4:54 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

/tool netwatch add comment=Netwatch-192.168.2.2 disabled=no down-script=Netwatch-details host=192.168.2.2 http-codes="" interval=2m name=Netwatch-192.168.2.2 packet-count=400 packet-interval=200ms test-script="" thr-avg=\ 400ms thr-loss-percent=95% type=icmp up-script=Netwatch-d...
by Josephny
Tue May 06, 2025 4:25 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

I like math, and I'm not bad at it. But how do we get to 3.5 pings/second? A ping every 200ms is 5 pings/second, right? with each netwatch test being 400 pings, that's 80 seconds of pings, right? What am I doing wrong? What I am hoping to have achieved by using the ICMP type of netwatch, and by twea...
by Josephny
Tue May 06, 2025 3:25 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

To me it still looks like hammering. :shock: 400 packets sent at 200 ms interval every 2 minutes? The defaults end up being 6 runs per minute x 10 packets/run=60 packets/minute (which already seem to me a lot). Your last settings come up as 1/2 run per minute x 400 packets/run=200 packets/minute. B...
by Josephny
Mon May 05, 2025 3:44 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

Following up for posterity: Since changing the netwatch parameters to the following: /tool netwatch add comment=Netwatch-192.168.2.2 disabled=no down-script=Netwatch-details host=192.168.2.2 http-codes="" interval=2m name=Netwatch-192.168.2.2 packet-count=400 packet-interval=200ms test-scr...
by Josephny
Mon May 05, 2025 12:03 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold



But I would never have figured out with your help ...
Talking of double negations .. I presume there Is an "out" that slipped from your fingers ... (I would try putting It after the "with"). :lol:
Typo: “Without”
by Josephny
Sun May 04, 2025 11:01 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

I do indeed see: Screenshot 2025-05-04 155716.png But I would never have figured out with your help that the system has predefined variables matching what is displayed (and that is not considering the inclusion of a "-" or the need for $"<variable-name>") How would one find this ...
by Josephny
Sun May 04, 2025 10:23 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

It's just $"loss-percent", $"thr-loss-percent" defines where the $"loss-percent" fails. These variables already pre-defined in the down/up-script= so they do not have to be declared or "get" That works. Is there some terminology somewhere that would inform me...
by Josephny
Sun May 04, 2025 10:07 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

I can't get rtt-loss-percent to work.

This in a script:
:local myrttlossper [get [find where host=$myhost] rtt-loss-percent]
kicks back an error
by Josephny
Sun May 04, 2025 1:59 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

The way I read the docs, it is a "or", i.e. there are 6 different thresholds: thr-max (Default: 1s) Fail threshold for round trip time-max (a value above thr-max is a probe fail) thr-avg (Default: 100ms) Fail threshold for round trip time-avg thr-stdev (Default: 250ms) Fail threshold for ...
by Josephny
Sun May 04, 2025 1:08 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

Still playing with netwatch and trying these settings: /tool netwatch add comment=Netwatch-192.168.0.11 disabled=no down-script=Netwatch-details host=192.168.0.11 http-codes="" interval=2m name=Netwatch-192.168.0.11 packet-count=300 packet-interval=200ms \ test-script="" thr-avg=...
by Josephny
Thu May 01, 2025 1:24 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

It gets even better: Here I am thinking I will capture the actual values of these variables and write them to the log instead of turning on logging for topic netwatch and having the log fill up it, when, in reality, the only thing being logged is the netwatch settings (i.e., not the netwatch results...
by Josephny
Thu May 01, 2025 4:56 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

Thanks, that fixed that line. But the rest didn't work. I tried various combinations of quotes. I removed the underscore. Then I discovered that hyphens aren't liked either. There are too many unintuitive rules with this scripting! This works: :local myhost $host /tool netwatch :local mystatus [get ...
by Josephny
Thu May 01, 2025 2:26 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

Ugh! Everything takes so much time, troubleshooting, effort, frustration. I've got a whole big (for me) script, and continue to get an error. Troubleshooting by commenting out lines, this line is the culprit: :local my_host $host With this being the only non-commented line, the script fails: executi...
by Josephny
Thu May 01, 2025 1:45 am
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

@Josepny Using in scripts variables with the same name of ROS parameters/values/commands/etc. is usually not a good idea. point #16 here: https://forum.mikrotik.com/viewtopic.php?p=1128345 use (say) my_ prefix, i.e. my_status, my_comment, etc. Adding "my_" to the name of an ROS parameter/...
by Josephny
Wed Apr 30, 2025 5:10 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

With netwatch: /tool netwatch add disabled=no host=192.168.2.2 http-codes="" interval=1m name=Netwatch-192.168.2.2 packet-count=100 packet-interval=100ms thr-avg=400ms \ thr-loss-percent=90% type=icmp Enabled logging and seeing this every minute: 2025-04-30 09:59:32 netwatch,debug [ Netwat...
by Josephny
Wed Apr 30, 2025 4:55 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

That looks right to me. As I said, I'd compare the "Status" to make sure all the other RTT things are well within the defaults. If not, or even close, specifically set the various thr-* higher. If you temporary enable topics=netwatch in /system/logging, it will log both the values got, an...
by Josephny
Wed Apr 30, 2025 3:10 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

The goal for me here, BTW, is to not wake up to a screen full of notifications about down hosts when the ISP does some 1 minute flapping in the middle of the night. That is rather easy, suggested "down" script contents: #DO NOTHING :lol: LOL! That's just what they think you'd think they'd...
by Josephny
Wed Apr 30, 2025 1:54 pm
Forum: General
Topic: Netwatch UP threshold
Replies: 61
Views: 3842

Re: Netwatch UP threshold

Do I understand this correctly that the following code will check the host once every 1 minute by sending out 100 packets with a 100ms interval between packets and return a 'HOST-IS-DOWN' result if the average response time of those 100 packets is greater than 400ms AND the total packet loss rate is...
by Josephny
Tue Apr 29, 2025 11:37 pm
Forum: General
Topic: Using AI to help configuring RouterOS and scripting
Replies: 47
Views: 3400

Re: Using AI to help configuring RouterOS and scripting

Tried another one with Dude AI. And it's similar with config (which is essentially still scripting) – while perhaps LLM get "closer" for standard config... but ,it does not know the needed order of operations and names are inconsistent. For example, I tried a somewhat more complex prompt ...
by Josephny
Tue Apr 29, 2025 2:09 am
Forum: General
Topic: Asking non-Mikrotk questions
Replies: 11
Views: 853

Re: Asking non-Mikrotk questions

Of course, in the end, lovable.dev is writing html, so I would need to edit it manually (although I would suspect there are nice visual editors available).
by Josephny
Tue Apr 29, 2025 2:04 am
Forum: General
Topic: Asking non-Mikrotk questions
Replies: 11
Views: 853

Re: Asking non-Mikrotk questions

What not using the old way with pre-made templates? A good half or possibly 3/4 of these kind of websites are anyway more or less a copycat of the other, and it is not like there is that much content in them, if you link to a booking portal like Airbnb, the houses/apartments/whatever are pretty muc...
by Josephny
Tue Apr 29, 2025 2:00 am
Forum: General
Topic: Asking non-Mikrotk questions
Replies: 11
Views: 853

Re: Asking non-Mikrotk questions

I just found lovable.dev. This is the response to a quick prompt at lovable.dev: I need a website that showcases my 6 short term rental houses, with a description and many images of each and a link to each property's airbnb booking page. Lovable 18:48 on Apr 28, 2025 I'm excited to help you create a...
by Josephny
Tue Apr 29, 2025 1:00 am
Forum: General
Topic: Asking non-Mikrotk questions
Replies: 11
Views: 853

Re: Asking non-Mikrotk questions

Did you try any of the AI site builders I linked to?
Do you mean Wix, Square Space, etc.?

The AI at web site building is (far) worse than the AI for ROS scripting.
by Josephny
Tue Apr 29, 2025 12:41 am
Forum: General
Topic: Asking non-Mikrotk questions
Replies: 11
Views: 853

Re: Asking non-Mikrotk questions

Google " AI website builder " or just ask your favorite AI. ;-) I did that before coming here. It turned up the usual names (Wix, Squarespace, Google sites, etc.). I actually asked ChatGPT to tell me how it would make my site nicer and it was prevented from visiting the site. I suspect th...
by Josephny
Tue Apr 29, 2025 12:03 am
Forum: General
Topic: Asking non-Mikrotk questions
Replies: 11
Views: 853

Re: Asking non-Mikrotk questions

Good answers so far! I’m tempted to stop right here and claim that my original post was my only question. But, it wasn’t…. I have a simple website, hosted at Dotster (aka web.com and soon to be network solutions (goes around comes around)). I made it with Dotster’s Wordpress but I am even worse at W...
by Josephny
Mon Apr 28, 2025 9:11 pm
Forum: General
Topic: Asking non-Mikrotk questions
Replies: 11
Views: 853

Asking non-Mikrotk questions

Is it okay to ask a question on a completely non-Mikrotik topic (technology related, but no justifiable way to relate it to Mikrotik)?
by Josephny
Thu Apr 24, 2025 12:27 am
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

I agree with almost everything you write. And it surely possible that with regards to those thing I don't agree with, I could be wrong. That is to say, no doubt there a number of reasons why communication here has been difficult. And, one of them very well be my ignorance. Thanks to you and others h...
by Josephny
Wed Apr 23, 2025 8:56 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

My hope is also that these discussions help develop the language to use to communicate more effectively about these topics. I hate to disappoint you, but the language is already developed, established and wildly used ... one simply has to learn it. Pretty much the same as every toddler has to learn...
by Josephny
Wed Apr 23, 2025 7:43 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

I am so grateful to you all for these discussions.

They quickly rise to a level above my comprehension but nonetheless raise my understanding substantially.

My hope is also that these discussions help develop the language to use to communicate more effectively about these topics.

Thanks everyone!
by Josephny
Wed Apr 23, 2025 3:37 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

I was only pointing out that the block diagram helps clarify in some ways, but not as much as I had originally thought because the IPQ6010 is depicted as a single unit, unexplained in any way other than the fact that there is contained within in it a ASIC and a CPU. So, for the purpose of understand...
by Josephny
Wed Apr 23, 2025 2:50 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

Oh well -- I'm wrong again. So the IPQ6010 is a single chip or device that includes the ASIC and CPU. The IPQ6010 has physical connections to the QCA8075 chips (ethernet ports), the QCN-5022 and 5055 wifi chips, and the RAM/USB/NAND/LEDs. I suppose, therefore, that the diagram (the original, not my ...
by Josephny
Wed Apr 23, 2025 1:26 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

@mkx:

Could you confirm that my understanding of the diagram is correct:

Yellow is the switch chip
Green is the CPU
Red is the entire MT device
Purple are the physical connections

Screenshot 2025-04-23 062145.jpg
by Josephny
Wed Apr 23, 2025 1:21 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

Another wow! The combination of the diagram and the specific examples of frame patches that use the CPU is a great way to communicate (teach) this. The diagram, explanation, and examples definitely work together, doing a better job than any one of these singularly can do, to make clear how this works.
by Josephny
Wed Apr 23, 2025 11:22 am
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

Right, the above limitation only affects LAN to LAN traffic within the same VLAN. Everything else always goes through the CPU anyway: 1. Between wireless and LAN. 2. Between wireless and wireless. 3. Between wired and wired in different VLANs, with the exception of some higher-end switches that sup...
by Josephny
Wed Apr 23, 2025 1:30 am
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

Great discussion -- thank you.

For clarification of one aspect of the origin and intent of my quesiton: I was thinking specifically about whether frames between wifi and etherports could exclusively use the switch chip. That is, the use of a dumb switch would not be applicable.
by Josephny
Tue Apr 22, 2025 9:50 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

When we say HW offloaded we mean that the frames are processed (I wouldn't dare say routed) by the switch chip, right? In other words, HW offloading is when the CPU is NOT being used, right? HW offloading usually means that the device has an ASIC that will process the frames 1000 times faster than ...
by Josephny
Tue Apr 22, 2025 9:34 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

That is fascinating! I just want to make sure I understand: When we say HW offloaded we mean that the frames are processed (I wouldn't dare say routed) by the switch chip, right? In other words, HW offloading is when the CPU is NOT being used, right? And, basically, with the ax3, if it is configured...
by Josephny
Tue Apr 22, 2025 2:32 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

Re: AX3 as basic AP/switch

Thanks guys! I did not know that frames between wifi-connected devices and the devices connected to the etherports required the CPU. I thought if the wifi interfaces were part of the bridge, it would be switch chip only. "More than 1 IP to do it's job" captures the criteria nicely. The ax3...
by Josephny
Tue Apr 22, 2025 12:52 pm
Forum: General
Topic: AX3 as basic AP/switch
Replies: 45
Views: 2910

AX3 as basic AP/switch

Two questions please: 1) How can I confirm that the config below matches what would on this forum be labeled as "used as a switch and not as a router?" (Yes, I know about the other thread: I started it. But, I am asking for the specific config entries below to be identified. For example, t...
by Josephny
Wed Apr 16, 2025 2:51 pm
Forum: General
Topic: How many VLANs?
Replies: 18
Views: 1282

Re: How many VLANs?

I have no desire for an argumentative, aggressive, accusatory discussion this morning.

Simply hoping to get some insights and guidance.

Happy to drop the whole thing.
by Josephny
Wed Apr 16, 2025 2:10 pm
Forum: General
Topic: How many VLANs?
Replies: 18
Views: 1282

Re: How many VLANs?

There is NO PREFERRED SOLUTION!! Its up to you to decide your comfort level of security. In order for me to decide, I need to understand the options in more detail than something like: "the more vlans I have the more security I have" I dont understand the question. VLAN are to insure bi-d...
by Josephny
Wed Apr 16, 2025 1:57 pm
Forum: General
Topic: How many VLANs?
Replies: 18
Views: 1282

Re: How many VLANs?

One should view it as, if a device was compromised, what can it then attack........................... simple question. There is no RIGHT answer, its personal , and what level of comfort you have exposing devices to other devices be they IOT, media, voip, laptops, smartphones etc....... . That is a...
by Josephny
Wed Apr 16, 2025 1:55 pm
Forum: General
Topic: How many VLANs?
Replies: 18
Views: 1282

Re: How many VLANs?

You don't have anything that should be restricted from asccessing Internet? Like IoT (my Chinese camera's don't have access to Internet). I wish I understood this better. There are various sensors that feed local servers data streams. To that extent, they don't need Internet access. But, other IoT ...
by Josephny
Wed Apr 16, 2025 1:27 pm
Forum: General
Topic: How many VLANs?
Replies: 18
Views: 1282

Re: How many VLANs?

Thank you for your help. Your suggestion of looking at the type or purpose of traffic made me think about this differently. From a perspective of what services or access the different types of connections need I see the following groups of connected devices and users that might correspond to the str...
by Josephny
Wed Apr 16, 2025 1:05 am
Forum: General
Topic: How many VLANs?
Replies: 18
Views: 1282

How many VLANs?

How many VLANs? For a large home network (connected via Wireguard to other locations with a similar group of devices), often with guests/visitors, how fine should the granularity be when it comes to creating separate VLANs? I have the following types of devices: Admins (me) Family connecting via wif...
by Josephny
Mon Apr 14, 2025 7:21 pm
Forum: Scripting
Topic: SNMP execute scripts
Replies: 12
Views: 7349

Re: SNMP execute scripts

I thought it was just a random OID.

May we all be smitten with such a vice.
by Josephny
Mon Apr 14, 2025 7:00 pm
Forum: Scripting
Topic: SNMP execute scripts
Replies: 12
Views: 7349

Re: SNMP execute scripts

For the OP problem only the solution is simple, add "1" in the right point....


1.2.3.4 1.3.6.1.4.1.14988.1.1.8.1.1.3.3
=>
1.2.3.4 1.3.6.1.4.1.14988.1.1.18.1.1.3.3
@rextended:

What is this magic that you do? How did you know the value was 18 and not 8?
by Josephny
Mon Apr 14, 2025 2:34 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

Thank you anav!

I know very well that just about everyone is here to help others, and I try hard to keep that in mind, and appreciate it, with every post.

Being (too) introspective, I nonetheless question my own effort and capability sometimes. But, then, I press on.
by Josephny
Mon Apr 14, 2025 1:43 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

I am sure I have recommended Ed Harmoush's Network Fundamentals and VLANs — Index to you in the past, but you probably think that it isn't worth your time trying to learn the fundamentals. It is well worth the time. Especially for someone that comes back to the forum for his daily fish so frequentl...
by Josephny
Sun Apr 13, 2025 4:08 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

Use: "VLAN routing" when frames pass between VLANs as well as between different IP subnets in different VLANs.

Use: "VLAN bridging" or "vlan switching" or "forwarding" when frames pass on the same vlan from one port to another.
by Josephny
Sun Apr 13, 2025 3:42 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

My question can be reformulted or restated as: How to I ensure that a CRS ROS configuration is such that the CRS is used as a cloud router SWITCH ? The answer to that question has already come from @mkx - if everything works as required while there is only a single IP address up on the CRS326, it o...
by Josephny
Sun Apr 13, 2025 2:41 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

There are very many threads that involves people screaming at others that they are using the CRS as a router. I can understand (basically) the extreme examples of a CRS being used as an edge router with an Internet-connected WAN port and wireguard or multiple networks, etc. I really struggle to und...
by Josephny
Sun Apr 13, 2025 2:09 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

In short: any RouterOS device, which has more than a single IP address configured (used only for management), can eventually become a router. So a switch should never have more than one IP address configured, if configuring additional IP address solves a traffic problem, it means that switch became...
by Josephny
Sun Apr 13, 2025 2:00 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

The example provided is a bit confusing. - why include ports 5 through spf-sfpplus2 if not relevant (not being used) - then I see sfp-sfpplus1 is being used but no indication its a trunk port ( frame types or comment missing ) which is inconsistent from the other entries........ - why are you missi...
by Josephny
Sun Apr 13, 2025 1:58 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

https://www.spiceworks.com/tech/networking/articles/network-switch-vs-router/ Clues to you are routing. -DHCP -WAN and LAN -NAT -all subnets have an address -need firewall rules (layer3) Switch..... Single Ip address provided to switch setup is primarily about vlan traffic only management or truste...
by Josephny
Sun Apr 13, 2025 1:52 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Re: Using CRS326 as a switch

A networking device can take various header fields of an Ethernet frame and the packet it carries into account to make a decision where to forward that frame. If it only chooses the output interface based on the destination MAC address and, possibly, VLAN ID of the incoming frame, it handles that f...
by Josephny
Sun Apr 13, 2025 1:12 pm
Forum: General
Topic: Using CRS326 as a switch
Replies: 36
Views: 2504

Using CRS326 as a switch

I am trying to understand exactly what configuration items determine whether a CRS326 (running ROS) is being used as a switch-only or as a switch-router. From reading many prior threads, using the CRS as a switch-only results in much better performance. I am having a hard time identifying exactly wh...
by Josephny
Sat Apr 12, 2025 2:18 am
Forum: Scripting
Topic: Ether interface status change notification?
Replies: 4
Views: 742

Re: Ether interface status change notification?

The logging works great.
/system logging action
add email-to=<user>@<domain>.com name=email target=email

/system logging
add action=email regex="ether3 link down" topics=info
I have it set to email me (for now):
Screenshot 2025-04-11 191530.png
by Josephny
Fri Apr 11, 2025 11:50 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

So what is the summary on why RoMON does not work here? I lost track of the conversation. The OP was trying to use romon from on a PC behind a second rb5009 (that was giving the lab 5009) a WANIP on its flan LAN, to reach the CRS326 that was behind the lab 5009. The OP initially gave the impression...
by Josephny
Fri Apr 11, 2025 1:13 pm
Forum: Scripting
Topic: Ether interface status change notification?
Replies: 4
Views: 742

Re: Ether interface status change notification?

I found this thread: https://forum.mikrotik.com/viewtopic.php?t=173178 that suggests a syslog action of email might work. But, I don't want all topic: interface log messages emailed. Only when ether3 goes down. Nothing more. I see there is a regex option in the logging. I'll try simply using "e...
by Josephny
Fri Apr 11, 2025 1:00 pm
Forum: Scripting
Topic: Ether interface status change notification?
Replies: 4
Views: 742

Re: Ether interface status change notification?

Thank you, I am.

I am hoping there is a more direct manner to monitor the same status that is being logged, and not whether there is connectivity to the device(s) on that interface.
by Josephny
Fri Apr 11, 2025 12:24 pm
Forum: Scripting
Topic: Ether interface status change notification?
Replies: 4
Views: 742

Ether interface status change notification?

Is there a script, or the basis of a script that I can start with, that will monitor either the status (up or down) of an interface? With logging to memory of topic: info I get this: ether3 link down which is good, but I was hoping to send a notification of this event (including the date and time of...
by Josephny
Fri Apr 11, 2025 1:31 am
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

You inspired and guided me to another solution! The Windows PC I'm sitting at is wired to 5009-master with a (locally) statically assigned ip of 192.168.2.22 But, it also has a built in wifi adapter. And (another thing I hadn't mentioned is that) I have an ax3 also plugged into 5009-lab. So, I enabl...
by Josephny
Fri Apr 11, 2025 1:18 am
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

I do like the goal, but the 5009-master is not set up for vlan. I bought a second 5009 (5009-lab) and the CRS (to replace the CSS) to set these up independently, learn, test, make sure they work before swapping them in for the 5009-master and css. It looks like without VLANs on the 5009-master, the ...
by Josephny
Fri Apr 11, 2025 12:41 am
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

Only stating there was a second 5009 at play at such a late stage, and that the Romon issue stemmed from the first one to the Switch was a criminal omission . Consider yourself flogged ;-) Your punishment is having to eat the entire plate of smoked meat served at Katz's. LOL!!!! Just trying to keep...
by Josephny
Fri Apr 11, 2025 12:19 am
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

I gather then you have a physical cable attached between master5009 and Lab5009 then??
where is that indicated on the LAB 5009 config??
ether1 (WAN)
by Josephny
Fri Apr 11, 2025 12:14 am
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

And bridge will drop RoMON if it's admit-only-vlan-tagged, period — RoMON is not "VLAN tagged"
Got it -- RoMON is not carried across vlan-tagged frames because RoMON frames are neither IP nor IP+VLAN type frames. (Is this an accurate way of describing it?).
by Josephny
Thu Apr 10, 2025 11:59 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

Who told you this............... ?????? I need Romon to access the CRS its clear that even though ROMON should not be affected by vlan tag settings on the bridge itself, they are, so avoid its use is my advice. So this test bed (5009-lab and CRS) is set up as such: 5009-lab is connected to an opera...
by Josephny
Thu Apr 10, 2025 11:53 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

What is the conflict? I am having difficulty identifying the conflict. ether7 is the CRS. The config paints a conflicted story? set [ find default-name= sfp-sfpplus1 ] comment= CSS326 Hard to find ether7 tagged for any vlans going to CRS326 ??? /interface bridge vlan add bridge=bridge comment=\ &qu...
by Josephny
Thu Apr 10, 2025 8:20 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

8. Assigning ether7, tagged here add bridge=bridge comment="ports bridge,4,5,sfp to carry vlan32 out of 5009 AN\ D assign vlan32 to frames arriving on ports 6,7 -- temp moved 7 to tagged \ from untagged" tagged=bridge,sfp-sfpplus1,ether4,ether5 ,ether7 untagged=\ ether6 vlan-ids=32 Confli...
by Josephny
Thu Apr 10, 2025 8:13 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

What are you using ROMON for,,,,,,,,,that is not available through neighbours discovery?
I need Romon to access the CRS.

Do your corrections allow me to do this?
by Josephny
Thu Apr 10, 2025 8:02 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

Logically, RoMON is not a tagged packet, so bridge is dropping it. This gets into the topic of Layer2 ethertype's... See https://en.wikipedia.org/wiki/EtherType#Values While not explicitly shown.... by setting frame-types=admit-only-vlan-tagged you're saying you only want "VLAN" ethertype...
by Josephny
Thu Apr 10, 2025 7:10 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

Re: ROMON fails with frame-types=admit-only-vlan-tagged

SWITCH Why are you treating the switch like a router? The only address on the switch is the one given to the switch over the management vlan32 ??? Bridge is not involved............ reminder to look at switch example: https://forum.mikrotik.com/viewtopic.php?t=143620 There is only need of ONE inter...
by Josephny
Thu Apr 10, 2025 6:23 pm
Forum: General
Topic: ROMON fails with frame-types=admit-only-vlan-tagged
Replies: 31
Views: 5403

ROMON fails with frame-types=admit-only-vlan-tagged

I have an RB5009 (ether7) connected to a CRS326 (ether1) with vlan-id=32 setup. I think the VLAN is working nicely regardless of the frame=type setting for ether 7. But, when I change ether7 from frame=type=admit-all to frame-type=admit-only-vlan-tagged I lose the ability to connect to the CRS via R...
by Josephny
Thu Apr 10, 2025 2:13 pm
Forum: General
Topic: Confused about srcnat and dstnat chain in NAT [SOLVED]
Replies: 8
Views: 9303

Re: Confused about srcnat and dstnat chain in NAT [SOLVED]

Just wanted to resurrect this thread to say thank you to the OP and the participants. This was very enlightening. Some examples: @mkx: for action=masquerade ... it's vital to be done after routing decission as action uses IP address of egress interface as new value of src-address. it's important to ...
by Josephny
Thu Apr 10, 2025 2:45 am
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

The last thing I would, should, or could do is get involved the substance of this disagreement. Nonetheless, as the struggling OP, I can add (due to my unique perspective and standing as a struggler), that we (strugglers) do indeed need a better set of terms, a manner of abstraction, a method of con...
by Josephny
Thu Apr 10, 2025 2:11 am
Forum: General
Topic: Need a nat rule
Replies: 11
Views: 1174

Re: Need a nat rule

CGGXANNX sussed out my situation because of my extraordinary communication skills :D Oh yea, and also because he is clearly quite smart. There is only a single inaccuracy, though of absolutely no significance whatsoever: The camera is not old, and is quite a good quality camera (EmpireTech B5842E, w...
by Josephny
Wed Apr 09, 2025 4:14 am
Forum: General
Topic: Need a nat rule
Replies: 11
Views: 1174

Re: Need a nat rule

Your previous attempts did not work because the router didn't know that it should forward frames destined for 192.168.0.97 to ether2. By adding the IP address (and the network address, if you want you can also use 192.168.0.98/24 as address and 192.168.0.0 as network) to the interface vlan-cameras,...
by Josephny
Wed Apr 09, 2025 2:24 am
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

The first error. 1. is quoting from your config in post #18 and is WRONG ( do not use the bridge itself to set frames ) IMHO if OP has a VLAN-only configuration, with no IP address configured on the interface "bridge", then setting frame-types=admit-only-vlan-tagged is the correct way, an...
by Josephny
Wed Apr 09, 2025 12:56 am
Forum: General
Topic: Need a nat rule
Replies: 11
Views: 1174

Re: Need a nat rule

100 miles away -- seeing for the first time:
Untitled.jpg
by Josephny
Wed Apr 09, 2025 12:43 am
Forum: General
Topic: Need a nat rule
Replies: 11
Views: 1174

Re: Need a nat rule

Is that ether2 port part of a bridge (slave port) or outside of any bridges (standalone interface)? You'll need to add an IP address first /ip address # choose only one of the three following! add address=192.168.0.98 interface=ether2 network=192.168.0.97 # only if ether2 is standalone port! add ad...
by Josephny
Wed Apr 09, 2025 12:08 am
Forum: General
Topic: Need a nat rule
Replies: 11
Views: 1174

Re: Need a nat rule

So far I've tried, without success: /ip firewall nat add action=dst-nat chain=dstnat log=yes src-address=192.168.0.97 to-addresses=10.72.22.97 add action=src-nat chain=srcnat src-address=192.168.0.97 to-addresses=10.21.22.97 I've also tried the same thing but with x.x.x.0/24 for both networks. I've ...
by Josephny
Wed Apr 09, 2025 12:05 am
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

The first error. 1. is quoting from your config in post #18 and is WRONG ( do not use the bridge itself to set frames ) 2. is quoting from your confing in post #18 and is WRONG. Your contradicting yourself, as plain as day, how can you say its a vlan tagged frames, when you have a PVID???? 3. Missi...
by Josephny
Tue Apr 08, 2025 8:50 pm
Forum: General
Topic: Need a nat rule
Replies: 11
Views: 1174

Need a nat rule

I don’t know if this is possible. I have a location with a hAPax3. On ether2 is a camera that was previously configured to have a static ip address of 192.168.0.97 The environment is has several vlans in the 10.a.b.c networks, as well as a Wireguard connection with the interface at 10.10.100.80 I am...
by Josephny
Tue Apr 08, 2025 4:54 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

Speed is not all its cracked up to be, taking ones time mostly results in greater satisfaction,.......... Besides there is an error before that..... and many many after LOL 1. /interface bridge add admin-mac=F4:1E:57:2C:BE:98 auto-mac=no comment=defconf frame-types=\ admit-only-vlan-tagged name=bri...
by Josephny
Tue Apr 08, 2025 4:03 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

This one:
/interface vlan
add comment=vlan32 interface=ether1 name=vlan32 vlan-id=32
It should be interface=bridge ... it took me 0 seconds (recognized it while reading config).
We have a winner!
by Josephny
Tue Apr 08, 2025 2:03 pm
Forum: Beginner Basics
Topic: Can't Access LAN Devices Behind MikroTik via WireGuard Tunnel
Replies: 11
Views: 1175

Re: Can't Access LAN Devices Behind MikroTik via WireGuard Tunnel

I can see 3 things. 1. You have "attached" routes which means theyre directly connected. So no need for an "/ip route" statement as Josephny said I don't see any /ip route statements in your config. 2. this FW rule already should catch all traffic. add action=accept chain=forwar...
by Josephny
Tue Apr 08, 2025 1:09 pm
Forum: Beginner Basics
Topic: Can't Access LAN Devices Behind MikroTik via WireGuard Tunnel
Replies: 11
Views: 1175

Re: Can't Access LAN Devices Behind MikroTik via WireGuard Tunnel

Nice drawing! Maybe try putting the wireguard interface on the bridge? Thank you for the suggestion! I don’t have a strong networking background, so I’m not sure I fully understood what you meant. Since my WireGuard and LAN subnets are different, wouldn’t I need proper IP routing between them, alon...
by Josephny
Tue Apr 08, 2025 12:41 pm
Forum: Beginner Basics
Topic: Can't Access LAN Devices Behind MikroTik via WireGuard Tunnel
Replies: 11
Views: 1175

Re: Can't Access LAN Devices Behind MikroTik via WireGuard Tunnel

Nice drawing!

Maybe try putting the wireguard interface on the bridge?
by Josephny
Tue Apr 08, 2025 12:16 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

So I spent an hour or so last night exercising my vlan configurating skills (which is the equivalent of 1kg (2.2 lbs for people like me) dumbells). I thought I had it all working and was very excited. The vlan traffic between an RB5009 ether4 and an ax3 (ether1) was flowing beautfully, but I couldn'...
by Josephny
Tue Apr 08, 2025 12:08 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

The example we were using was: [code}add bridge=bridge tagged=bridge,sfp-sfpplus1,ether4,ether5 untagged=ether6,ether7 vlan-ids=32[/code] I think you were referring back to the first post in this thread. In this case vlan32 travels within the router or switch as tagged between all ports associated ...
by Josephny
Mon Apr 07, 2025 11:38 pm
Forum: MikroTik hardware questions
Topic: heX vs hEX Refresh pricing
Replies: 6
Views: 989

Re: heX vs hEX Refresh pricing

I guess performance-wise they should be the same in most scenarios. MikroTik doesn't publish switching performance for these. The main differences are in features. RB750Gr3 has MT7621 switch chip which doesn't support rules. There are two block diagrams, one with disabled switching, one with enable...
by Josephny
Mon Apr 07, 2025 9:29 pm
Forum: MikroTik hardware questions
Topic: heX vs hEX Refresh pricing
Replies: 6
Views: 989

Re: heX vs hEX Refresh pricing

I understand about MSRP, my question was more oriented to the real market picture that I see. And I was curious to know if there is anything special in the original hEX that still keeps the demand alive. I was lucky to snatch a bunch of hAP ac2's for $60 each, those beat hEX in pretty much every as...
by Josephny
Mon Apr 07, 2025 6:19 pm
Forum: Useful user articles
Topic: How to export your Mikrotik config and share it (Step-by-Step guide)
Replies: 14
Views: 1834

Re: How to export your Mikrotik config and share it (Step-by-Step guide)

If you ask me it's any static public IP address you want to replace with some "fake" like 2.2.2.1 or whatever before posting. And, also the serial number at top, since if you use /ip/cloud the serial number is part of the DNS name. While the IP is "public"... having your config ...
by Josephny
Mon Apr 07, 2025 3:37 pm
Forum: Useful user articles
Topic: How to export your Mikrotik config and share it (Step-by-Step guide)
Replies: 14
Views: 1834

Re: How to export your Mikrotik config and share it (Step-by-Step guide)

I apologize , not being fully versed in English, I still don't understand the meaning. My concept I think is clear about the MAC address: Anyone, if not directly connected, can't do anything. Then we can talk about compromised ISPs, compromised internal peripherals, etc., but they are already insid...
by Josephny
Mon Apr 07, 2025 1:29 pm
Forum: Useful user articles
Topic: How to export your Mikrotik config and share it (Step-by-Step guide)
Replies: 14
Views: 1834

Re: How to export your Mikrotik config and share it (Step-by-Step guide)

Even if not exploit it, we are back to the first point: If someone knew my router's WAN port's mac address, and somehow could find it on the Internet, they could simply attack it -- not necessarily 'break in' but certainly bring down the ability of the router to communicate with the Internet. Let's...
by Josephny
Mon Apr 07, 2025 11:52 am
Forum: Useful user articles
Topic: How to export your Mikrotik config and share it (Step-by-Step guide)
Replies: 14
Views: 1834

Re: How to export your Mikrotik config and share it (Step-by-Step guide)

That, and revealing that you are using 192.168.1.0/24 in your LAN is not something that would make a difference if "they" are after you (BTW, if "they" are after you, "they" already got you). And allow me to doubt that leaving MAC addresses unredacted will cause a secu...
by Josephny
Mon Apr 07, 2025 11:17 am
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Re: Split DNS

Well HA does not use DHCP Option codes, must have coders from the dark ages. In any case you could try something like this simple DNS pointing. IOT Subnet on R2 - 192.168.55.0/24 IP of server on R1 - 10.10.10.15 ON R2 /ip dhcp-server network add address=192.168.55.0/24 dns-server=192.168.55.1 domai...
by Josephny
Mon Apr 07, 2025 11:11 am
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Re: Split DNS

And how would DHCP or DNS be used to inform the IoT device the address of the HA server? DHCP servers have an ability to attach some information in the return packet when they answer to the request. That additional information, called "Options", is rarely used explicity by SOHO but it cou...
by Josephny
Mon Apr 07, 2025 1:16 am
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Re: Split DNS

And how would DHCP or DNS be used to inform the IoT device the address of the HA server? I stated it above, DHCP OPTION creation and the use of the name of the OPTION in DHCP server settings for the subnet the IOT devices are in. OR Create a domain name for the SERver and use in in the DHCP Server ...
by Josephny
Mon Apr 07, 2025 12:53 am
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Re: Split DNS

You miss the point entirely,
The two options presented DHCP and DNS are to inform the iot device, what is the IP address of the HA server, not to change the local subnet IP the iot device is using.
And how would DHCP or DNS be used to inform the IoT device the address of the HA server?
by Josephny
Mon Apr 07, 2025 12:41 am
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

Why would a frame tagged with VID=32 ingressing to ether1 be accepted? What?? Well the physical port ether1 is a trunk port carrying multiple vlans to the local device. Why would you not think that vlan32 should be allowed to ingress in ether1?? A. its on the trunk port leaving the upstream device....
by Josephny
Mon Apr 07, 2025 12:31 am
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Re: Split DNS

By the way, Home Assistant devices typically obtain IP addresses from the Home Assistant server through the network's DHCP server, which is usually the router, rather than directly from the Home Assistant server itself. This sounds much like the UNIFI approach where one can use a. create dhcp optio...
by Josephny
Sun Apr 06, 2025 6:13 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

"When ingresss-filtering=YES, port will actually look at VLAN ID of ingressing frame and will drop frames where VID is not one of port's VLANs (as configured under bridge/vlan)." What parameter exactly in the bridge/vlan config is checked to see if a frame can ingress? It will check if in...
by Josephny
Sun Apr 06, 2025 5:51 pm
Forum: Useful user articles
Topic: How to export your Mikrotik config and share it (Step-by-Step guide)
Replies: 14
Views: 1834

Re: How to export your Mikrotik config and share it (Step-by-Step guide)

Doesn't everyone include all of these in their ROS configs:

Date of birth
Eye color
Blood Type
Home address
Financial accounts numbers
Image of passport
Social security number
Favorite movie and flavor of ice cream
Pets names
by Josephny
Sun Apr 06, 2025 5:13 pm
Forum: Useful user articles
Topic: How to export your Mikrotik config and share it (Step-by-Step guide)
Replies: 14
Views: 1834

Re: How to export your Mikrotik config and share it (Step-by-Step guide)

Exporting your config to share in the forum is actually pretty easy. Here's a quick step-by-step guide on how to do it: https://forum.mikrotik.com/viewtopic.php?t=203686#p1051720 I have found that my exports, even without show-sensitive, include a whole bunch of what I would call sensitive info, in...
by Josephny
Sun Apr 06, 2025 4:30 pm
Forum: Beginner Basics
Topic: Remote WinBox access over WireGuard?
Replies: 9
Views: 1027

Re: Remote WinBox access over WireGuard?

If Joseph you are asking a different question, can one see all the routers at one time via winbox, via wireguard, in order to select for configuring, the answer is no. Those protocols dont go over wireguard. Thanks, but I asked that question over a year ago and learned about the Winbox/ip-neighbors...
by Josephny
Sun Apr 06, 2025 3:40 pm
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Re: Split DNS

I assumed as always, that you are short of time and thus want to getter done. If you have time to read novels, that is a different story '=) Wait till you hit the chapters on VRRP VXLAN and BGP. You are indeed prescient. I saw BGP mentioned and I have been resisting exploring. It reminded me that I...
by Josephny
Sun Apr 06, 2025 3:34 pm
Forum: General
Topic: MikroTik RB5009 setting up remotely first time
Replies: 55
Views: 4266

Re: MikroTik RB5009 setting up remotely first time

Bartosz you make me laugh................. this is a non-paid gig, dont complain about playing consultant for free. ;-P Your stamina is commendable. :-) Wait???? Really??? This is non-paid???? Then how come I keep sending Venmo funds to bartosz@yousucker.com every time he gets aggravated with me?
by Josephny
Sun Apr 06, 2025 3:32 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

RIGHT, you proved me right again thank Bartosz........ A config is based on a set of established requirements, not vapour future wishes. If the op wants efficiency, the shortest path to get his 10 routers up and running as they are now, DNS is stewpid. If the op wants to tinker with DNS, which is m...
by Josephny
Sun Apr 06, 2025 3:25 pm
Forum: Beginner Basics
Topic: Remote WinBox access over WireGuard?
Replies: 9
Views: 1027

Re: Remote WinBox access over WireGuard?

I'm far from an actual guru here, but I will save the real gurus the time and ask you to please post your anonymized config: /export file=config Remove serial number, wireguard keys, dynamic dns entries, public IPs, passwords, etc. That's probably a couple of hours of work, at least, but I'll start...
by Josephny
Sun Apr 06, 2025 3:21 pm
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Re: Split DNS

It may or may not be applicable for what you are trying to do. My question is why do you need split DNS for the IOT subnet? Do you have different IOT devices on the same subnet? Are there are other ways to target those specific IOT devices...... My post was not at all limited to any particular proj...
by Josephny
Sun Apr 06, 2025 3:13 pm
Forum: General
Topic: DHCP IP Assignments
Replies: 1
Views: 502

DHCP IP Assignments

This might qualify as the least important post ever. I have the following DHCP config: /ip pool add comment=offbridge-dhcp-server name=offbridge-dhcp-server ranges=192.168.55.2-192.168.55.200 add name=guest-pool ranges=10.72.2.2-10.72.2.254 add name=iot-pool ranges=10.72.12.2-10.72.12.254 add name=c...
by Josephny
Sun Apr 06, 2025 2:45 pm
Forum: General
Topic: Split DNS
Replies: 18
Views: 1508

Split DNS

Just wanted to give a gentle shout-out to BartoszP for enlightening me about split-dns here: https://forum.mikrotik.com/viewtopic.php?p=1136419#p1136419 I've been playing with split-DNS and it's totally cool. I (effectively, randomly) chose a location with a router (call it location-1) to act as a &...
by Josephny
Sun Apr 06, 2025 2:07 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

Also, you wrote above: "When ingresss-filtering=YES, port will actually look at VLAN ID of ingressing frame and will drop frames where VID is not one of port's VLANs (as configured under bridge/vlan)." What parameter exactly in the bridge/vlan config is checked to see if a frame can ingres...
by Josephny
Sun Apr 06, 2025 1:59 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

Yes. Just add the ingress-filtering=yes and you're golden. That's really great -- and very much appreciated. You wrote above that ingress-filtering is NO by default. I just added a port to a bridge, both by CLI and by Winbox, and in both cases ingress-filtering=yes was the default. What am I missing?
by Josephny
Sun Apr 06, 2025 1:48 pm
Forum: Beginner Basics
Topic: Remote WinBox access over WireGuard?
Replies: 9
Views: 1027

Re: Remote WinBox access over WireGuard?

Okay. True confessions time. I've been trying to set up a multi-site WireGuard network for some months now. I've made progress. The links are up and working. I can ping the various site routers from each other. I can ping devices on the LANs from the routers. But I can't seem to pass data between t...
by Josephny
Sat Apr 05, 2025 5:08 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

That is a clear and useful explanation, spanning both the theoretical and practical aspects of vlan config. Thank you. This is an access port (i.e., physical connections to non-vlan-aware devices): /interface bridge port add bridge=bridge frame-types=admit-only-untagged-and-priority-tagged interface...
by Josephny
Sat Apr 05, 2025 3:18 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Re: Basic VLAN config question (again)

Is my understanding correct? Yes. Of course you need corresponding config for ether1 under bridge/port and appropriate config of bridge port (but that's not subject of this topic, right?) Thank you. Corresponding config for ether1? Something specifically related to vlans? That is, something more th...
by Josephny
Sat Apr 05, 2025 2:32 pm
Forum: General
Topic: Basic VLAN config question (again)
Replies: 31
Views: 2400

Basic VLAN config question (again)

I'm a little confused (still). I'm trying to keep it simple and practicle (so please try to accomodate this need). A) "/interface bridge port" defines vlan frame ingress behavior. Specifically in the example below, any frames arriving on port "wifi1" will have vlan-id=32 tags add...
by Josephny
Wed Apr 02, 2025 10:32 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Okay, I think we are making progress. First, let's leave out the variable of going to each IoT device. This is something that I will need to do regardless of which solution is implemeneted. The question is whether to add a domain name or an ip address in the MQTT configuration of the IoT device. Opt...
by Josephny
Wed Apr 02, 2025 9:37 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

The question is about DNS configuration, not how to configure and pass the traffic from branches to main place using VPNs. You miss the point, the OP does not intend on reaching the home assistant server over the WWW, he wants all traffic to go over wireguard tunnels between the routers. Traffic wi...
by Josephny
Wed Apr 02, 2025 8:28 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

What you have in your DNS records and whether you do or don't do nat has no bearing on your firewall and access control capabilities. Maybe I'm misunderstanding, but I assumed that by NAT you meant opening a port that forwards frames arriving on the public IP address port of the router (the WAN por...
by Josephny
Wed Apr 02, 2025 8:08 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Just thought I'd chime in to add to the confusion. Generally, private (RFC1918, etc.) addresses are permitted in public DNS records, in fact this is not uncommon. The rise in popularity of this is in fact rising because it's not exactly easy to do split DNS nowadays with hard-coded DNS servers on d...
by Josephny
Wed Apr 02, 2025 7:47 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Hi Bartosz, Trying to understand your advice and with Larsa endorsement, of course! I too like Joseph, being not IT professional need some conceptual guidance. What I think your saying, in techno speak, is in static DNS we attach or identify an IP address with an URL or domain name that we have giv...
by Josephny
Wed Apr 02, 2025 7:40 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

That device asks its DNS server (192.168.0.1) and that DNS server tells the device to go and ask the DNS server at a completely different location (for example, 192.168.2.1). The DNS server (192.168.0.1) doesn't tell the device to go ask the other server. The DNS server performs the lookup itself ,...
by Josephny
Wed Apr 02, 2025 7:24 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Just set the name of MQTT broker in all devices to dns name eg. broker.local.mqtt and in all routers (assuming Mikrotik everywhere) set static dns entry forwarding all dns queries to your local dns server /ip dns static add forward-to=IP_OF_YOUR_LOCALLY MANAGED_CENTRAL_DNS regexp=".*local\\.mq...
by Josephny
Wed Apr 02, 2025 5:43 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Josephny ... to be honest ... please do not waste our time. My time at least. (A) (B) (C) are the three possible solutions or steps you have take. You do not understand or you do not want understand your own needs? How to describe it better. You manage your own DNS server or use existing one. What ...
by Josephny
Wed Apr 02, 2025 5:36 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

@Josephny, please listen to BartoszP's advice — they're legit. My recommendation: don’t use an external DNS server for your local needs and private addresses (for a bunch of different reasons)
What is that advice I should listen to?

Why not use the authoritative DNS server?
by Josephny
Wed Apr 02, 2025 5:36 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

@anav: I see no savings at all :) Concur, in fact its actually more work to create DNS servers at each location and then modify each IOT device to look for a specific URL. Once done, any change to IP address of the home assistant server would require changes to every local DNS server to match, vice...
by Josephny
Wed Apr 02, 2025 5:34 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Huston .... there is a problem. Please read advices that are presented to you twice. At least. A. Find a DNS hosting that allows you to define "A" record as you wish with 10.100.0.1 address. Job done. No need to ask us for any help. Case closed. B. You have to set up and manage the only o...
by Josephny
Wed Apr 02, 2025 3:29 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

OMG ...Josephny please focus :) One central DNS is the one you have enabled in your mikrotik (or any other dns/device that serves that function) that is not public. Local means "local" ... at your home/main office it is probably the same as "central" ... at remote places it is t...
by Josephny
Wed Apr 02, 2025 3:14 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Then you manage only the one central dns and set all anyservername.local.mqtt names and it serves all other locations. You just pick out particular domain from others queries and pass to your own DNS. Any dns you want. I'm following except for this: The "one central dns" is the Authoritat...
by Josephny
Wed Apr 02, 2025 2:29 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

Just set the name of MQTT broker in all devices to dns name eg. broker.local.mqtt and in all routers (assuming Mikrotik everywhere) set static dns entry forwarding all dns queries to you local dns server /ip dns static add forward-to=IP_OF_YOUR_LOCALLY MANAGED_DNS_IN_MIKROTIK regexp=".*local\\...
by Josephny
Wed Apr 02, 2025 2:26 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

So are you stating that you wish all the traffic from the locations will go out the WWW to reach the home assistant server at location Y? No, not at all. IoT traffic from these Tasmota devices will still use the wireguard tunnel between all locations. The server's address will still be in the 10.35...
by Josephny
Wed Apr 02, 2025 1:35 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Re: Public DNS to private IP

No need for public A records if you run your own internal DNS server with a split DNS setup. You can map a domain like mqtt-ha.mydomain.local (or whatever) to 10.100.0.1 and have all your IoT devices point to that DNS server. It’s best practice in setups like this and is simple, reliable and fully ...
by Josephny
Wed Apr 02, 2025 12:44 pm
Forum: General
Topic: Public DNS to private IP
Replies: 44
Views: 3096

Public DNS to private IP

DNS question: I have 10 locations each with a number of IoT devices that talk to a Home Assistant server running its own MQTT broker. Each location has its own private IP subnets (10.1.0.0/24, 10.2.0.0/24, etc.). The server is at 10.100.0.1 The IoT devices need to be configured with the IP address o...
by Josephny
Mon Mar 31, 2025 10:22 am
Forum: General
Topic: AP Connect to Config Tasmota?
Replies: 8
Views: 1181

Re: AP Connect to Config Tasmota?

Eureka! I slept on it and woke up thinking I needed to break down the troubleshooting better by following the frames. Having seen the packets arrive at the ax3 looking like this: 10.10.100.1->192.168.4.1 With no response from 192.168.4.1, I discovered that the final drop-all FORWARD rule was catchin...
by Josephny
Mon Mar 31, 2025 1:49 am
Forum: General
Topic: AP Connect to Config Tasmota?
Replies: 8
Views: 1181

Re: AP Connect to Config Tasmota?

TO be clear, the only way I was able to get this far is by setting up a second bridge ("bridge-new") and putting the "wifi-tasmota" interface as a member port of that new bridge. I can packet sniff on the ax3 while running a ping on the rb5009 and see icmp frames arrive at the ax...
by Josephny
Sun Mar 30, 2025 10:00 pm
Forum: General
Topic: AP Connect to Config Tasmota?
Replies: 8
Views: 1181

Re: AP Connect to Config Tasmota?

Still can't get it to work. I assigned 192.168.4.100 to the hAPax3. I can successfully ping from the ax3 to the tasmota device at 192.168.4.1 I can also successfully ping from my local RB5009 (connected via Wireguard to the ax3 which is 10.10.100.80) to 192.168.4.100. But I cannot ping from the RB50...
by Josephny
Sun Mar 30, 2025 3:46 pm
Forum: General
Topic: AP Connect to Config Tasmota?
Replies: 8
Views: 1181

Re: AP Connect to Config Tasmota?

Progress:

I set up a slave wifi interface just for this -- wifi-tasmota.

Set the master to 2412g

added 192.168.4.100/24 as the router's ip address for the wifi-tasmota interface.

Added the masq rule.

I am able to ping 192.168.4.1 from the router.
by Josephny
Sun Mar 30, 2025 2:31 pm
Forum: General
Topic: AP Connect to Config Tasmota?
Replies: 8
Views: 1181

Re: AP Connect to Config Tasmota?

Clicking CONNECT changes the mode (to STATION) and the SSID (to that of the Tasmota device). But I do not see an indication that it is "running." It has a state of "scanning." I tried changing the frequecy to 2412 and the mode to g to match the Tasmota device. Screenshot 2025-03-...
by Josephny
Sun Mar 30, 2025 1:30 pm
Forum: General
Topic: What's using the memory?
Replies: 10
Views: 1499

Re: What's using the memory?

Isn't it possible that different hardware implies different resource usage? Like cars where different models result in different fuel consumption even if their bodies are the same. Not just possible, but likely. wAPax: IPQ-5010, ARM, dual core hAPax3: IPQ-6010, ARM64, quad core I'm no electrical en...
by Josephny
Sun Mar 30, 2025 12:40 pm
Forum: General
Topic: AP Connect to Config Tasmota?
Replies: 8
Views: 1181

Re: AP Connect to Config Tasmota?

I would temporarily connect one of the wifi interfaces to the given dimmer as a station, assign it an IP via DHCP or static (depending on the setup), and masquerade it I am unable to successfully execute the first step. When I click the CONNECT button, the small dialog box appears for 1/2 second (a...
by Josephny
Sun Mar 30, 2025 12:32 pm
Forum: General
Topic: What's using the memory?
Replies: 10
Views: 1499

Re: What's using the memory?

wap ax has only 256mb RAM. So the wap ax has already less physical memory as your observed memory usage on ax3. That's interesting, and piques my curiousity even more. And begs the question: If a wAPax cam run ROS 7.x in 256MB and still have plenty remaining but the ax3, even with my stripped-down ...
by Josephny
Sun Mar 30, 2025 12:26 pm
Forum: General
Topic: What's using the memory?
Replies: 10
Views: 1499

Re: What's using the memory?

So... You gained 4MB. Why is that bothering you ? ax3 have plenty of memory
I'm bothered by a lot of things, just about daily, but not this.

It was nothing more than curiousity, of which I have an overhwelming abundance.
by Josephny
Sun Mar 30, 2025 4:11 am
Forum: General
Topic: AP Connect to Config Tasmota?
Replies: 8
Views: 1181

AP Connect to Config Tasmota?

Here's a riddle for a boring Saturday night: I have a remote location that I am Wireguard-connected to. I am Winbox'd into it at 10.10.100.80 At that location there are 4 wifi wall dimmers, all with Tasmota installed, and all not configured. If I was physically at the location, I would connect a lap...
by Josephny
Sun Mar 30, 2025 12:16 am
Forum: General
Topic: What's using the memory?
Replies: 10
Views: 1499

Re: What's using the memory?

I have an ax3 Total memory 1024 MiB Avail Free memory: 651.2 MiB Meaning used memory is 373. I do not use any logging or at least minimize it if all possible. Do not expect the ax3 to be any zippier, unless your holvoe, the rest of us mere mortals get around what you are getting. I removed the FW r...
by Josephny
Sat Mar 29, 2025 9:37 pm
Forum: General
Topic: What's using the memory?
Replies: 10
Views: 1499

What's using the memory?

I have a hAPax3 acting solely as an AP (connected to an RB5009). Everything is working well -- no complaints. The wifi connection to the computer I'm posting this from (Beelink mini PC) is connected using 802.11ax at rx/tx of 576/681 Mbps. Nonetheless, I'm wondering if I can get a slightly zippier e...
by Josephny
Wed Mar 26, 2025 9:57 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

Any reason to choose 1 over the other? If nothing else helps, ask your personal numerologist :lol: List of features of used switch chips is more or less the same, so it really is the dilemma between 8 extra ports and 8 PoE++ ports. My local numerologist said she ran the numbers and I should buy a C...
by Josephny
Wed Mar 26, 2025 6:51 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

I'm trying to figure out if the 328 or the 320 would be a better solution for my needs.

I don't need the extra ports (24 vs 16, plus 4 SFP+ on each) of the 328.

But, I also don't need the POE++ of the 8 ports on the 320.

And the price is close.

Any reason to choose 1 over the other?
by Josephny
Wed Mar 26, 2025 5:13 pm
Forum: General
Topic: Unable to send email via smtp.gmail.com
Replies: 16
Views: 3127

Re: Unable to send email via smtp.gmail.com

Hard to say exactly what’s going wrong, but an easy way to troubleshoot is to run "/system telnet" from a router that's having issues. This guide shows how to Testing SMTP using Telnet . It’ll let you see where the SMTP process is failing and should give you a proper error message in plai...
by Josephny
Wed Mar 26, 2025 5:09 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

You can read specifications as well as anyone else, depends on your requirements etc. For me since I love, setting up vlans on mikrotik products via RoS, its the one I would go with. If you want a plugNplay setup, then I would go with the zyxel ( but only because of that killer sale price ) Reading...
by Josephny
Wed Mar 26, 2025 5:02 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

Leaving price aside, how does the 328 compare with the Zyxel XGS1930-28HP with respect to features and reliability?
by Josephny
Wed Mar 26, 2025 4:01 pm
Forum: General
Topic: Unable to send email via smtp.gmail.com
Replies: 16
Views: 3127

Re: Unable to send email via smtp.gmail.com

If you're sending on behalf of "<user>@<myowndomain>.com" from a new IP address that isn’t part of Google Workspace’s infrastructure, you’ll need to manually add that IP address to your domain’s SPF record. Otherwise, Google (and other receivers) may reject or flag the message as unauthor...
by Josephny
Wed Mar 26, 2025 3:25 pm
Forum: General
Topic: Unable to send email via smtp.gmail.com
Replies: 16
Views: 3127

Re: Unable to send email via smtp.gmail.com

Just a quick follow-up to clarify: A Google app password usually works fine out of the box for regular Gmail addresses (like xxxxx@gmail.com). But if you're sending from a custom domain (like xxxx@yyyyy.com), it won’t work unless a proper SPF record is set up for that domain. I use a "Google W...
by Josephny
Wed Mar 26, 2025 2:43 pm
Forum: General
Topic: router->switch and VLAN routing
Replies: 4
Views: 1219

Re: router->switch and VLAN routing

But, if the (wireless or wired) smartTVs are on VLAN10, and wifi users are on VLAN20, then am I right that for those users to use an app on their smartphones then (1) inter-vlan routing is necessary, and (2) this inter-vlan routing must take place on the RB5009? Same question for printers. Routers ...
by Josephny
Wed Mar 26, 2025 2:13 pm
Forum: General
Topic: Unable to send email via smtp.gmail.com
Replies: 16
Views: 3127

Re: Unable to send email via smtp.gmail.com

Seems like Google is slowly implementing the "app password" requirement.

I use my regular gmail password in most places.

I just set up an app password and use it now on those devices that require it.
by Josephny
Wed Mar 26, 2025 7:50 am
Forum: General
Topic: Unable to send email via smtp.gmail.com
Replies: 16
Views: 3127

Re: Unable to send email via smtp.gmail.com

So smtp.gmail.com works on some devices and does not work on others (in different locations).

What do others use for smtp server?
by Josephny
Wed Mar 26, 2025 1:46 am
Forum: General
Topic: VLANs (not) understood
Replies: 11
Views: 1577

Re: VLANs (not) understood

I'm sorry, but I just cannot decipher this.
by Josephny
Wed Mar 26, 2025 12:56 am
Forum: General
Topic: Unable to send email via smtp.gmail.com
Replies: 16
Views: 3127

Unable to send email via smtp.gmail.com

I've this working on many devices for years now and all of a sudden I get the error: Error sending e-mail <355hEX UP to 192.168.0.11>: AUTH failed Config is: /tool e-mail set from=xxxx@yyy.com port=465 server=smtp.gmail.com tls=yes user=xxxx@yyyyy.com I've searched previous posts and see there are v...
by Josephny
Wed Mar 26, 2025 12:13 am
Forum: General
Topic: VLANs (not) understood
Replies: 11
Views: 1577

Re: VLANs (not) understood

Yes. And that's the reason why if you add a VLAN interface to /interface vlan with interface=bridge then "bridge" needs to be in the tagged list of that VLAN ID. Since a few versions RouterOS dynamically adds that to the /interface bridge vlan table for you if you did not do it explicitly...
by Josephny
Tue Mar 25, 2025 11:25 pm
Forum: General
Topic: VLANs (not) understood
Replies: 11
Views: 1577

Re: VLANs (not) understood

Yes, and those frames that come to the CPU port (bridge) tagged, you "use" them by adding corresponding interfaces under /interface vlan with interface=bridge . Those interfaces pick the frames with the corresponding VLAN ID tagged (from the CPU port) and strip the tags so that they can b...
by Josephny
Tue Mar 25, 2025 10:45 pm
Forum: General
Topic: VLANs (not) understood
Replies: 11
Views: 1577

Re: VLANs (not) understood

For example: "/interface bridge vlan add bridge=bridge tagged=ether1 untagged=bridge vlan-id=10" means that bridge will allow frames with vlan-id=10 to leave the router through ether1 with its vlan tag intact. And, will allow vlan-id=1- frames to egress the router on the bridge port after...
by Josephny
Tue Mar 25, 2025 10:35 pm
Forum: General
Topic: VLANs (not) understood
Replies: 11
Views: 1577

Re: VLANs (not) understood

1) ADD BRIDGE: "/interface/bridge add" creates a bridge with one or two roles (sometimes the word used is "personality"): (1) Switch-like and/or (2) bridge-between-CPU-and-switch (understood as #2 role when property includes "interface," "tagged," or "un...
by Josephny
Tue Mar 25, 2025 7:09 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

Very well. So we already settled on the RB5009 for routing. Your intranet: will You need/want more than 1Gbps over the next 5 years? Are You willing to pay the price today, in order to future proof the switch? Do You need PoE on the switch? I don't feel the need to buy technology now that is future...
by Josephny
Tue Mar 25, 2025 6:55 pm
Forum: General
Topic: VLANs (not) understood
Replies: 11
Views: 1577

VLANs (not) understood

Yes, yes, I've read everyone's threads, comments, tutorials, videos, explanations, etc. No, really, I have. For example, this thread is great: https://forum.mikrotik.com/viewtopic.php?t=193939 But, you all might not like it, and I'm not claiming to be an subject matter expert on VLANS (for sure), bu...
by Josephny
Tue Mar 25, 2025 4:40 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

1) I wish I could get 2.5Gbps! I don't see faster than 1Gbps for years to come. 2) No CSS. 3) I'm not sure how to determine if my intranet will be faster than 1Gbps. I doubt it, but here are the details: About 12 video cameras feeding a local Blue Iris server. Often several wifi connections used (s...
by Josephny
Tue Mar 25, 2025 1:24 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

Yes, there are countless options, and it can be very confusing. In order to sort it out, think about it logically: 1) Yes, one RB5009 would be a good fit as a router. First problem solved (we still need to determine if we would get the "normal" version of it or the PoE one). 2) Do You see...
by Josephny
Tue Mar 25, 2025 12:06 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

"Why" is an excellent question for which I have a mediocre answer -- several reasons: 1) I have been focusing for a while now on learning ROS and know it better than Unifi (which isn't saying much); 2) This site is connected to many other sites and it would be nice to have uniformity of e...
by Josephny
Tue Mar 25, 2025 11:59 am
Forum: General
Topic: router->switch and VLAN routing
Replies: 4
Views: 1219

Re: router->switch and VLAN routing

Since you evidently have Unifi APs, and those are vlan-aware, you could configure an SSID on vlan 10 and another on vlan 20, and connect the to 10 when you want your phone to be a Roku remote control. I don't think your main problem would be traffic; mdns would be the bigger issue. You would need t...
by Josephny
Tue Mar 25, 2025 12:55 am
Forum: General
Topic: router->switch and VLAN routing
Replies: 4
Views: 1219

router->switch and VLAN routing

Could someone please explain how the routing between vlans would work with in the following configuration: RB5009 with VLAN10 and VLAN20 CSS326 wired into RB5009's ether2. CSS port 1 is trunk port to RB5009 (that is, port 1 carries VLAN10 and VLAN20) CSS Ports 2-8 are access ports for VLAN10 CSS por...
by Josephny
Mon Mar 24, 2025 9:05 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

The more I look the more confused I get. Lots of variations within each model line.

Number of SFP+ ports, passive vs. fan cooling, external vs. internal PS, POE+/POE++ out, POE in, etc. each have pro and con arguments.
by Josephny
Mon Mar 24, 2025 5:45 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Re: Which switch?

I'm seriously considering changing the UDM and USW to MT devices I'm curious why you want to switch them out. PoE wise, there's sadly nothing faster than 1G. But there's CRS328-24P-4S+RM CRS320-8P-8B-4S+RM and if 8 Ports is enough, you can even get a RB5009UPr+S+IN "Why" is an excellent q...
by Josephny
Mon Mar 24, 2025 5:15 pm
Forum: General
Topic: Which switch?
Replies: 20
Views: 2183

Which switch?

I have a site running a Ubiquiti UDMPro, USW 16 port switch, 8 APs, several servers, a hEX (just for Wireguard and DHCP), a Cube-Cube-wAP, and a few other things. I'm seriously considering changing the UDM and USW to MT devices. I would keep the Unifi APs. I think the RB5009 would be a good choice f...
by Josephny
Mon Mar 24, 2025 12:16 pm
Forum: MikroTik hardware questions
Topic: WAP AC vs. AX beam width
Replies: 8
Views: 1635

Re: WAP AC vs. AX beam width

Oh!!!!! The heat sink!

I thought the OP was mounting the AP on a large flat metal plate, such as a building wall made out of metal or a large metal sign or something like that.

Nevermind….
by Josephny
Mon Mar 24, 2025 1:36 am
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

It is indeed, does it make the description misleading in any way? I'm not sure what description you are referring to but nothing you wrote in this thread is at all misleading. You are wonderfully precise and detailed. My only comment would be that your responses are so complete and accurate that th...
by Josephny
Mon Mar 24, 2025 12:51 am
Forum: MikroTik hardware questions
Topic: WAP AC vs. AX beam width
Replies: 8
Views: 1635

Re: WAP AC vs. AX beam width

Usually when you wall mount an AP the idea is to "spread" the Wi-Fi away from the wall. I still use Wap AC when needing 360° but thats extremely rare. That is true, but if you choose pole mount, then you need two of them now. And my usage case probably won't work since it has quite big me...
by Josephny
Mon Mar 24, 2025 12:37 am
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

So the only situation where you have to add the row manually is when you want to allow that VLAN to pass tagged through some other ports of the bridge.
Isn't this case (requiring the VLAN to pass tagged through ports other than the bridge) a common situation?
by Josephny
Mon Mar 24, 2025 12:09 am
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

Okay, just tested. Added: /interface vlan add interface=bridge name=vlan1 vlan-id=999 And (as you indicated), the entry in /interface/bridge/vlan shows vlan 999 as tagged on bridge: [admin@371NetMetal] /interface/bridge/vlan> print Flags: D - DYNAMIC Columns: BRIDGE, VLAN-IDS, CURRENT-TAGGED, CURREN...
by Josephny
Sun Mar 23, 2025 3:13 pm
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

Will read what you wrote 100 more times and attempt to learn.

Thanks (as always)!
by Josephny
Sun Mar 23, 2025 2:50 pm
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

Is this correct? Either yes or no, why? Does the answer to this lie with the question of whether vlan2 frames need to be processed by the CPU, which is accomplished by tagging bridge? But, because the AP is not acting as a router, the CPU is not necessary? Each VLAN only needs to pass through the b...
by Josephny
Sun Mar 23, 2025 12:47 pm
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

First off all you are doing it wrong, in HEX there's a different way to configure VLAN what you are doing is for CRS3XX Try this https://www.youtube.com/watch?v=Rj9aPoyZOPo I got about 10 minutes into it and could not follow along, I believe because of the differences between the ROS version he's u...
by Josephny
Sun Mar 23, 2025 12:27 pm
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

So only VLAN that is used as management VLAN should be tagged for bridge and in interface/vlan you should create mgmt vlan interface. Other vlans should be tagged only for trunk port, in your case ether1, and untagged for desired wireless interfaces. Thank you for the confirmation. Why should only ...
by Josephny
Sun Mar 23, 2025 12:25 pm
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

Re: VLAN question about tagging bridge or ether1

What VLAN1 ?? Don't mention VLAN1 here or we will strip your forum rank... :lol: :lol: So only VLAN that is used as management VLAN should be tagged for bridge and in interface/vlan you should create mgmt vlan interface. Other vlans should be tagged only for trunk port, in your case ether1, and unt...
by Josephny
Sun Mar 23, 2025 12:05 pm
Forum: General
Topic: VLAN question about tagging bridge or ether1
Replies: 16
Views: 1683

VLAN question about tagging bridge or ether1

I apologize this question. I know it's been gone over many times. But, my confusion persists. If I have a simple vlan setup such as a hEX (i.e., with WAN on ether1) and an AP (e.g., Netmetal). The hEX has vlan32 for management and connectivity to the AP; and vlan2 for wifi-guest (coming in from AP)....
by Josephny
Sat Mar 22, 2025 6:21 pm
Forum: General
Topic: IP Neighbors and VLANS
Replies: 9
Views: 1607

Re: IP Neighbors and VLANS

how and/or why ether1 and bridge share the same mac address on the cAP whereas they have different MAC addresses on the NetMetal? That has nothing to do with discovery protocols but with how the bridge is implemented. Unless you specify a MAC address for a bridge manually, it inherits the MAC addre...
by Josephny
Sat Mar 22, 2025 6:02 pm
Forum: General
Topic: IP Neighbors and VLANS
Replies: 9
Views: 1607

Re: IP Neighbors and VLANS

Agree. But this one is tricky. And the operation is NOT documented well (actually have on open issue that the neighbor docs should be improved). The key is that "neighbors" can one of three types (MNDP, CDP, LLDP) & that's one way you can end up with multiple entries. Specially MNDP i...
by Josephny
Sat Mar 22, 2025 5:57 pm
Forum: General
Topic: IP Neighbors and VLANS
Replies: 9
Views: 1607

Re: IP Neighbors and VLANS

I'd like to understand why there are 2 instances displayed in IP NEIGHBORS on the hEX. Because the neigbor advertisement protocols (any combination of MNDP, LLDP, and CDP depending on the settings) are being sent from all interfaces that are members of the interface list configured in the discover-...
by Josephny
Sat Mar 22, 2025 5:26 pm
Forum: General
Topic: IP Neighbors and VLANS
Replies: 9
Views: 1607

Re: IP Neighbors and VLANS

Little more info: On the cAP, ether1 and bridge have the same MAC address. On the NetMetal, ether1 and bridge have different MAC addresses. On both devices, both ether1 and bridge are tagged for vlan32. I think this explains the different MAC addresses, but I'd like to understand why there are 2 ins...
by Josephny
Sat Mar 22, 2025 4:56 pm
Forum: General
Topic: IP Neighbors and VLANS
Replies: 9
Views: 1607

IP Neighbors and VLANS

I am hoping someone could explain (i.e., help me understand) what is going on here. These devices are set up now in a lab environment (i.e., for testing and learning), but I hope to deploy soon. hEX Refresh with ether1 (WAN) connected to this location's LAN so it can get Internet access. ether2 is c...
by Josephny
Sat Mar 22, 2025 3:16 pm
Forum: General
Topic: How I Spent My Upgrade Time
Replies: 8
Views: 1597

Re: How I Spent My Upgrade Time

You chose manual upgrade: https://help.mikrotik.com/docs/spaces/ROS/pages/328142/Upgrading+and+installation#Upgradingandinstallation-Manualupgrade The easy way is the standard upgrade. For everything else it is always advisable to read the documentation. ROS is infamous for the non-obvious. As I ju...
by Josephny
Sat Mar 22, 2025 12:55 pm
Forum: General
Topic: How I Spent My Upgrade Time
Replies: 8
Views: 1597

Re: How I Spent My Upgrade Time

yes, indeed! A single button that checks for updates and lets you choose which version you wish you upgrade to would be super fab! Imagine that it already exists! With a gotcha: it doesn't read your mind about wanted ROS version, it goes ahead and installs newest version in selected channel (e.g. s...
by Josephny
Sat Mar 22, 2025 12:34 pm
Forum: General
Topic: How I Spent My Upgrade Time
Replies: 8
Views: 1597

Re: How I Spent My Upgrade Time

I am not 100% sure, but log/print should tell you the reason why it did not upgrade successfully because of missing packages.
Hmm...

After the required reboot, and failure to upgrade? I did not see anything.
by Josephny
Sat Mar 22, 2025 12:33 pm
Forum: General
Topic: How I Spent My Upgrade Time
Replies: 8
Views: 1597

Re: How I Spent My Upgrade Time

Imagine having a single button called “Check for updates” that would do all that for you. Crazy, huh?
yes, indeed!

A single button that checks for updates and lets you choose which version you wish you upgrade to would be super fab!
by Josephny
Sat Mar 22, 2025 11:21 am
Forum: General
Topic: How I Spent My Upgrade Time
Replies: 8
Views: 1597

How I Spent My Upgrade Time

(Title is a joke based on a popular young student assignment at the beginning of the school year: Teacher asks the students to write an essay entitled "How I Spent My Summer" -- guess you had to be there.) So I've got an RB5009 chugging along (i.e., doing just fine) and running 7.16.1 Not ...
by Josephny
Fri Mar 21, 2025 1:07 pm
Forum: General
Topic: Adlist memory leak?
Replies: 3
Views: 1270

Re: Adlist memory leak?

There is definetly a malfunction. Another day goes by and the errors reappear: [admin@212RB5009] /ip/dns> print servers: 9.9.9.9,1.1.1.1,8.8.8.8 dynamic-servers: use-doh-server: verify-doh-cert: no doh-max-server-connections: 5 doh-max-concurrent-queries: 50 doh-timeout: 5s allow-remote-requests: ye...
by Josephny
Thu Mar 20, 2025 11:02 pm
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

You put the grommet on the antenna and you fold It upside down (or in/out). You put a thin layer of vaseline grease on the exterior (thread) of the connector. You screw in the antenna over the connector. You apply normally the self-sealing tape around the connection, wrapping It from the base upwar...
by Josephny
Thu Mar 20, 2025 10:12 pm
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

Yes, self-sealing tape, designed specifically for weatherproofing and often used for RF connectors. That is exactly correct. I am still hoping that someone from Mikrotik will chime in here and state that none of that is necessary and that the Netmetal is indeed designed to be weatherproof with the H...
by Josephny
Thu Mar 20, 2025 7:36 pm
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

Well, just in case: https://i.imgflip.com/68y3a1.jpg If you still insist on doing that, you should IMHO: 1) use some good auto-bonding tape around the connectors 2) put a thin layer of vaseline grease (yes really) on the tape 3) cover the whole stuff with a grommet/gasket like these: https://barbie...
by Josephny
Thu Mar 20, 2025 2:46 pm
Forum: General
Topic: Weekly VLAN confusion post
Replies: 18
Views: 2300

Re: Weekly VLAN confusion post

Is anyone else's mind blown with the surrealism and irony going on with this thread? I started it to (1) vent and (2) beg for help due to the massive cognitive-pain being caused by VLANs. Now, this thread has evolved to a discussion/argument about minutae I did not know existed. Part of me loves it ...
by Josephny
Thu Mar 20, 2025 1:51 pm
Forum: General
Topic: Repeated disconnects on WAN (ether1)
Replies: 10
Views: 1925

Re: Repeated disconnects on WAN (ether1)

Nope: Replacing the cable and removing the nearby Spectrum router/AP did not solve the problem. Ran a ping for a while and have 18% packet loss. Other than the hEX hardware failing, anything else it could be? I recently upgraded to 7.17.2. CPU holds steady at ~5%. Memory used at less than 70MB (out ...
by Josephny
Thu Mar 20, 2025 1:37 pm
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

Yes, water is the enemy of electronics and electrical connections. But plenty of other manufacturers do a good job of it (Ubiquiti's outdoor APs hold up quite well) with SMA connectors with screw-on antennas on top. Mikrotik's advertising does not make it clear that the Netmetal should not be used o...
by Josephny
Thu Mar 20, 2025 1:25 pm
Forum: General
Topic: Adlist memory leak?
Replies: 3
Views: 1270

Re: Adlist memory leak?

Since posting (10 minutes ago), I increased the cache size to 60MB. I removed the static entries (about 20) that I have: [admin@212RB5009] /ip/dns> export # 2025-03-20 07:23:24 by RouterOS 7.16.1 # software id = 2KBD-7ZZB # # model = RB5009UPr+S+ # serial number = HDA08xxxx /ip dns set allow-remote-...
by Josephny
Thu Mar 20, 2025 12:57 pm
Forum: General
Topic: Adlist memory leak?
Replies: 3
Views: 1270

Adlist memory leak?

I tried using adlist on an RB5009, with the following list that contains a name count of 230248: https://raw.githubusercontent.com/hagezi/dns-blocklists/main/hosts/pro.txt At first, I had the DNS cache size at 4000. Almost immediately, the "cache used" hit that 4000 limit and errors appear...
by Josephny
Thu Mar 20, 2025 12:46 pm
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

That case is solid thick metal. Any internal antennas would simply not work due to this.
That makes sense.

But is the Netmetal okay using HGO antennas screwed to the SMA connectors at the top with the device located outdoors?
by Josephny
Thu Mar 20, 2025 11:57 am
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

I have seen that pic with the short coax cables. Unfortunately, that set up will not work for me. My decision to buy this was based more on slicks like this: https://cdn.mikrotik.com/web-assets/product_files/NetMetalax_240504.pdf No mention of the shown configuration compromising the protection from...
by Josephny
Thu Mar 20, 2025 3:21 am
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

Looking at the pictures, it should work. Not sure if you can also expect IP66. Also not sure if the HGO-Antenna-OUT (MTs go to small omni antennas for this usecase) has a seal. I guess it also works without but I'd feel better with one :D I just today had a Netmetal ax and HGO antennas delivered. I...
by Josephny
Thu Mar 20, 2025 2:43 am
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Re: Netmetal ax antenna

No internal antennas. You can use antennas with wires as there is a hole in the case for that. Not sure how much the IP-Rating drops without the top case part. As you can buy RP-SMA Antennas with seals (See UAP-AC-M for example. But that one doesnt have an IP Rating at all) So can I run it with ant...
by Josephny
Thu Mar 20, 2025 2:24 am
Forum: General
Topic: Netmetal ax antenna
Replies: 19
Views: 2271

Netmetal ax antenna

I know the Netmetal ax has 2 RP-SMA connectors on the top for attaching external antennas.

Does it have internal antennas if I don't want to connect external ones?

Otherwise, the top of the Netmetal is exposed.