I had my first issues with this, which is a bit of an install problem.
So imagine this:
You want to use a switch management VLAN which is different than VLAN 1.
However your switch first came online with all ports in trunk native VLAN 1 and it received an IP in that this switch thinks is VLAN 1, however the trunk leading to the upstream devices has the switch management VLAN as native (think the MX downlink).
So to fix this you want to change the uplink ports so it takes VLAN 2001 in my case as native VLAN and then apply a fixed IP address inside that range.
Now here comes the problem:
The switch will deny the config since it now has to apply the IP from VLAN 2001 which is in the same subnet like the switch now has DHCP in VLAN 1. This will cause the netconf call to fail and leave an error xml file on the flash of the switch.
RPC Error occured during SET: /flash/meraki/config_updater/monitor/dwnld_running.config
Info: <?xml version="1.0" encoding="UTF-8"?><error-info xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"><severity xmlns="http://cisco.com/yang/cisco-ia">error_cli</severity>
<detail xmlns="http://cisco.com/yang/cisco-ia">
<bad-cli>
<bad-command> ip address 10.10.1.11 255.255.255.0</bad-command>
<error-location>36</error-location>
<parser-response>
% 10.10.1.0 overlaps with Vlan1</parser-response>
<parser-context> description Uplink_VLAN
mac-address 0018.0a4f.0001
no shutdown
ip access-group l3-v4-acl in
ip address 10.10.1.11 255.255.255.0</parser-context>
</bad-cli>
</detail>
So the switch gets stuck in the VLAN 1 config and does not allow any other configs for some reason.
I was able to console into the switch and manually remove VLAN 1 IP address and apply fixed to VLAN 2001. The switch then came back online with the correct VLAN and now I can no longer access the CLI via console cable. There are still some other issues like no longer being able to console from dashboard (internal error). So it would seem we are having a bit of an issue with the configs.