Hi,
I notice there's an API for getting inbound filters on an MX device:
GET 'https://api.meraki.com/api/v0/networks/{networkId}/appliance/firewall/inboundFirewallRules'
Successful HTTP Status: 200
{
"rules": [
{
"comment": "Allow TCP traffic to subnet with HTTP servers.",
"policy": "allow",
"protocol": "tcp",
"destPort": 443,
"destCidr": "192.168.1.0/24",
"srcPort": "Any",
"srcCidr": "Any",
"syslogEnabled": false
}
],
"syslogDefaultRule": true
}
However, I can't find where on the dashboard to configure this. There's a Note on the firewall page that says:
Inbound rules | Inbound traffic will be restricted to the services and forwarding rules configured below. |
But the forwarding rules does not look like the output above. Is there another section where this is configured?
Thanks,
-Jerome