Fortinet black logo

Cookbook

Policy routes

Copy Link
Copy Doc ID 4e2e9371-e0d6-11ea-96b9-00505692583a:144044
Download PDF

Policy routes

Policy routing allows you to specify an interface to route traffic. This is useful when you need to route certain types of network traffic differently than you would if you were using the routing table. You can use the incoming traffic's protocol, source or destination address, source interface, or port number to determine where to send the traffic.

When a packet arrives, the FortiGate starts at the top of the policy route list and attempts to match the packet with a policy. For a match to be found, the policy must contain enough information to route the packet. At a minimum, this requires the outgoing interface to forward the traffic, and the gateway to route the traffic to. If one or both of these are not specified in the policy route, then the FortiGate searches the routing table to find the best active route that corresponds to the policy route. If no routes are found in the routing table, then the policy route does not match the packet. The FortiGate continues down the policy route list until it reaches the end. If no matches are found, then the FortiGate does a route lookup using the routing table.

Note

Policy routes are sometimes referred to as Policy-based routes (PBR).

Configuring a policy route

In this example, a policy route is configured to send all FTP traffic received at port1 out through port4 and to a next hop router at 172.20.120.23. To route FTP traffic, the protocol is set to TCP (6) and the destination ports are set to 21 (the FTP port).

To configure a policy route in the GUI:
  1. Go to Network > Policy Routes.
  2. Click Create New > Policy Route.
  3. Configure the following fields:

    Incoming interface

    port1

    Source Address

    0.0.0.0/0.0.0.0

    Destination Address

    0.0.0.0/0.0.0.0

    Protocol

    TCP

    Destination ports

    21 - 21

    Type of service

    0x00

    Bit Mask

    0x00

    Outgoing interface

    Enable and select port4

    Gateway address

    172.20.120.23

  4. Click OK.
To configure a policy route in the CLI:
config router policy
    edit 1
        set input-device "port1"
        set src "0.0.0.0/0.0.0.0"
        set dst "0.0.0.0/0.0.0.0"
        set protocol 6
        set start-port 21
        set end-port 21
        set gateway 172.20.120.23
        set output-device "port4"
        set tos 0x00
        set tos-mask 0x00
    next
end

Moving a policy route

A routing policy is added to the bottom of the table when it is created. Routing policies can be moved to a different location in the table to change the order of preference. In this example, routing policy 3 will be moved before routing policy 2.

To move a policy route in the GUI:
  1. Go to Network > Policy Routes.
  2. In the table, select the policy route.

  3. Drag the selected policy route to the desired position.

To move a policy route in the CLI:
config router policy
    move 3 after 1
end

Policy routes

Policy routing allows you to specify an interface to route traffic. This is useful when you need to route certain types of network traffic differently than you would if you were using the routing table. You can use the incoming traffic's protocol, source or destination address, source interface, or port number to determine where to send the traffic.

When a packet arrives, the FortiGate starts at the top of the policy route list and attempts to match the packet with a policy. For a match to be found, the policy must contain enough information to route the packet. At a minimum, this requires the outgoing interface to forward the traffic, and the gateway to route the traffic to. If one or both of these are not specified in the policy route, then the FortiGate searches the routing table to find the best active route that corresponds to the policy route. If no routes are found in the routing table, then the policy route does not match the packet. The FortiGate continues down the policy route list until it reaches the end. If no matches are found, then the FortiGate does a route lookup using the routing table.

Note

Policy routes are sometimes referred to as Policy-based routes (PBR).

Configuring a policy route

In this example, a policy route is configured to send all FTP traffic received at port1 out through port4 and to a next hop router at 172.20.120.23. To route FTP traffic, the protocol is set to TCP (6) and the destination ports are set to 21 (the FTP port).

To configure a policy route in the GUI:
  1. Go to Network > Policy Routes.
  2. Click Create New > Policy Route.
  3. Configure the following fields:

    Incoming interface

    port1

    Source Address

    0.0.0.0/0.0.0.0

    Destination Address

    0.0.0.0/0.0.0.0

    Protocol

    TCP

    Destination ports

    21 - 21

    Type of service

    0x00

    Bit Mask

    0x00

    Outgoing interface

    Enable and select port4

    Gateway address

    172.20.120.23

  4. Click OK.
To configure a policy route in the CLI:
config router policy
    edit 1
        set input-device "port1"
        set src "0.0.0.0/0.0.0.0"
        set dst "0.0.0.0/0.0.0.0"
        set protocol 6
        set start-port 21
        set end-port 21
        set gateway 172.20.120.23
        set output-device "port4"
        set tos 0x00
        set tos-mask 0x00
    next
end

Moving a policy route

A routing policy is added to the bottom of the table when it is created. Routing policies can be moved to a different location in the table to change the order of preference. In this example, routing policy 3 will be moved before routing policy 2.

To move a policy route in the GUI:
  1. Go to Network > Policy Routes.
  2. In the table, select the policy route.

  3. Drag the selected policy route to the desired position.

To move a policy route in the CLI:
config router policy
    move 3 after 1
end