MikroTik Ports und Vlan Darstellung
Hallo,
via Winbox und Web habe ich unter Bridge/VLANs alle VLANs die ich konfiguriert habe, und die dazugehörigen Ports.
Ich hätte aber gerne eine andere Ansicht.
ether1:
VLAN100, VLAN200
ether2:
VLAN400
usw.
Wäre das möglich?
Danke!
via Winbox und Web habe ich unter Bridge/VLANs alle VLANs die ich konfiguriert habe, und die dazugehörigen Ports.
Ich hätte aber gerne eine andere Ansicht.
ether1:
VLAN100, VLAN200
ether2:
VLAN400
usw.
Wäre das möglich?
Danke!
Please also mark the comments that contributed to the solution of the article
Content-ID: 634269
Url: https://administrator.de/contentid/634269
Printed on: October 5, 2024 at 02:10 o'clock
2 Comments
Latest comment
Ich hätte aber gerne eine andere Ansicht.
Tagged oder untagged VLANs?Wäre das möglich?
Nicht direkt aber ein Mikrotik Skript macht dir fast alles möglich ...Das 22. Türchen im Adventskalender hat folgendes hervorgebracht ...
:local result ({})
:foreach entry in=[/interface bridge vlan print as-value] do={
:foreach port in=($entry->"current-tagged") do={
:set ($result->"$port") (($result->"$port"),($entry->"vlan-ids"))
}
}
:foreach k,v in=$result do={
# output to console
:put ("Port '$k' (tagged): " . [:tostr $v])
# output to mikrotik log
/log info message=("Port '$k' (tagged): " . [:tostr $v])
}