You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
│ Failed to configure object (PUT), got error: HTTP Request failed:
│ StatusCode 400, JSON error: ["At least one of your firewall rules is
│ invalid: \"ssid[firewall_rules][0][dst_cidr] For ACL rules applied to both
│ IPv4 and IPv6, Destination address must be 'any'\",
│ \"ssid[firewall_rules][1][dst_cidr] For ACL rules applied to both IPv4 and
│ IPv6, Destination address must be 'any'\"."], {"errors":["At least one of
│ your firewall rules is invalid: \"ssid[firewall_rules][0][dst_cidr] For ACL
│ rules applied to both IPv4 and IPv6, Destination address must be 'any'\",
│ \"ssid[firewall_rules][1][dst_cidr] For ACL rules applied to both IPv4 and
│ IPv6, Destination address must be 'any'\"."]}
Similarly, doing a straight curl request results in the same error:
curl -L --request PUT \
--url https://api.meraki.com/api/v1/networks/{networkid}/wireless/ssids/0/firewall/l3FirewallRules \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
"rules": [
{
"comment": "Test Rule",
"policy": "deny",
"protocol": "tcp",
"destPort": "Any",
"destCidr": "10.123.0.0/24"
}
],
"allowLanAccess": true
}'
...
{"errors":["At least one of your firewall rules is invalid: \"ssid[firewall_rules][0][dst_cidr] For ACL rules applied to both IPv4 and IPv6, Destination address must be 'any'\"."]}
To fix this request, I need to specify an undocumented ipVer parameter like so:
When using the
meraki_wireless_ssid_l3_firewall_rules
resource to create a wireless firewall rule with rule config:this fails with error:
Similarly, doing a straight curl request results in the same error:
To fix this request, I need to specify an undocumented ipVer parameter like so:
Can support be added for an optional
ip_ver
string parameter to resourcemeraki_wireless_ssid_l3_firewall_rules
?ref: https://community.meraki.com/t5/Developers-APIs/Wireless-Outbound-Firewall-Rules/m-p/231683
The text was updated successfully, but these errors were encountered: