fortios.system/dhcp.Server
Explore with Pulumi AI
Configure DHCP servers.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.system.dhcp.Server("trname", {
dnsService: "default",
fosid: 1,
"interface": "port2",
ipRanges: [{
endIp: "1.1.1.22",
id: 1,
startIp: "1.1.1.1",
}],
netmask: "255.255.255.0",
ntpServer1: "192.168.52.22",
status: "disable",
timezone: "00",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.system.dhcp.Server("trname",
dns_service="default",
fosid=1,
interface="port2",
ip_ranges=[fortios.system.dhcp.ServerIpRangeArgs(
end_ip="1.1.1.22",
id=1,
start_ip="1.1.1.1",
)],
netmask="255.255.255.0",
ntp_server1="192.168.52.22",
status="disable",
timezone="00")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/system"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := system.NewServer(ctx, "trname", &system.ServerArgs{
DnsService: pulumi.String("default"),
Fosid: pulumi.Int(1),
Interface: pulumi.String("port2"),
IpRanges: dhcp.ServerIpRangeArray{
&dhcp.ServerIpRangeArgs{
EndIp: pulumi.String("1.1.1.22"),
Id: pulumi.Int(1),
StartIp: pulumi.String("1.1.1.1"),
},
},
Netmask: pulumi.String("255.255.255.0"),
NtpServer1: pulumi.String("192.168.52.22"),
Status: pulumi.String("disable"),
Timezone: pulumi.String("00"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.System.Dhcp.Server("trname", new()
{
DnsService = "default",
Fosid = 1,
Interface = "port2",
IpRanges = new[]
{
new Fortios.System.Dhcp.Inputs.ServerIpRangeArgs
{
EndIp = "1.1.1.22",
Id = 1,
StartIp = "1.1.1.1",
},
},
Netmask = "255.255.255.0",
NtpServer1 = "192.168.52.22",
Status = "disable",
Timezone = "00",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.system.Server;
import com.pulumi.fortios.system.ServerArgs;
import com.pulumi.fortios.system.inputs.ServerIpRangeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new Server("trname", ServerArgs.builder()
.dnsService("default")
.fosid(1)
.interface_("port2")
.ipRanges(ServerIpRangeArgs.builder()
.endIp("1.1.1.22")
.id(1)
.startIp("1.1.1.1")
.build())
.netmask("255.255.255.0")
.ntpServer1("192.168.52.22")
.status("disable")
.timezone("00")
.build());
}
}
resources:
trname:
type: fortios:system/dhcp:Server
properties:
dnsService: default
fosid: 1
interface: port2
ipRanges:
- endIp: 1.1.1.22
id: 1
startIp: 1.1.1.1
netmask: 255.255.255.0
ntpServer1: 192.168.52.22
status: disable
timezone: '00'
Create Server Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Server(name: string, args: ServerArgs, opts?: CustomResourceOptions);
@overload
def Server(resource_name: str,
args: ServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Server(resource_name: str,
opts: Optional[ResourceOptions] = None,
interface: Optional[str] = None,
netmask: Optional[str] = None,
auto_configuration: Optional[str] = None,
auto_managed_status: Optional[str] = None,
conflicted_ip_timeout: Optional[int] = None,
ddns_auth: Optional[str] = None,
ddns_key: Optional[str] = None,
ddns_keyname: Optional[str] = None,
ddns_server_ip: Optional[str] = None,
ddns_ttl: Optional[int] = None,
ddns_update: Optional[str] = None,
ddns_update_override: Optional[str] = None,
ddns_zone: Optional[str] = None,
default_gateway: Optional[str] = None,
dhcp_settings_from_fortiipam: Optional[str] = None,
dns_server1: Optional[str] = None,
dns_server2: Optional[str] = None,
dns_server3: Optional[str] = None,
dns_server4: Optional[str] = None,
dns_service: Optional[str] = None,
domain: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
exclude_ranges: Optional[Sequence[ServerExcludeRangeArgs]] = None,
filename: Optional[str] = None,
forticlient_on_net_status: Optional[str] = None,
fosid: Optional[int] = None,
get_all_tables: Optional[str] = None,
ip_mode: Optional[str] = None,
ip_ranges: Optional[Sequence[ServerIpRangeArgs]] = None,
ipsec_lease_hold: Optional[int] = None,
lease_time: Optional[int] = None,
mac_acl_default_action: Optional[str] = None,
next_server: Optional[str] = None,
ntp_server1: Optional[str] = None,
ntp_server2: Optional[str] = None,
ntp_server3: Optional[str] = None,
ntp_service: Optional[str] = None,
options: Optional[Sequence[ServerOptionArgs]] = None,
relay_agent: Optional[str] = None,
reserved_addresses: Optional[Sequence[ServerReservedAddressArgs]] = None,
server_type: Optional[str] = None,
shared_subnet: Optional[str] = None,
status: Optional[str] = None,
tftp_servers: Optional[Sequence[ServerTftpServerArgs]] = None,
timezone: Optional[str] = None,
timezone_option: Optional[str] = None,
vci_match: Optional[str] = None,
vci_strings: Optional[Sequence[ServerVciStringArgs]] = None,
vdomparam: Optional[str] = None,
wifi_ac1: Optional[str] = None,
wifi_ac2: Optional[str] = None,
wifi_ac3: Optional[str] = None,
wifi_ac_service: Optional[str] = None,
wins_server1: Optional[str] = None,
wins_server2: Optional[str] = None)
func NewServer(ctx *Context, name string, args ServerArgs, opts ...ResourceOption) (*Server, error)
public Server(string name, ServerArgs args, CustomResourceOptions? opts = null)
public Server(String name, ServerArgs args)
public Server(String name, ServerArgs args, CustomResourceOptions options)
type: fortios:system/dhcp/server:Server
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Server Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Server resource accepts the following input properties:
- Interface string
- DHCP server can assign IP configurations to clients connected to this interface.
- Netmask string
- Netmask assigned by the DHCP server.
- Auto
Configuration string - Enable/disable auto configuration. Valid values:
disable
,enable
. - Auto
Managed stringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - Conflicted
Ip intTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- Ddns
Auth string - DDNS authentication mode. Valid values:
disable
,tsig
. - Ddns
Key string - DDNS update key (base 64 encoding).
- Ddns
Keyname string - DDNS update key name.
- Ddns
Server stringIp - DDNS server IP.
- Ddns
Ttl int - TTL.
- Ddns
Update string - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - Ddns
Update stringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - Ddns
Zone string - Zone of your domain name (ex. DDNS.com).
- Default
Gateway string - Default gateway IP address assigned by the DHCP server.
- Dhcp
Settings stringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - Dns
Server1 string - DNS server 1.
- Dns
Server2 string - DNS server 2.
- Dns
Server3 string - DNS server 3.
- Dns
Server4 string - DNS server 4.
- Dns
Service string - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - Domain string
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Exclude
Ranges List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Exclude Range> - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - Filename string
- Name of the boot file on the TFTP server.
- Forticlient
On stringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - Fosid int
- ID.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ip
Mode string - Method used to assign client IP. Valid values:
range
,usrgrp
. - Ip
Ranges List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Ip Range> - DHCP IP range configuration. The structure of
ip_range
block is documented below. - Ipsec
Lease intHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- Lease
Time int - Lease time in seconds, 0 means unlimited.
- Mac
Acl stringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - Next
Server string - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- Ntp
Server1 string - NTP server 1.
- Ntp
Server2 string - NTP server 2.
- Ntp
Server3 string - NTP server 3.
- Ntp
Service string - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - Options
List<Pulumiverse.
Fortios. System. Dhcp. Inputs. Server Option> - DHCP options. The structure of
options
block is documented below. - Relay
Agent string - Relay agent IP.
- Reserved
Addresses List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Reserved Address> - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - Server
Type string - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - string
- Enable/disable shared subnet. Valid values:
disable
,enable
. - Status string
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - Tftp
Servers List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Tftp Server> - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - Timezone string
- Select the time zone to be assigned to DHCP clients.
- Timezone
Option string - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - Vci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Wifi
Ac1 string - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac2 string - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac3 string - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac stringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - Wins
Server1 string - WINS server 1.
- Wins
Server2 string - WINS server 2.
- Interface string
- DHCP server can assign IP configurations to clients connected to this interface.
- Netmask string
- Netmask assigned by the DHCP server.
- Auto
Configuration string - Enable/disable auto configuration. Valid values:
disable
,enable
. - Auto
Managed stringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - Conflicted
Ip intTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- Ddns
Auth string - DDNS authentication mode. Valid values:
disable
,tsig
. - Ddns
Key string - DDNS update key (base 64 encoding).
- Ddns
Keyname string - DDNS update key name.
- Ddns
Server stringIp - DDNS server IP.
- Ddns
Ttl int - TTL.
- Ddns
Update string - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - Ddns
Update stringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - Ddns
Zone string - Zone of your domain name (ex. DDNS.com).
- Default
Gateway string - Default gateway IP address assigned by the DHCP server.
- Dhcp
Settings stringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - Dns
Server1 string - DNS server 1.
- Dns
Server2 string - DNS server 2.
- Dns
Server3 string - DNS server 3.
- Dns
Server4 string - DNS server 4.
- Dns
Service string - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - Domain string
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Exclude
Ranges []ServerExclude Range Args - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - Filename string
- Name of the boot file on the TFTP server.
- Forticlient
On stringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - Fosid int
- ID.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ip
Mode string - Method used to assign client IP. Valid values:
range
,usrgrp
. - Ip
Ranges []ServerIp Range Args - DHCP IP range configuration. The structure of
ip_range
block is documented below. - Ipsec
Lease intHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- Lease
Time int - Lease time in seconds, 0 means unlimited.
- Mac
Acl stringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - Next
Server string - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- Ntp
Server1 string - NTP server 1.
- Ntp
Server2 string - NTP server 2.
- Ntp
Server3 string - NTP server 3.
- Ntp
Service string - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - Options
[]Server
Option Args - DHCP options. The structure of
options
block is documented below. - Relay
Agent string - Relay agent IP.
- Reserved
Addresses []ServerReserved Address Args - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - Server
Type string - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - string
- Enable/disable shared subnet. Valid values:
disable
,enable
. - Status string
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - Tftp
Servers []ServerTftp Server Args - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - Timezone string
- Select the time zone to be assigned to DHCP clients.
- Timezone
Option string - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - Vci
Strings []ServerVci String Args - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Wifi
Ac1 string - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac2 string - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac3 string - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac stringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - Wins
Server1 string - WINS server 1.
- Wins
Server2 string - WINS server 2.
- interface_ String
- DHCP server can assign IP configurations to clients connected to this interface.
- netmask String
- Netmask assigned by the DHCP server.
- auto
Configuration String - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto
Managed StringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted
Ip IntegerTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns
Auth String - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns
Key String - DDNS update key (base 64 encoding).
- ddns
Keyname String - DDNS update key name.
- ddns
Server StringIp - DDNS server IP.
- ddns
Ttl Integer - TTL.
- ddns
Update String - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns
Update StringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns
Zone String - Zone of your domain name (ex. DDNS.com).
- default
Gateway String - Default gateway IP address assigned by the DHCP server.
- dhcp
Settings StringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns
Server1 String - DNS server 1.
- dns
Server2 String - DNS server 2.
- dns
Server3 String - DNS server 3.
- dns
Server4 String - DNS server 4.
- dns
Service String - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain String
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude
Ranges List<ServerExclude Range> - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename String
- Name of the boot file on the TFTP server.
- forticlient
On StringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid Integer
- ID.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip
Mode String - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip
Ranges List<ServerIp Range> - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec
Lease IntegerHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease
Time Integer - Lease time in seconds, 0 means unlimited.
- mac
Acl StringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - next
Server String - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp
Server1 String - NTP server 1.
- ntp
Server2 String - NTP server 2.
- ntp
Server3 String - NTP server 3.
- ntp
Service String - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options
List<Server
Option> - DHCP options. The structure of
options
block is documented below. - relay
Agent String - Relay agent IP.
- reserved
Addresses List<ServerReserved Address> - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server
Type String - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - String
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status String
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp
Servers List<ServerTftp Server> - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone String
- Select the time zone to be assigned to DHCP clients.
- timezone
Option String - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci
Strings List<ServerVci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi
Ac1 String - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi
Ac2 String - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi
Ac3 String - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi
Ac StringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins
Server1 String - WINS server 1.
- wins
Server2 String - WINS server 2.
- interface string
- DHCP server can assign IP configurations to clients connected to this interface.
- netmask string
- Netmask assigned by the DHCP server.
- auto
Configuration string - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto
Managed stringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted
Ip numberTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns
Auth string - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns
Key string - DDNS update key (base 64 encoding).
- ddns
Keyname string - DDNS update key name.
- ddns
Server stringIp - DDNS server IP.
- ddns
Ttl number - TTL.
- ddns
Update string - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns
Update stringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns
Zone string - Zone of your domain name (ex. DDNS.com).
- default
Gateway string - Default gateway IP address assigned by the DHCP server.
- dhcp
Settings stringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns
Server1 string - DNS server 1.
- dns
Server2 string - DNS server 2.
- dns
Server3 string - DNS server 3.
- dns
Server4 string - DNS server 4.
- dns
Service string - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain string
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude
Ranges ServerExclude Range[] - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename string
- Name of the boot file on the TFTP server.
- forticlient
On stringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid number
- ID.
- get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip
Mode string - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip
Ranges ServerIp Range[] - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec
Lease numberHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease
Time number - Lease time in seconds, 0 means unlimited.
- mac
Acl stringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - next
Server string - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp
Server1 string - NTP server 1.
- ntp
Server2 string - NTP server 2.
- ntp
Server3 string - NTP server 3.
- ntp
Service string - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options
Server
Option[] - DHCP options. The structure of
options
block is documented below. - relay
Agent string - Relay agent IP.
- reserved
Addresses ServerReserved Address[] - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server
Type string - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - string
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status string
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp
Servers ServerTftp Server[] - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone string
- Select the time zone to be assigned to DHCP clients.
- timezone
Option string - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci
Strings ServerVci String[] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi
Ac1 string - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi
Ac2 string - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi
Ac3 string - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi
Ac stringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins
Server1 string - WINS server 1.
- wins
Server2 string - WINS server 2.
- interface str
- DHCP server can assign IP configurations to clients connected to this interface.
- netmask str
- Netmask assigned by the DHCP server.
- auto_
configuration str - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto_
managed_ strstatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted_
ip_ inttimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns_
auth str - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns_
key str - DDNS update key (base 64 encoding).
- ddns_
keyname str - DDNS update key name.
- ddns_
server_ strip - DDNS server IP.
- ddns_
ttl int - TTL.
- ddns_
update str - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns_
update_ stroverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns_
zone str - Zone of your domain name (ex. DDNS.com).
- default_
gateway str - Default gateway IP address assigned by the DHCP server.
- dhcp_
settings_ strfrom_ fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns_
server1 str - DNS server 1.
- dns_
server2 str - DNS server 2.
- dns_
server3 str - DNS server 3.
- dns_
server4 str - DNS server 4.
- dns_
service str - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain str
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude_
ranges Sequence[ServerExclude Range Args] - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename str
- Name of the boot file on the TFTP server.
- forticlient_
on_ strnet_ status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid int
- ID.
- get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip_
mode str - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip_
ranges Sequence[ServerIp Range Args] - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec_
lease_ inthold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease_
time int - Lease time in seconds, 0 means unlimited.
- mac_
acl_ strdefault_ action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - next_
server str - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp_
server1 str - NTP server 1.
- ntp_
server2 str - NTP server 2.
- ntp_
server3 str - NTP server 3.
- ntp_
service str - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options
Sequence[Server
Option Args] - DHCP options. The structure of
options
block is documented below. - relay_
agent str - Relay agent IP.
- reserved_
addresses Sequence[ServerReserved Address Args] - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server_
type str - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - str
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status str
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp_
servers Sequence[ServerTftp Server Args] - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone str
- Select the time zone to be assigned to DHCP clients.
- timezone_
option str - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci_
match str - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci_
strings Sequence[ServerVci String Args] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi_
ac1 str - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi_
ac2 str - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi_
ac3 str - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi_
ac_ strservice - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins_
server1 str - WINS server 1.
- wins_
server2 str - WINS server 2.
- interface String
- DHCP server can assign IP configurations to clients connected to this interface.
- netmask String
- Netmask assigned by the DHCP server.
- auto
Configuration String - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto
Managed StringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted
Ip NumberTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns
Auth String - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns
Key String - DDNS update key (base 64 encoding).
- ddns
Keyname String - DDNS update key name.
- ddns
Server StringIp - DDNS server IP.
- ddns
Ttl Number - TTL.
- ddns
Update String - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns
Update StringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns
Zone String - Zone of your domain name (ex. DDNS.com).
- default
Gateway String - Default gateway IP address assigned by the DHCP server.
- dhcp
Settings StringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns
Server1 String - DNS server 1.
- dns
Server2 String - DNS server 2.
- dns
Server3 String - DNS server 3.
- dns
Server4 String - DNS server 4.
- dns
Service String - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain String
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude
Ranges List<Property Map> - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename String
- Name of the boot file on the TFTP server.
- forticlient
On StringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid Number
- ID.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip
Mode String - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip
Ranges List<Property Map> - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec
Lease NumberHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease
Time Number - Lease time in seconds, 0 means unlimited.
- mac
Acl StringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - next
Server String - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp
Server1 String - NTP server 1.
- ntp
Server2 String - NTP server 2.
- ntp
Server3 String - NTP server 3.
- ntp
Service String - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options List<Property Map>
- DHCP options. The structure of
options
block is documented below. - relay
Agent String - Relay agent IP.
- reserved
Addresses List<Property Map> - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server
Type String - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - String
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status String
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp
Servers List<Property Map> - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone String
- Select the time zone to be assigned to DHCP clients.
- timezone
Option String - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci
Strings List<Property Map> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi
Ac1 String - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi
Ac2 String - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi
Ac3 String - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi
Ac StringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins
Server1 String - WINS server 1.
- wins
Server2 String - WINS server 2.
Outputs
All input properties are implicitly available as output properties. Additionally, the Server resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Server Resource
Get an existing Server resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ServerState, opts?: CustomResourceOptions): Server
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_configuration: Optional[str] = None,
auto_managed_status: Optional[str] = None,
conflicted_ip_timeout: Optional[int] = None,
ddns_auth: Optional[str] = None,
ddns_key: Optional[str] = None,
ddns_keyname: Optional[str] = None,
ddns_server_ip: Optional[str] = None,
ddns_ttl: Optional[int] = None,
ddns_update: Optional[str] = None,
ddns_update_override: Optional[str] = None,
ddns_zone: Optional[str] = None,
default_gateway: Optional[str] = None,
dhcp_settings_from_fortiipam: Optional[str] = None,
dns_server1: Optional[str] = None,
dns_server2: Optional[str] = None,
dns_server3: Optional[str] = None,
dns_server4: Optional[str] = None,
dns_service: Optional[str] = None,
domain: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
exclude_ranges: Optional[Sequence[ServerExcludeRangeArgs]] = None,
filename: Optional[str] = None,
forticlient_on_net_status: Optional[str] = None,
fosid: Optional[int] = None,
get_all_tables: Optional[str] = None,
interface: Optional[str] = None,
ip_mode: Optional[str] = None,
ip_ranges: Optional[Sequence[ServerIpRangeArgs]] = None,
ipsec_lease_hold: Optional[int] = None,
lease_time: Optional[int] = None,
mac_acl_default_action: Optional[str] = None,
netmask: Optional[str] = None,
next_server: Optional[str] = None,
ntp_server1: Optional[str] = None,
ntp_server2: Optional[str] = None,
ntp_server3: Optional[str] = None,
ntp_service: Optional[str] = None,
options: Optional[Sequence[ServerOptionArgs]] = None,
relay_agent: Optional[str] = None,
reserved_addresses: Optional[Sequence[ServerReservedAddressArgs]] = None,
server_type: Optional[str] = None,
shared_subnet: Optional[str] = None,
status: Optional[str] = None,
tftp_servers: Optional[Sequence[ServerTftpServerArgs]] = None,
timezone: Optional[str] = None,
timezone_option: Optional[str] = None,
vci_match: Optional[str] = None,
vci_strings: Optional[Sequence[ServerVciStringArgs]] = None,
vdomparam: Optional[str] = None,
wifi_ac1: Optional[str] = None,
wifi_ac2: Optional[str] = None,
wifi_ac3: Optional[str] = None,
wifi_ac_service: Optional[str] = None,
wins_server1: Optional[str] = None,
wins_server2: Optional[str] = None) -> Server
func GetServer(ctx *Context, name string, id IDInput, state *ServerState, opts ...ResourceOption) (*Server, error)
public static Server Get(string name, Input<string> id, ServerState? state, CustomResourceOptions? opts = null)
public static Server get(String name, Output<String> id, ServerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Auto
Configuration string - Enable/disable auto configuration. Valid values:
disable
,enable
. - Auto
Managed stringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - Conflicted
Ip intTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- Ddns
Auth string - DDNS authentication mode. Valid values:
disable
,tsig
. - Ddns
Key string - DDNS update key (base 64 encoding).
- Ddns
Keyname string - DDNS update key name.
- Ddns
Server stringIp - DDNS server IP.
- Ddns
Ttl int - TTL.
- Ddns
Update string - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - Ddns
Update stringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - Ddns
Zone string - Zone of your domain name (ex. DDNS.com).
- Default
Gateway string - Default gateway IP address assigned by the DHCP server.
- Dhcp
Settings stringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - Dns
Server1 string - DNS server 1.
- Dns
Server2 string - DNS server 2.
- Dns
Server3 string - DNS server 3.
- Dns
Server4 string - DNS server 4.
- Dns
Service string - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - Domain string
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Exclude
Ranges List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Exclude Range> - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - Filename string
- Name of the boot file on the TFTP server.
- Forticlient
On stringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - Fosid int
- ID.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interface string
- DHCP server can assign IP configurations to clients connected to this interface.
- Ip
Mode string - Method used to assign client IP. Valid values:
range
,usrgrp
. - Ip
Ranges List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Ip Range> - DHCP IP range configuration. The structure of
ip_range
block is documented below. - Ipsec
Lease intHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- Lease
Time int - Lease time in seconds, 0 means unlimited.
- Mac
Acl stringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - Netmask string
- Netmask assigned by the DHCP server.
- Next
Server string - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- Ntp
Server1 string - NTP server 1.
- Ntp
Server2 string - NTP server 2.
- Ntp
Server3 string - NTP server 3.
- Ntp
Service string - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - Options
List<Pulumiverse.
Fortios. System. Dhcp. Inputs. Server Option> - DHCP options. The structure of
options
block is documented below. - Relay
Agent string - Relay agent IP.
- Reserved
Addresses List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Reserved Address> - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - Server
Type string - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - string
- Enable/disable shared subnet. Valid values:
disable
,enable
. - Status string
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - Tftp
Servers List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Tftp Server> - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - Timezone string
- Select the time zone to be assigned to DHCP clients.
- Timezone
Option string - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - Vci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Wifi
Ac1 string - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac2 string - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac3 string - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac stringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - Wins
Server1 string - WINS server 1.
- Wins
Server2 string - WINS server 2.
- Auto
Configuration string - Enable/disable auto configuration. Valid values:
disable
,enable
. - Auto
Managed stringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - Conflicted
Ip intTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- Ddns
Auth string - DDNS authentication mode. Valid values:
disable
,tsig
. - Ddns
Key string - DDNS update key (base 64 encoding).
- Ddns
Keyname string - DDNS update key name.
- Ddns
Server stringIp - DDNS server IP.
- Ddns
Ttl int - TTL.
- Ddns
Update string - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - Ddns
Update stringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - Ddns
Zone string - Zone of your domain name (ex. DDNS.com).
- Default
Gateway string - Default gateway IP address assigned by the DHCP server.
- Dhcp
Settings stringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - Dns
Server1 string - DNS server 1.
- Dns
Server2 string - DNS server 2.
- Dns
Server3 string - DNS server 3.
- Dns
Server4 string - DNS server 4.
- Dns
Service string - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - Domain string
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Exclude
Ranges []ServerExclude Range Args - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - Filename string
- Name of the boot file on the TFTP server.
- Forticlient
On stringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - Fosid int
- ID.
- Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Interface string
- DHCP server can assign IP configurations to clients connected to this interface.
- Ip
Mode string - Method used to assign client IP. Valid values:
range
,usrgrp
. - Ip
Ranges []ServerIp Range Args - DHCP IP range configuration. The structure of
ip_range
block is documented below. - Ipsec
Lease intHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- Lease
Time int - Lease time in seconds, 0 means unlimited.
- Mac
Acl stringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - Netmask string
- Netmask assigned by the DHCP server.
- Next
Server string - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- Ntp
Server1 string - NTP server 1.
- Ntp
Server2 string - NTP server 2.
- Ntp
Server3 string - NTP server 3.
- Ntp
Service string - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - Options
[]Server
Option Args - DHCP options. The structure of
options
block is documented below. - Relay
Agent string - Relay agent IP.
- Reserved
Addresses []ServerReserved Address Args - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - Server
Type string - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - string
- Enable/disable shared subnet. Valid values:
disable
,enable
. - Status string
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - Tftp
Servers []ServerTftp Server Args - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - Timezone string
- Select the time zone to be assigned to DHCP clients.
- Timezone
Option string - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - Vci
Strings []ServerVci String Args - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Wifi
Ac1 string - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac2 string - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac3 string - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- Wifi
Ac stringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - Wins
Server1 string - WINS server 1.
- Wins
Server2 string - WINS server 2.
- auto
Configuration String - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto
Managed StringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted
Ip IntegerTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns
Auth String - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns
Key String - DDNS update key (base 64 encoding).
- ddns
Keyname String - DDNS update key name.
- ddns
Server StringIp - DDNS server IP.
- ddns
Ttl Integer - TTL.
- ddns
Update String - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns
Update StringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns
Zone String - Zone of your domain name (ex. DDNS.com).
- default
Gateway String - Default gateway IP address assigned by the DHCP server.
- dhcp
Settings StringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns
Server1 String - DNS server 1.
- dns
Server2 String - DNS server 2.
- dns
Server3 String - DNS server 3.
- dns
Server4 String - DNS server 4.
- dns
Service String - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain String
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude
Ranges List<ServerExclude Range> - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename String
- Name of the boot file on the TFTP server.
- forticlient
On StringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid Integer
- ID.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interface_ String
- DHCP server can assign IP configurations to clients connected to this interface.
- ip
Mode String - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip
Ranges List<ServerIp Range> - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec
Lease IntegerHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease
Time Integer - Lease time in seconds, 0 means unlimited.
- mac
Acl StringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - netmask String
- Netmask assigned by the DHCP server.
- next
Server String - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp
Server1 String - NTP server 1.
- ntp
Server2 String - NTP server 2.
- ntp
Server3 String - NTP server 3.
- ntp
Service String - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options
List<Server
Option> - DHCP options. The structure of
options
block is documented below. - relay
Agent String - Relay agent IP.
- reserved
Addresses List<ServerReserved Address> - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server
Type String - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - String
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status String
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp
Servers List<ServerTftp Server> - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone String
- Select the time zone to be assigned to DHCP clients.
- timezone
Option String - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci
Strings List<ServerVci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi
Ac1 String - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi
Ac2 String - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi
Ac3 String - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi
Ac StringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins
Server1 String - WINS server 1.
- wins
Server2 String - WINS server 2.
- auto
Configuration string - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto
Managed stringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted
Ip numberTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns
Auth string - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns
Key string - DDNS update key (base 64 encoding).
- ddns
Keyname string - DDNS update key name.
- ddns
Server stringIp - DDNS server IP.
- ddns
Ttl number - TTL.
- ddns
Update string - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns
Update stringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns
Zone string - Zone of your domain name (ex. DDNS.com).
- default
Gateway string - Default gateway IP address assigned by the DHCP server.
- dhcp
Settings stringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns
Server1 string - DNS server 1.
- dns
Server2 string - DNS server 2.
- dns
Server3 string - DNS server 3.
- dns
Server4 string - DNS server 4.
- dns
Service string - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain string
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude
Ranges ServerExclude Range[] - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename string
- Name of the boot file on the TFTP server.
- forticlient
On stringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid number
- ID.
- get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interface string
- DHCP server can assign IP configurations to clients connected to this interface.
- ip
Mode string - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip
Ranges ServerIp Range[] - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec
Lease numberHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease
Time number - Lease time in seconds, 0 means unlimited.
- mac
Acl stringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - netmask string
- Netmask assigned by the DHCP server.
- next
Server string - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp
Server1 string - NTP server 1.
- ntp
Server2 string - NTP server 2.
- ntp
Server3 string - NTP server 3.
- ntp
Service string - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options
Server
Option[] - DHCP options. The structure of
options
block is documented below. - relay
Agent string - Relay agent IP.
- reserved
Addresses ServerReserved Address[] - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server
Type string - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - string
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status string
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp
Servers ServerTftp Server[] - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone string
- Select the time zone to be assigned to DHCP clients.
- timezone
Option string - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci
Strings ServerVci String[] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi
Ac1 string - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi
Ac2 string - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi
Ac3 string - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi
Ac stringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins
Server1 string - WINS server 1.
- wins
Server2 string - WINS server 2.
- auto_
configuration str - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto_
managed_ strstatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted_
ip_ inttimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns_
auth str - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns_
key str - DDNS update key (base 64 encoding).
- ddns_
keyname str - DDNS update key name.
- ddns_
server_ strip - DDNS server IP.
- ddns_
ttl int - TTL.
- ddns_
update str - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns_
update_ stroverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns_
zone str - Zone of your domain name (ex. DDNS.com).
- default_
gateway str - Default gateway IP address assigned by the DHCP server.
- dhcp_
settings_ strfrom_ fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns_
server1 str - DNS server 1.
- dns_
server2 str - DNS server 2.
- dns_
server3 str - DNS server 3.
- dns_
server4 str - DNS server 4.
- dns_
service str - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain str
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude_
ranges Sequence[ServerExclude Range Args] - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename str
- Name of the boot file on the TFTP server.
- forticlient_
on_ strnet_ status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid int
- ID.
- get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interface str
- DHCP server can assign IP configurations to clients connected to this interface.
- ip_
mode str - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip_
ranges Sequence[ServerIp Range Args] - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec_
lease_ inthold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease_
time int - Lease time in seconds, 0 means unlimited.
- mac_
acl_ strdefault_ action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - netmask str
- Netmask assigned by the DHCP server.
- next_
server str - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp_
server1 str - NTP server 1.
- ntp_
server2 str - NTP server 2.
- ntp_
server3 str - NTP server 3.
- ntp_
service str - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options
Sequence[Server
Option Args] - DHCP options. The structure of
options
block is documented below. - relay_
agent str - Relay agent IP.
- reserved_
addresses Sequence[ServerReserved Address Args] - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server_
type str - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - str
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status str
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp_
servers Sequence[ServerTftp Server Args] - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone str
- Select the time zone to be assigned to DHCP clients.
- timezone_
option str - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci_
match str - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci_
strings Sequence[ServerVci String Args] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi_
ac1 str - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi_
ac2 str - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi_
ac3 str - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi_
ac_ strservice - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins_
server1 str - WINS server 1.
- wins_
server2 str - WINS server 2.
- auto
Configuration String - Enable/disable auto configuration. Valid values:
disable
,enable
. - auto
Managed StringStatus - Enable/disable use of this DHCP server once this interface has been assigned an IP address from FortiIPAM. Valid values:
disable
,enable
. - conflicted
Ip NumberTimeout - Time in seconds to wait after a conflicted IP address is removed from the DHCP range before it can be reused.
- ddns
Auth String - DDNS authentication mode. Valid values:
disable
,tsig
. - ddns
Key String - DDNS update key (base 64 encoding).
- ddns
Keyname String - DDNS update key name.
- ddns
Server StringIp - DDNS server IP.
- ddns
Ttl Number - TTL.
- ddns
Update String - Enable/disable DDNS update for DHCP. Valid values:
disable
,enable
. - ddns
Update StringOverride - Enable/disable DDNS update override for DHCP. Valid values:
disable
,enable
. - ddns
Zone String - Zone of your domain name (ex. DDNS.com).
- default
Gateway String - Default gateway IP address assigned by the DHCP server.
- dhcp
Settings StringFrom Fortiipam - Enable/disable populating of DHCP server settings from FortiIPAM. Valid values:
disable
,enable
. - dns
Server1 String - DNS server 1.
- dns
Server2 String - DNS server 2.
- dns
Server3 String - DNS server 3.
- dns
Server4 String - DNS server 4.
- dns
Service String - Options for assigning DNS servers to DHCP clients. Valid values:
local
,default
,specify
. - domain String
- Domain name suffix for the IP addresses that the DHCP server assigns to clients.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- exclude
Ranges List<Property Map> - Exclude one or more ranges of IP addresses from being assigned to clients. The structure of
exclude_range
block is documented below. - filename String
- Name of the boot file on the TFTP server.
- forticlient
On StringNet Status - Enable/disable FortiClient-On-Net service for this DHCP server. Valid values:
disable
,enable
. - fosid Number
- ID.
- get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- interface String
- DHCP server can assign IP configurations to clients connected to this interface.
- ip
Mode String - Method used to assign client IP. Valid values:
range
,usrgrp
. - ip
Ranges List<Property Map> - DHCP IP range configuration. The structure of
ip_range
block is documented below. - ipsec
Lease NumberHold - DHCP over IPsec leases expire this many seconds after tunnel down (0 to disable forced-expiry).
- lease
Time Number - Lease time in seconds, 0 means unlimited.
- mac
Acl StringDefault Action - MAC access control default action (allow or block assigning IP settings). Valid values:
assign
,block
. - netmask String
- Netmask assigned by the DHCP server.
- next
Server String - IP address of a server (for example, a TFTP sever) that DHCP clients can download a boot file from.
- ntp
Server1 String - NTP server 1.
- ntp
Server2 String - NTP server 2.
- ntp
Server3 String - NTP server 3.
- ntp
Service String - Options for assigning Network Time Protocol (NTP) servers to DHCP clients. Valid values:
local
,default
,specify
. - options List<Property Map>
- DHCP options. The structure of
options
block is documented below. - relay
Agent String - Relay agent IP.
- reserved
Addresses List<Property Map> - Options for the DHCP server to assign IP settings to specific MAC addresses. The structure of
reserved_address
block is documented below. - server
Type String - DHCP server can be a normal DHCP server or an IPsec DHCP server. Valid values:
regular
,ipsec
. - String
- Enable/disable shared subnet. Valid values:
disable
,enable
. - status String
- Enable/disable this DHCP configuration. Valid values:
disable
,enable
. - tftp
Servers List<Property Map> - One or more hostnames or IP addresses of the TFTP servers in quotes separated by spaces. The structure of
tftp_server
block is documented below. - timezone String
- Select the time zone to be assigned to DHCP clients.
- timezone
Option String - Options for the DHCP server to set the client's time zone. Valid values:
disable
,default
,specify
. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served. Valid values:
disable
,enable
. - vci
Strings List<Property Map> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- wifi
Ac1 String - WiFi Access Controller 1 IP address (DHCP option 138, RFC 5417).
- wifi
Ac2 String - WiFi Access Controller 2 IP address (DHCP option 138, RFC 5417).
- wifi
Ac3 String - WiFi Access Controller 3 IP address (DHCP option 138, RFC 5417).
- wifi
Ac StringService - Options for assigning WiFi Access Controllers to DHCP clients Valid values:
specify
,local
. - wins
Server1 String - WINS server 1.
- wins
Server2 String - WINS server 2.
Supporting Types
ServerExcludeRange, ServerExcludeRangeArgs
- End
Ip string - End of IP range.
- Id int
- ID.
- Lease
Time int - Lease time in seconds, 0 means default lease time.
- Start
Ip string - Start of IP range.
- Uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - Uci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Exclude Range Uci String> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - Vci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Exclude Range Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- End
Ip string - End of IP range.
- Id int
- ID.
- Lease
Time int - Lease time in seconds, 0 means default lease time.
- Start
Ip string - Start of IP range.
- Uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - Uci
Strings []ServerExclude Range Uci String - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - Vci
Strings []ServerExclude Range Vci String - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end
Ip String - End of IP range.
- id Integer
- ID.
- lease
Time Integer - Lease time in seconds, 0 means default lease time.
- start
Ip String - Start of IP range.
- uci
Match String - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci
Strings List<ServerExclude Range Uci String> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci
Strings List<ServerExclude Range Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end
Ip string - End of IP range.
- id number
- ID.
- lease
Time number - Lease time in seconds, 0 means default lease time.
- start
Ip string - Start of IP range.
- uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci
Strings ServerExclude Range Uci String[] - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci
Strings ServerExclude Range Vci String[] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end_
ip str - End of IP range.
- id int
- ID.
- lease_
time int - Lease time in seconds, 0 means default lease time.
- start_
ip str - Start of IP range.
- uci_
match str - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci_
strings Sequence[ServerExclude Range Uci String] - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci_
match str - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci_
strings Sequence[ServerExclude Range Vci String] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end
Ip String - End of IP range.
- id Number
- ID.
- lease
Time Number - Lease time in seconds, 0 means default lease time.
- start
Ip String - Start of IP range.
- uci
Match String - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci
Strings List<Property Map> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci
Strings List<Property Map> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
ServerExcludeRangeUciString, ServerExcludeRangeUciStringArgs
- Uci
String string - UCI strings.
- Uci
String string - UCI strings.
- uci
String String - UCI strings.
- uci
String string - UCI strings.
- uci_
string str - UCI strings.
- uci
String String - UCI strings.
ServerExcludeRangeVciString, ServerExcludeRangeVciStringArgs
- Vci
String string - VCI strings.
- Vci
String string - VCI strings.
- vci
String String - VCI strings.
- vci
String string - VCI strings.
- vci_
string str - VCI strings.
- vci
String String - VCI strings.
ServerIpRange, ServerIpRangeArgs
- End
Ip string - End of IP range.
- Id int
- ID.
- Lease
Time int - Lease time in seconds, 0 means default lease time.
- Start
Ip string - Start of IP range.
- Uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - Uci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Ip Range Uci String> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - Vci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Ip Range Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- End
Ip string - End of IP range.
- Id int
- ID.
- Lease
Time int - Lease time in seconds, 0 means default lease time.
- Start
Ip string - Start of IP range.
- Uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - Uci
Strings []ServerIp Range Uci String - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - Vci
Strings []ServerIp Range Vci String - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end
Ip String - End of IP range.
- id Integer
- ID.
- lease
Time Integer - Lease time in seconds, 0 means default lease time.
- start
Ip String - Start of IP range.
- uci
Match String - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci
Strings List<ServerIp Range Uci String> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci
Strings List<ServerIp Range Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end
Ip string - End of IP range.
- id number
- ID.
- lease
Time number - Lease time in seconds, 0 means default lease time.
- start
Ip string - Start of IP range.
- uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci
Strings ServerIp Range Uci String[] - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci
Strings ServerIp Range Vci String[] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end_
ip str - End of IP range.
- id int
- ID.
- lease_
time int - Lease time in seconds, 0 means default lease time.
- start_
ip str - Start of IP range.
- uci_
match str - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci_
strings Sequence[ServerIp Range Uci String] - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci_
match str - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci_
strings Sequence[ServerIp Range Vci String] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- end
Ip String - End of IP range.
- id Number
- ID.
- lease
Time Number - Lease time in seconds, 0 means default lease time.
- start
Ip String - Start of IP range.
- uci
Match String - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this range. Valid values:
disable
,enable
. - uci
Strings List<Property Map> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this range. Valid values:
disable
,enable
. - vci
Strings List<Property Map> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
ServerIpRangeUciString, ServerIpRangeUciStringArgs
- Uci
String string - UCI strings.
- Uci
String string - UCI strings.
- uci
String String - UCI strings.
- uci
String string - UCI strings.
- uci_
string str - UCI strings.
- uci
String String - UCI strings.
ServerIpRangeVciString, ServerIpRangeVciStringArgs
- Vci
String string - VCI strings.
- Vci
String string - VCI strings.
- vci
String String - VCI strings.
- vci
String string - VCI strings.
- vci_
string str - VCI strings.
- vci
String String - VCI strings.
ServerOption, ServerOptionArgs
- Code int
- DHCP option code.
- Id int
- ID.
- Ip string
- DHCP option IPs.
- Type string
- DHCP option type. Valid values:
hex
,string
,ip
,fqdn
. - Uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this option. Valid values:
disable
,enable
. - Uci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Option Uci String> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - Value string
- DHCP option value.
- Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this option. Valid values:
disable
,enable
. - Vci
Strings List<Pulumiverse.Fortios. System. Dhcp. Inputs. Server Option Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- Code int
- DHCP option code.
- Id int
- ID.
- Ip string
- DHCP option IPs.
- Type string
- DHCP option type. Valid values:
hex
,string
,ip
,fqdn
. - Uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this option. Valid values:
disable
,enable
. - Uci
Strings []ServerOption Uci String - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - Value string
- DHCP option value.
- Vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this option. Valid values:
disable
,enable
. - Vci
Strings []ServerOption Vci String - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- code Integer
- DHCP option code.
- id Integer
- ID.
- ip String
- DHCP option IPs.
- type String
- DHCP option type. Valid values:
hex
,string
,ip
,fqdn
. - uci
Match String - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this option. Valid values:
disable
,enable
. - uci
Strings List<ServerOption Uci String> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - value String
- DHCP option value.
- vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this option. Valid values:
disable
,enable
. - vci
Strings List<ServerOption Vci String> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- code number
- DHCP option code.
- id number
- ID.
- ip string
- DHCP option IPs.
- type string
- DHCP option type. Valid values:
hex
,string
,ip
,fqdn
. - uci
Match string - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this option. Valid values:
disable
,enable
. - uci
Strings ServerOption Uci String[] - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - value string
- DHCP option value.
- vci
Match string - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this option. Valid values:
disable
,enable
. - vci
Strings ServerOption Vci String[] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- code int
- DHCP option code.
- id int
- ID.
- ip str
- DHCP option IPs.
- type str
- DHCP option type. Valid values:
hex
,string
,ip
,fqdn
. - uci_
match str - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this option. Valid values:
disable
,enable
. - uci_
strings Sequence[ServerOption Uci String] - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - value str
- DHCP option value.
- vci_
match str - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this option. Valid values:
disable
,enable
. - vci_
strings Sequence[ServerOption Vci String] - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
- code Number
- DHCP option code.
- id Number
- ID.
- ip String
- DHCP option IPs.
- type String
- DHCP option type. Valid values:
hex
,string
,ip
,fqdn
. - uci
Match String - Enable/disable user class identifier (UCI) matching. When enabled only DHCP requests with a matching UCI are served with this option. Valid values:
disable
,enable
. - uci
Strings List<Property Map> - One or more UCI strings in quotes separated by spaces. The structure of
uci_string
block is documented below. - value String
- DHCP option value.
- vci
Match String - Enable/disable vendor class identifier (VCI) matching. When enabled only DHCP requests with a matching VCI are served with this option. Valid values:
disable
,enable
. - vci
Strings List<Property Map> - One or more VCI strings in quotes separated by spaces. The structure of
vci_string
block is documented below.
ServerOptionUciString, ServerOptionUciStringArgs
- Uci
String string - UCI strings.
- Uci
String string - UCI strings.
- uci
String String - UCI strings.
- uci
String string - UCI strings.
- uci_
string str - UCI strings.
- uci
String String - UCI strings.
ServerOptionVciString, ServerOptionVciStringArgs
- Vci
String string - VCI strings.
- Vci
String string - VCI strings.
- vci
String String - VCI strings.
- vci
String string - VCI strings.
- vci_
string str - VCI strings.
- vci
String String - VCI strings.
ServerReservedAddress, ServerReservedAddressArgs
- Action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - Circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- Circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - Description string
- Description.
- Id int
- ID.
- Ip string
- IP address to be reserved for the MAC address.
- Mac string
- MAC address of the client that will get the reserved IP address.
- Remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- Remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - Type string
- DHCP reserved-address type. Valid values:
mac
,option82
.
- Action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - Circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- Circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - Description string
- Description.
- Id int
- ID.
- Ip string
- IP address to be reserved for the MAC address.
- Mac string
- MAC address of the client that will get the reserved IP address.
- Remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- Remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - Type string
- DHCP reserved-address type. Valid values:
mac
,option82
.
- action String
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - circuit
Id String - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id StringType - DHCP option type. Valid values:
hex
,string
. - description String
- Description.
- id Integer
- ID.
- ip String
- IP address to be reserved for the MAC address.
- mac String
- MAC address of the client that will get the reserved IP address.
- remote
Id String - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id StringType - DHCP option type. Valid values:
hex
,string
. - type String
- DHCP reserved-address type. Valid values:
mac
,option82
.
- action string
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - circuit
Id string - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id stringType - DHCP option type. Valid values:
hex
,string
. - description string
- Description.
- id number
- ID.
- ip string
- IP address to be reserved for the MAC address.
- mac string
- MAC address of the client that will get the reserved IP address.
- remote
Id string - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id stringType - DHCP option type. Valid values:
hex
,string
. - type string
- DHCP reserved-address type. Valid values:
mac
,option82
.
- action str
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - circuit_
id str - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit_
id_ strtype - DHCP option type. Valid values:
hex
,string
. - description str
- Description.
- id int
- ID.
- ip str
- IP address to be reserved for the MAC address.
- mac str
- MAC address of the client that will get the reserved IP address.
- remote_
id str - Option 82 remote-ID of the client that will get the reserved IP address.
- remote_
id_ strtype - DHCP option type. Valid values:
hex
,string
. - type str
- DHCP reserved-address type. Valid values:
mac
,option82
.
- action String
- Options for the DHCP server to configure the client with the reserved MAC address. Valid values:
assign
,block
,reserved
. - circuit
Id String - Option 82 circuit-ID of the client that will get the reserved IP address.
- circuit
Id StringType - DHCP option type. Valid values:
hex
,string
. - description String
- Description.
- id Number
- ID.
- ip String
- IP address to be reserved for the MAC address.
- mac String
- MAC address of the client that will get the reserved IP address.
- remote
Id String - Option 82 remote-ID of the client that will get the reserved IP address.
- remote
Id StringType - DHCP option type. Valid values:
hex
,string
. - type String
- DHCP reserved-address type. Valid values:
mac
,option82
.
ServerTftpServer, ServerTftpServerArgs
- Tftp
Server string - TFTP server.
- Tftp
Server string - TFTP server.
- tftp
Server String - TFTP server.
- tftp
Server string - TFTP server.
- tftp_
server str - TFTP server.
- tftp
Server String - TFTP server.
ServerVciString, ServerVciStringArgs
- Vci
String string - VCI strings.
- Vci
String string - VCI strings.
- vci
String String - VCI strings.
- vci
String string - VCI strings.
- vci_
string str - VCI strings.
- vci
String String - VCI strings.
Import
SystemDhcp Server can be imported using any of these accepted formats:
$ pulumi import fortios:system/dhcp/server:Server labelname {{fosid}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:system/dhcp/server:Server labelname {{fosid}}
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.