Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
I have to be blind because there error I'm getting is that my ip address is not formatted correctly for the meraki module in python. But it looks correct.Yes i know i'm importing more then needed.from meraki import merakifrom ipaddress import ip_add...
Nope you're good, I was miss reading your diagram. So with your original setup, your AP's are going to pull an address from your ADSL router because you have ports 3-5 set as native vlan 1. You are also trying to pass VLAN 1 to your clients for DHCP...
Did you create a DHCP scope for your "management VLAN"? We have a similar setup, we have a guest VLAN 25, and an internal VLAN of 20. We created a management VLAN and that VLAN's sole purpose is to hand out DHCP addresses to meraki gear. So we set...
Change native VLAN of ports 3-5. You can't pass VLAN tagged traffic over a port with the same native vlan. Or change your ssid to NAT mode and let the AP handle DHCP for clients.
I did see that part(from meraki.py)__comparelist(subnets, usevpn)vpnsubnets = list(zip(subnets, usevpn))in order to test if that was the problem I static set all the requirements of the function. (subnets='10.10.10.10/24', usevpn = 'True') and still...