Fortinet black logo

New Features

Assign multiple IP pools and subnets using IPAM Rules 7.2.1

Copy Link
Copy Doc ID 77966226-6996-11ec-bdf2-fa163e15d75b:127487
Download PDF

Assign multiple IP pools and subnets using IPAM Rules 7.2.1

Multiple IP pools can be assigned to different interfaces based on name and role using the IPAM Rules tab on the Network > IPAM page. This allows more flexibility when enabling network segmentation.

Note

IPAM pools and rules can be defined on a FortiGate not in a Security Fabric or in the root FortiGate of a Security Fabric.

IPAM pools can be defined using the config pools command:

config system ipam
    config pools
        edit <pool_name>
            set subnet <IP address/netmask>
        next
    end
end

IPAM rules can be defined using the config rules command:

config system ipam
    config rules
        edit <rule_name>
            set device {<FortiGate_serial_number> | *}
            set interface {<name> | *}
            set pool <pool_name>
        next
    end
end

A DHCP server can also be configured for IPAM-enabled interfaces using the following command.

# execute ipam create-dhcp-server <interface>
To configure IPAM rules in the GUI:
  1. Enable IPAM status. See Add new IPAM GUI page 7.2.1 for more information.

  2. Configure the subnet:

    1. Go to Network > IPAM > IPAM Settings.

    2. Select the + in the Subnets Managed by IPAM section. A new Subnets field is displayed.

    3. Enter the IP address and netmask.

    4. Click OK.

  3. Go to Network > IPAM > IPAM Rules. The role-lan and Implicit Rule rules have been configured by default.

    Note

    Implicit Rule cannot be modified or deleted. role-lan appears only after factory reset of the FortiGate and can be modified and deleted.

  4. Click Create new. The New IPAM Rule page is displayed.

  5. Enter the rule details, as necessary.

  6. Click OK. The rule will be configured and appear in the IPAM Rules tab.

To configure IPAM rules in the CLI:
config system ipam
    set status enable
    config pools
        edit "default-pool"
            set subnet 172.31.0.0 255.255.0.0
        next
        edit "lan-pool"
            set subnet 192.168.0.0 255.255.0.0
        next
    end
    config rules
        edit "test-rule"
            set device "*"
            set interface "port4"
            set role lan
            set pool "lan-pool"
            set dhcp enable
        next
    end
end

Assign multiple IP pools and subnets using IPAM Rules 7.2.1

Multiple IP pools can be assigned to different interfaces based on name and role using the IPAM Rules tab on the Network > IPAM page. This allows more flexibility when enabling network segmentation.

Note

IPAM pools and rules can be defined on a FortiGate not in a Security Fabric or in the root FortiGate of a Security Fabric.

IPAM pools can be defined using the config pools command:

config system ipam
    config pools
        edit <pool_name>
            set subnet <IP address/netmask>
        next
    end
end

IPAM rules can be defined using the config rules command:

config system ipam
    config rules
        edit <rule_name>
            set device {<FortiGate_serial_number> | *}
            set interface {<name> | *}
            set pool <pool_name>
        next
    end
end

A DHCP server can also be configured for IPAM-enabled interfaces using the following command.

# execute ipam create-dhcp-server <interface>
To configure IPAM rules in the GUI:
  1. Enable IPAM status. See Add new IPAM GUI page 7.2.1 for more information.

  2. Configure the subnet:

    1. Go to Network > IPAM > IPAM Settings.

    2. Select the + in the Subnets Managed by IPAM section. A new Subnets field is displayed.

    3. Enter the IP address and netmask.

    4. Click OK.

  3. Go to Network > IPAM > IPAM Rules. The role-lan and Implicit Rule rules have been configured by default.

    Note

    Implicit Rule cannot be modified or deleted. role-lan appears only after factory reset of the FortiGate and can be modified and deleted.

  4. Click Create new. The New IPAM Rule page is displayed.

  5. Enter the rule details, as necessary.

  6. Click OK. The rule will be configured and appear in the IPAM Rules tab.

To configure IPAM rules in the CLI:
config system ipam
    set status enable
    config pools
        edit "default-pool"
            set subnet 172.31.0.0 255.255.0.0
        next
        edit "lan-pool"
            set subnet 192.168.0.0 255.255.0.0
        next
    end
    config rules
        edit "test-rule"
            set device "*"
            set interface "port4"
            set role lan
            set pool "lan-pool"
            set dhcp enable
        next
    end
end