Community discussions

MikroTik App

Search found 13 matches

by carlhjerpe
Tue Jun 25, 2019 6:47 pm
Forum: Forwarding Protocols
Topic: route ospf error -> Discarding packet: locally originated
Replies: 26
Views: 51620

Re: route ospf error -> Discarding packet: locally originated

We get the same problem on our CHR's (I'm most certainly not excluding a loop though, but it doesn't seem like our switches are overloaded at all) /routing ospf network add area=backbone network=192.168.10.0/24 [diadmin@somegw] > /routing ospf interface print Flags: X - disabled, I - inactive, D - d...
by carlhjerpe
Wed Apr 04, 2018 1:42 pm
Forum: General
Topic: RouterOS v7.0 beta1 - when?
Replies: 613
Views: 255314

Re: RouterOS v7.0 beta1 - when?

If we draw some conclusions: Almost everything from 7.x has been backported to 6.x MikroTik has been in trouble about GPL It's been in development for a long period of time Linux has dropped TILE support Could it possibly be that they're moving to something that isn't GPL licensed? Just saying, ther...
by carlhjerpe
Mon Jan 22, 2018 11:56 pm
Forum: General
Topic: Feature Request: zerotier vpn
Replies: 32
Views: 17340

Re: Feature Request: zerotier vpn

Others are getting ZeroTier support. https://docs.opnsense.org/manual/how-tos/zerotier.html https://github.com/mwarning/zerotier-openwrt This is a great replacement for OpenVPN, which isn't great in the MikroTik. It'd be supercool to have ZeroTier as an interface type along with EoIP for tunneling b...
by carlhjerpe
Fri Nov 03, 2017 3:37 pm
Forum: General
Topic: "Terminals" might be getting WinBox support
Replies: 4
Views: 1329

Re: "Terminals" might be getting WinBox support

Looks cool! Wonder how it will handle winbox updates, any ideas? There are different solutions to this, i mailed MikroTik support and asked, and we're free to redistribute the unmodified WinBox.exe as part of the application bundle. Another version would be to try downloading WinBox from http://www...
by carlhjerpe
Fri Nov 03, 2017 12:17 am
Forum: General
Topic: "Terminals" might be getting WinBox support
Replies: 4
Views: 1329

"Terminals" might be getting WinBox support

I'm trying to get WinBox support merged into an application called Terminals that's used for managing remote connections to various devices, hopefully it'll get merged soon. See this: https://github.com/Terminals-Origin/Terminals/pull/94 Here's a debug build: https://mega.nz/#!N0NFTboa!oqJGANRiXywih...
by carlhjerpe
Sat Nov 26, 2016 1:03 am
Forum: Wireless Networking
Topic: Wired WDS?
Replies: 5
Views: 2284

Re: Wired WDS?

Hello! I've been looking at different solutions for the best WiFi system which supports roaming for all devices. I've been looking at MikroTik WDS & Mesh, and i'm just wondering if it's possible to make all MikroTik AP's broadcast with the same SSID, MAC, Channel and communicate this between ea...
by carlhjerpe
Wed Nov 23, 2016 3:44 pm
Forum: Wireless Networking
Topic: Wired WDS?
Replies: 5
Views: 2284

Wired WDS?

Hello! I've been looking at different solutions for the best WiFi system which supports roaming for all devices. I've been looking at MikroTik WDS & Mesh, and i'm just wondering if it's possible to make all MikroTik AP's broadcast with the same SSID, MAC, Channel and communicate this between eac...
by carlhjerpe
Wed Aug 24, 2016 10:30 am
Forum: General
Topic: Missing changelog entry?
Replies: 1
Views: 992

Missing changelog entry?

I couldn't find the new change with interface lists in the changelog anywhere, shouln't it be in the changelog? :)
by carlhjerpe
Wed Aug 17, 2016 12:40 pm
Forum: General
Topic: [Feature Request] Being able to add static address-list entries from script
Replies: 5
Views: 2009

Re: [Feature Request] Being able to add static address-list entries from script

I'm so stupid, what i did was i created them from a firewall rule... I'm terribly sorry! http://i.imgur.com/wbcTlIm.png This makes it dynamic, i guess i'll have to make a script iterating that list and adding them from script to another list. Made a script for this: EDIT: :foreach i in=[/ip firewall...
by carlhjerpe
Mon Jul 25, 2016 9:29 pm
Forum: General
Topic: [Feature Request] Being able to add static address-list entries from script
Replies: 5
Views: 2009

Re: [Feature Request] Being able to add static address-list entries from script

Not sure what you mean /ip firewall address-list add list=test address=1.1.1.1 address will stay there forever unless configuration is removed, router is reset, reinstalled or NAND destroyed. If you run it inside a script it'll be marked with a D, which means it'll go away once restarted. From term...
by carlhjerpe
Mon Jul 25, 2016 5:34 pm
Forum: General
Topic: [Feature Request] Being able to add static address-list entries from script
Replies: 5
Views: 2009

[Feature Request] Being able to add static address-list entries from script

Well as i can see, from script there's no way to add something to address list permanently. Which would be nice in some cases, atm when you set timeout to infinite it still goes away on reboot.

Could this be fixed? :)

Best Regards
Carl
by carlhjerpe
Fri Jan 08, 2016 8:53 am
Forum: Scripting
Topic: Beep when someone connects to Wi-Fi
Replies: 0
Views: 3840

Beep when someone connects to Wi-Fi

Well i thought i'd share this script, all it does is make an upwards beep when someone connects and a downwards one when someone disconnects, should be run somewhere between once every 1-5s :global ConnCount0 :if ([:typeof $ConnCount0] = "nothing") do={ :set ConnCount0 0 } :local ConnCount...
by carlhjerpe
Fri May 15, 2015 2:00 pm
Forum: General
Topic: How the queueing system and packet prios really work?
Replies: 0
Views: 498

How the queueing system and packet prios really work?

Hello! So i've got a job where I'm supposed to work with MikroTik and i was wondering about queues and how they work. If i have a queue i have to set priority on it, but i can also set priority on packets in mangling. If i only want to prioritize packets, can i just mangle and set priority? If anyon...