IPv4 Static Route
Location in GUI: Devices » Device Management » Device » Routing » Static Route
Diagram
Section titled “Diagram”Classes
Section titled “Classes”vrfs (fmc.domains.devices.devices)
Section titled “vrfs (fmc.domains.devices.devices)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| ipv4_static_routes | List | [ipv4_static_routes] | No |
ipv4_static_routes (fmc.domains.devices.devices.vrfs)
Section titled “ipv4_static_routes (fmc.domains.devices.devices.vrfs)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Regex: ^[a-zA-Z0-9_.+-]{1,64}$ | Yes | |
| gateway | Class | [gateway] | Yes | |
| interface_logical_name | String | Yes | ||
| metric | Integer | min: 1, max: 254 | No | |
| selected_networks | List | String | Yes | |
| is_tunneled | Boolean | true, false | No |
gateway (fmc.domains.devices.devices.vrfs.ipv4_static_routes)
Section titled “gateway (fmc.domains.devices.devices.vrfs.ipv4_static_routes)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| object | String | No | ||
| literal | IP | No |
Examples
Section titled “Examples”Prerequisites:
fmc: domains: - name: Global objects: hosts: - name: MyHostName1 ip: 10.10.10.1 networks: - name: MyNetworkName1 prefix: 10.10.10.0/24 - name: MyNetworkName2 prefix: 10.10.20.0/24 devices: devices: - name: MyDeviceName1 host: 10.1.120.203 access_control_policy: MyAccessPolicyName2 registration_key: cisco123 deploy: true licenses: - ESSENTIALS - IPS performance_tier: FTDv5 vrfs: - name: Global physical_interfaces: - name: GigabitEthernet0/0 logical_name: INSIDE ipv4_static_address: 10.20.30.1 ipv4_static_netmask: 24BFD:
fmc: domains: - name: Global devices: devices: - name: MyDeviceName1 vrfs: - name: Global ipv4_static_routes: - name: MyStaticRoute1 gateway: object: MyHostName1 interface_logical_name: INSIDE selected_networks: - MyNetworkName1 - MyNetworkName2