How to Create and Modify Meraki Switch Templates

🧩 1. What is a Meraki Switch Template?

In Cisco Meraki, templates are configurations that can be applied across multiple networks, especially useful in large-scale deployments to ensure consistency.


🖥️ 2. Creating a Switch Template (via GUI)


⚙️ 3. Modifying a Switch Template (via GUI)


🔧 4. Creating/Modifying Switch Templates (via API)

📌 Prerequisites:


✅ Create a Configuration Template:

POST /organizations/{organizationId}/configTemplates

{
"name": "Branch Switch Template"
}

✅ Modify VLAN Settings in a Template:

PUT /networks/{networkId}/switch/settings

{
"vlan": 20,
"useCombinedPower": true,
"voiceVlanId": 100
}

✅ Update Switch Port:

PUT /devices/{serial}/switch/ports/{portId}

{
"name": "Uplink Port",
"type": "trunk",
"vlan": 1,
"allowedVlans": "1,10,20",
"poeEnabled": true
}

📚 Extra Notes:

renjithbs Avatar

Posted by

Leave a comment