07-05-2018 08:20 AM
I am using Postman to interact with the API and seem to be stuck on how to issue a PUT for L3 firewall rules. I have a parameter of "rules" with a value of the array as defined in the attached -
I get a 200 message, but when I GET the network the firewall rules have not been modified.
I've also tried defining a "rules": array in the body (as shown in the online Meraki API documentation) with no different results.
Guidance would be appreciated.
Sample array used in the value field attached
{
"comment": "allow https - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "443",
"destCidr": "Any",
"syslogEnabled": false
},
{
"comment": "allow ssh - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "22",
"destCidr": "Any",
"syslogEnabled": true
}
Solved! Go to Solution.
07-10-2018 05:33 AM
I have resolved my issue. As instructed in the API documentation I have been using the "params" key of "rules" and a "value" of the array. The body also contained the array as the example code indicated. If I removed the params key of rules, than I would receive the following error:
404 Bad Request
{
"errors": [
"Missing parameter - the \"rules\" parameter is required"
]
}I imported the sample curl example from the Meraki API documentation into Postman and noticed that the params did not include anything, only the body with the array. I updated my request accordingly and now L3 firewall rules are updated. As a note, the firewall replaces any existing rules with the array contents. So to update a single rule you would need to include all the rules.
07-05-2018 08:28 AM
I haven't added a rule via API before but I have two observations.
1. The documentation says "Update L3 Firewall Rules" so I wonder if you are only allowed to update and not add. It doesn't clarify
2. The rules array appears to be required and make sure to pay attention that it uses a bracket instead of the curly brace so I assume the body of the postman request would be formatted similar to this
{
"rules": [
{
"comment": "allow https - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "443",
"destCidr": "Any",
"syslogEnabled": false
07-05-2018 09:28 AM
{
"rules": [
{
"comment": "allow https - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "443",
"destCidr": "Any",
"syslogEnabled": false
},
{
"comment": "allow ssh - corp internet",
"policy": "allow",
"protocol": "tcp",
"srcPort": "Any",
"srcCidr": "10.0.0.0/8",
"destPort": "22",
"destCidr": "Any",
"syslogEnabled": true
}
]
}this is what I have tried in the body, I am thinking the value in my params field is not correct, but not sure on what other format it should be in.
You might be onto something with the "Update firewall rule" language instead of "Add", but I tried adding additional destination ports and/or source CIDR in a rule, keeping the same rule order as retrieved in a GET, but the modified rules do not reflect the changes on another GET.
07-10-2018 05:33 AM
I have resolved my issue. As instructed in the API documentation I have been using the "params" key of "rules" and a "value" of the array. The body also contained the array as the example code indicated. If I removed the params key of rules, than I would receive the following error:
404 Bad Request
{
"errors": [
"Missing parameter - the \"rules\" parameter is required"
]
}I imported the sample curl example from the Meraki API documentation into Postman and noticed that the params did not include anything, only the body with the array. I updated my request accordingly and now L3 firewall rules are updated. As a note, the firewall replaces any existing rules with the array contents. So to update a single rule you would need to include all the rules.
07-10-2018 06:13 AM
Thanks for following up on this. I was curious what the resolution would be.
10-23-2018 06:23 PM
Hi Guys,
I've been testing with APIs adding adddresses, names, getting networks, devices, etc.
I was trying to add L3 rules into an MX and this really helped since I had the RULES missing parameter, but after doing some testing I'm encountering the following issue.
If I try to add one rule:
[
{
"comment": "Test Rule",
"policy": "deny",
"protocol": "any",
"srcPort": "Any",
"srcCidr": "10.10.37.5/32",
"destPort": "Any",
"destCidr": "10.10.36.0/24",
"syslogEnabled": false
},
{
"comment": "Default rule",
"policy": "allow",
"protocol": "Any",
"srcPort": "Any",
"srcCidr": "Any",
"destPort": "Any",
"destCidr": "Any",
"syslogEnabled": false
}
]
I get a 200OK but no addition was made, ever further if I enter a rule manually in the portal and I run the same script everything gets deleted and I get the a 200OK but it deletes all the existing rules but the default one.
any guidance would be great.
BTW I'm doing this with postman
10-23-2018 06:34 PM
That appears to be the API behavior. You need to define the entire rule set. So if you want to add a rule, you include all the rules plus your addition. Same from removal of a rule. All the rules minus the deleted rule. Weird but it works.
10-23-2018 06:40 PM
Thanks for your reply.
I've just tried that last time, I first got the existing rules qith a GET, then I PUT the existing rules plus a new one at the top or at the bottom, and does the same the outcome is deletion of the existing rules but the default one.
11-08-2018 12:02 PM
On the same topic, have a side question... is there a way to add the same firewall rule to multiple networks??? I know how to do with one network because of you have to define a networkID but what about applying to few networks or all thru Postman?
07-12-2019 08:52 AM
Don't know if you are still wanting to do this, but to my knowledge there is not a way to do this via Postman. Admittedly, I don't use Postman, but when I was looking at it I did not get the impression that you could do something like this. You can however do this via a language like Python. I have a script that allows me to access any L3 rules in any MX network in any organization and copy them to another network or networks.
If you are interested in something like this, I can give you more information.
07-12-2019 09:03 AM
Yes please! I am starting to learn Python just for this purpose so it will help me lot if you could give me any more information.
07-12-2019 09:15 AM
No problem. Do you know if there is an easy way to talk out of the forum? I want to get an idea of what you have done so far and that does not need to be a public discussion. I will also give you the script I wrote and help you to understand what it is doing and modify it to meet your needs.
07-12-2019 09:23 AM
@CBurkhead wrote:
Do you know if there is an easy way to talk out of the forum? I want to get an idea of what you have done so far and that does not need to be a public discussion.
Hi @CBurkhead - I just granted you Private Message permissions (typically they're granted automatically after a certain amount of activity on the forums), so you and @33 can exchange contact info privately.
07-12-2019 09:25 AM
Thank you very much! That will help a great deal.
12-03-2024 01:12 AM
You can use postman collection runner where you have to create a networkID variable and to provide data for that variable you can upload a datasheet with multiple networkids
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide