fortios_router_route_map – Configure route maps in Fortinet’s FortiOS and FortiGate.

New in version 2.9.

Synopsis

  • This module is able to configure a FortiGate or FortiOS (FOS) device by allowing the user to set and modify router feature and route_map category. Examples include all parameters and values need to be adjusted to datasources before usage. Tested with FOS v6.0.0

Requirements

The below requirements are needed on the host that executes this module.

  • ansible>=2.9.0

Parameters

  • access_token - Token-based authentication. Generated from GUI of Fortigate. type: str required: False
  • vdom - Virtual domain, among those defined previously. A vdom is a virtual instance of the FortiGate that can be configured and used as a different unit. type: str default: root
  • state - Indicates whether to create or remove the object. type: str required: True choices: present, absent
  • router_route_map - Configure route maps. type: dict
    • comments - Optional comments. type: str
    • name - Name. type: str required: True
    • rule - Rule. type: list
      • action - Action. type: str choices: permit, deny
      • id - Rule ID. type: int required: True
      • match_as_path - Match BGP AS path list. Source router.aspath-list.name. type: str
      • match_community - Match BGP community list. Source router.community-list.name. type: str
      • match_community_exact - Enable/disable exact matching of communities. type: str choices: enable, disable
      • match_flags - BGP flag value to match (0 - 65535) type: int
      • match_interface - Match interface configuration. Source system.interface.name. type: str
      • match_ip_address - Match IP address permitted by access-list or prefix-list. Source router.access-list.name router.prefix-list.name. type: str
      • match_ip_nexthop - Match next hop IP address passed by access-list or prefix-list. Source router.access-list.name router.prefix-list.name. type: str
      • match_ip6_address - Match IPv6 address permitted by access-list6 or prefix-list6. Source router.access-list6.name router.prefix-list6.name. type: str
      • match_ip6_nexthop - Match next hop IPv6 address passed by access-list6 or prefix-list6. Source router.access-list6.name router.prefix-list6.name. type: str
      • match_metric - Match metric for redistribute routes. type: int
      • match_origin - Match BGP origin code. type: str choices: none, egp, igp, incomplete
      • match_route_type - Match route type. type: str choices: 1, 2, none
      • match_tag - Match tag. type: int
      • set_aggregator_as - BGP aggregator AS. type: int
      • set_aggregator_ip - BGP aggregator IP. type: str
      • set_aspath - Prepend BGP AS path attribute. type: list
        • as - AS number (0 - 42949672). NOTE: Use quotes for repeating numbers, e.g.: "1 1 2" type: str required: True
      • set_aspath_action - Specify preferred action of set-aspath. type: str choices: prepend, replace
      • set_atomic_aggregate - Enable/disable BGP atomic aggregate attribute. type: str choices: enable, disable
      • set_community - BGP community attribute. type: list
        • community - Attribute: AA|AA:NN|internet|local-AS|no-advertise|no-export. type: str required: True
      • set_community_additive - Enable/disable adding set-community to existing community. type: str choices: enable, disable
      • set_community_delete - Delete communities matching community list. Source router.community-list.name. type: str
      • set_dampening_max_suppress - Maximum duration to suppress a route (1 - 255 min, 0 = unset). type: int
      • set_dampening_reachability_half_life - Reachability half-life time for the penalty (1 - 45 min, 0 = unset). type: int
      • set_dampening_reuse - Value to start reusing a route (1 - 20000, 0 = unset). type: int
      • set_dampening_suppress - Value to start suppressing a route (1 - 20000, 0 = unset). type: int
      • set_dampening_unreachability_half_life - Unreachability Half-life time for the penalty (1 - 45 min, 0 = unset) type: int
      • set_extcommunity_rt - Route Target extended community. type: list
        • community - AA:NN. type: str required: True
      • set_extcommunity_soo - Site-of-Origin extended community. type: list
        • community - AA:NN type: str required: True
      • set_flags - BGP flags value (0 - 65535) type: int
      • set_ip_nexthop - IP address of next hop. type: str
      • set_ip6_nexthop - IPv6 global address of next hop. type: str
      • set_ip6_nexthop_local - IPv6 local address of next hop. type: str
      • set_local_preference - BGP local preference path attribute. type: int
      • set_metric - Metric value. type: int
      • set_metric_type - Metric type. type: str choices: 1, 2, none
      • set_origin - BGP origin code. type: str choices: none, egp, igp, incomplete
      • set_originator_id - BGP originator ID attribute. type: str
      • set_route_tag - Route tag for routing table. type: int
      • set_tag - Tag value. type: int
      • set_weight - BGP weight for routing table. type: int

Notes

Note

  • Legacy fortiosapi has been deprecated, httpapi is the preferred way to run playbooks

Examples

- hosts: fortigates
  collections:
    - fortinet.fortios
  connection: httpapi
  vars:
   vdom: "root"
   ansible_httpapi_use_ssl: yes
   ansible_httpapi_validate_certs: no
   ansible_httpapi_port: 443
  tasks:
  - name: Configure route maps.
    fortios_router_route_map:
      vdom:  "{{ vdom }}"
      state: "present"
      access_token: "<your_own_value>"
      router_route_map:
        comments: "<your_own_value>"
        name: "default_name_4"
        rule:
         -
            action: "permit"
            id:  "7"
            match_as_path: "<your_own_value> (source router.aspath-list.name)"
            match_community: "<your_own_value> (source router.community-list.name)"
            match_community_exact: "enable"
            match_flags: "11"
            match_interface: "<your_own_value> (source system.interface.name)"
            match_ip_address: "<your_own_value> (source router.access-list.name router.prefix-list.name)"
            match_ip_nexthop: "<your_own_value> (source router.access-list.name router.prefix-list.name)"
            match_ip6_address: "<your_own_value> (source router.access-list6.name router.prefix-list6.name)"
            match_ip6_nexthop: "<your_own_value> (source router.access-list6.name router.prefix-list6.name)"
            match_metric: "17"
            match_origin: "none"
            match_route_type: "1"
            match_tag: "20"
            set_aggregator_as: "21"
            set_aggregator_ip: "<your_own_value>"
            set_aspath:
             -
                as: "<your_own_value>"
            set_aspath_action: "prepend"
            set_atomic_aggregate: "enable"
            set_community:
             -
                community: "<your_own_value>"
            set_community_additive: "enable"
            set_community_delete: "<your_own_value> (source router.community-list.name)"
            set_dampening_max_suppress: "31"
            set_dampening_reachability_half_life: "32"
            set_dampening_reuse: "33"
            set_dampening_suppress: "34"
            set_dampening_unreachability_half_life: "35"
            set_extcommunity_rt:
             -
                community: "<your_own_value>"
            set_extcommunity_soo:
             -
                community: "<your_own_value>"
            set_flags: "40"
            set_ip_nexthop: "<your_own_value>"
            set_ip6_nexthop: "<your_own_value>"
            set_ip6_nexthop_local: "<your_own_value>"
            set_local_preference: "44"
            set_metric: "45"
            set_metric_type: "1"
            set_origin: "none"
            set_originator_id: "<your_own_value>"
            set_route_tag: "49"
            set_tag: "50"
            set_weight: "51"

Return Values

Common return values are documented: https://docs.ansible.com/ansible/latest/reference_appendices/common_return_values.html#common-return-values, the following are the fields unique to this module:

  • build - Build number of the fortigate image returned: always type: str sample: 1547
  • http_method - Last method used to provision the content into FortiGate returned: always type: str sample: PUT
  • http_status - Last result given by FortiGate on last operation applied returned: always type: str sample: 200
  • mkey - Master key (id) used in the last call to FortiGate returned: success type: str sample: id
  • name - Name of the table used to fulfill the request returned: always type: str sample: urlfilter
  • path - Path of the table used to fulfill the request returned: always type: str sample: webfilter
  • revision - Internal revision number returned: always type: str sample: 17.0.2.10658
  • serial - Serial number of the unit returned: always type: str sample: FGVMEVYYQT3AB5352
  • status - Indication of the operation's result returned: always type: str sample: success
  • vdom - Virtual domain used returned: always type: str sample: root
  • version - Version of the FortiGate returned: always type: str sample: v5.6.3

Status

  • This module is not guaranteed to have a backwards compatible interface.

Authors

  • Link Zheng (@chillancezen)
  • Jie Xue (@JieX19)
  • Hongbin Lu (@fgtdev-hblu)
  • Frank Shen (@frankshen01)
  • Miguel Angel Munoz (@mamunozgonzalez)
  • Nicolas Thomas (@thomnico)

Hint

If you notice any issues in this documentation, you can create a pull request to improve it.