following... I don't like Meraki does not provide a bug tracker, much bugs are known but not specified and an expected fix schedule isn't provided either...
... View more
Is there a hardware limitation for this feature to be enabled on port 25-48 on the MS250 ? I don't want to physically re-patch devices to be able to use this functionality 😞
... View more
Yesterday i enabled the cloud tracking. When i check the traffic log and click an appliation, still only the Meraki L3 interface of our MS is displayed as client:
... View more
Hi, We have 2 MX's in warm spare configuration. Both are connected to redundant internet links. So MX1 has WAN1 and WAN2 and MX2 has the same. WAN1 and WAN2 have both 1 Gbit connectivity, i've set the policy to balance so in theory would be able to get 2Gbit internet speed. Now the MX's are connected with a routed vlan/transit vlan to a MS stack by using 4 cables. The MS support LACP but the MX don't. So i have 4 interfaces from the MS Stack connected to the MX warm spare set, but only 1 links forwards the traffic. This is because 1 MX is spare, so 2 links are inactive. And the active MX does not support LACP, so spanning-tree kicks in, so 1 link active :S Any options at this moment to be able to utilize the 2Gbit connectivity or do we have to wait until the MX does support LACP ?
... View more
Hi @MarkD_BT , Removing that parameter does not improve things. You guys are talking python, i am using powershell, maybe that differs ? I've tried $voicevlan=$null, $voicevlan="", $voicevlan=null all without result. Did you try my function in powershell ?
... View more
Maybe i can turn the case into the question : can a voicevlan value be removed by using the API From the API docs .... type: The type of the switch port ("access" or "trunk") vlan: The VLAN of the switch port. A null value will clear the value set for trunk ports. voiceVlan: The voice VLAN of the switch port. Only applicable to access ports. This is not mentioned here
... View more
i've opened up a support case too. I had this working some months back, looks like they've changed the API ? i even tried to set the voicevlan to "null" in stead of $NULL but still a 400. This working: $serial="xxx-xxx-xxx" $port.number=43 $port.name="TESTSEBAS" $port.tags="tag1" $port.enabled=$TRUE $port.poeEnabled=$TRUE $port.type="access" $port.vlan=200 $port.voiceVlan=201 $port.allowedVlans="all" $port.udld="Alert only" $port.stickyMacWhitelistLimit=2 $port.rstpEnabled=$TRUE $port.stpGuard="bpdu guard" $port.linkNegotiation="Auto negotiate" $port.isolationEnabled=$FALSE Update-MerakiSwitchPort -endpointurl $put_endpoint -apikey $api_key -port $port.number -serial $serial -name $port.name -tags $port.tags -enabled $port.enabled -poeEnabled $port.poeEnabled -type $port.type -vlan $port.vlan -voicevlan $port.voiceVlan -allowedVlans $port.allowedVlans -isolationEnabled $port.isolationEnabled -rstpEnabled $port.rstpEnabled -stpGuard $port.stpGuard -linkNegotiation $port.linkNegotiation -udld $port.udld -stickyMacWhitelistLimit $port.stickyMacWhitelistLimit When changing $voicevlan to NULL/null/$NULL/"" .. i get a bad request (400) So bottomline, the voicevlan parameter can not be removed/unset i think ?
... View more
It runs alright for most of the ports which contain data and voice vlan, on access ports that have only a data vlan it breaks. I am pretty sure it used to work some months ago in the same setup. I want to have a generic function for trunk, access and access+voice ports. So it would be nice to pass a NULL value to a voice vlan whenever it is not used. Somehow that is not allowed anymore ?
... View more
I am having some issues with my script. It seems when i do an API call to update a switchport, the voicevlan parameter is not allowed to be NULL. https://dashboard.meraki.com/api_docs#update-a-switch-port As i am using standarized functions it is possible i call the function with or without a voicevlan function. So does the voicevlan parameter in that api call has to have a value ? Or can i use 0 or should i change the request body whenever a parameter is not used ?
... View more