Cellular gateway configuration in Meraki provides comprehensive management of cellular WAN connectivity, LAN networking, and traffic routing for remote locations and backup connectivity scenarios. Cellular gateways enable reliable internet access through cellular networks while supporting advanced networking features including port forwarding, IP reservations, and traffic routing. This functionality is essential for locations without traditional WAN connectivity, temporary deployments, and business continuity solutions requiring cellular failover capabilities.
Example-1: The example below shows cellular gateway configuration using pipeline-tested configuration with LAN management and port forwarding for device connectivity and traffic routing.
meraki:
domains:
- name: "!env domain"
administrator:
name: "!env org_admin"
organizations:
- name: "!env org"
networks:
- name: "!env network_name"
product_types:
- appliance
- camera
- switch
- wireless
- cellularGateway
devices:
- name: "!env cellular_gateway_01"
- name: "!env backup_cellular_gateway"
cellular_gateway:
lan:
reserved_ip_ranges:
- comment: "Backup services"
start: "192.168.20.100"
end: "192.168.20.110"
fixed_ip_assignments:
- ip: "192.168.20.10"
mac: "!env backup_server_mac"
name: "Backup Server"
port_forwarding_rules:
- access: "any"
lan_ip: "192.168.20.10"
local_port: "22"
protocol: "tcp"
public_port: "2222"
name: "SSH Backup Server"
Configuration Parameters
Parameter
Type
Required
Description
cellular_gateway
Object
Yes
Container for cellular gateway configuration
cellular_gateway.name
String
No
Gateway name (1-127 characters)
cellular_gateway.lan
Object
No
LAN configuration settings
cellular_gateway.lan.reserved_ip_ranges
Array
No
List of IP address ranges reserved for specific purposes
cellular_gateway.lan.reserved_ip_ranges[].start
IP
Yes
Starting IP address of the reserved range
cellular_gateway.lan.reserved_ip_ranges[].end
IP
Yes
Ending IP address of the reserved range
cellular_gateway.lan.reserved_ip_ranges[].comment
String
Yes
Description of the reserved IP range purpose (1-127 chars)
cellular_gateway.lan.fixed_ip_assignments
Array
No
Static IP address assignments for specific devices
cellular_gateway.lan.fixed_ip_assignments[].ip
IP
Yes
Static IP address to assign
cellular_gateway.lan.fixed_ip_assignments[].mac
MAC
Yes
MAC address of the device receiving the static IP
cellular_gateway.lan.fixed_ip_assignments[].name
String
No
Descriptive name for the device (1-127 characters)
cellular_gateway.port_forwarding_rules
Array
No
Port forwarding configuration for external access
cellular_gateway.port_forwarding_rules[].name
String
No
Descriptive name for the forwarding rule (1-127 characters)