1. Packages
  2. Fortios
  3. API Docs
  4. system
  5. Pppoeinterface
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.system.Pppoeinterface

Explore with Pulumi AI

Configure the PPPoE interfaces.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";

const trname = new fortios.system.Pppoeinterface("trname", {
    authType: "auto",
    device: "port3",
    dialOnDemand: "disable",
    discRetryTimeout: 1,
    idleTimeout: 0,
    ipunnumbered: "0.0.0.0",
    ipv6: "disable",
    lcpEchoInterval: 5,
    lcpMaxEchoFails: 3,
    padtRetryTimeout: 1,
    pppoeUnnumberedNegotiate: "enable",
});
Copy
import pulumi
import pulumiverse_fortios as fortios

trname = fortios.system.Pppoeinterface("trname",
    auth_type="auto",
    device="port3",
    dial_on_demand="disable",
    disc_retry_timeout=1,
    idle_timeout=0,
    ipunnumbered="0.0.0.0",
    ipv6="disable",
    lcp_echo_interval=5,
    lcp_max_echo_fails=3,
    padt_retry_timeout=1,
    pppoe_unnumbered_negotiate="enable")
Copy
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.NewPppoeinterface(ctx, "trname", &system.PppoeinterfaceArgs{
			AuthType:                 pulumi.String("auto"),
			Device:                   pulumi.String("port3"),
			DialOnDemand:             pulumi.String("disable"),
			DiscRetryTimeout:         pulumi.Int(1),
			IdleTimeout:              pulumi.Int(0),
			Ipunnumbered:             pulumi.String("0.0.0.0"),
			Ipv6:                     pulumi.String("disable"),
			LcpEchoInterval:          pulumi.Int(5),
			LcpMaxEchoFails:          pulumi.Int(3),
			PadtRetryTimeout:         pulumi.Int(1),
			PppoeUnnumberedNegotiate: pulumi.String("enable"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortios.System.Pppoeinterface("trname", new()
    {
        AuthType = "auto",
        Device = "port3",
        DialOnDemand = "disable",
        DiscRetryTimeout = 1,
        IdleTimeout = 0,
        Ipunnumbered = "0.0.0.0",
        Ipv6 = "disable",
        LcpEchoInterval = 5,
        LcpMaxEchoFails = 3,
        PadtRetryTimeout = 1,
        PppoeUnnumberedNegotiate = "enable",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.system.Pppoeinterface;
import com.pulumi.fortios.system.PppoeinterfaceArgs;
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 Pppoeinterface("trname", PppoeinterfaceArgs.builder()
            .authType("auto")
            .device("port3")
            .dialOnDemand("disable")
            .discRetryTimeout(1)
            .idleTimeout(0)
            .ipunnumbered("0.0.0.0")
            .ipv6("disable")
            .lcpEchoInterval(5)
            .lcpMaxEchoFails(3)
            .padtRetryTimeout(1)
            .pppoeUnnumberedNegotiate("enable")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortios:system:Pppoeinterface
    properties:
      authType: auto
      device: port3
      dialOnDemand: disable
      discRetryTimeout: 1
      idleTimeout: 0
      ipunnumbered: 0.0.0.0
      ipv6: disable
      lcpEchoInterval: 5
      lcpMaxEchoFails: 3
      padtRetryTimeout: 1
      pppoeUnnumberedNegotiate: enable
Copy

Create Pppoeinterface Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Pppoeinterface(name: string, args: PppoeinterfaceArgs, opts?: CustomResourceOptions);
@overload
def Pppoeinterface(resource_name: str,
                   args: PppoeinterfaceArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def Pppoeinterface(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   device: Optional[str] = None,
                   lcp_echo_interval: Optional[int] = None,
                   name: Optional[str] = None,
                   dial_on_demand: Optional[str] = None,
                   disc_retry_timeout: Optional[int] = None,
                   idle_timeout: Optional[int] = None,
                   ipunnumbered: Optional[str] = None,
                   auth_type: Optional[str] = None,
                   ipv6: Optional[str] = None,
                   lcp_max_echo_fails: Optional[int] = None,
                   ac_name: Optional[str] = None,
                   padt_retry_timeout: Optional[int] = None,
                   password: Optional[str] = None,
                   pppoe_unnumbered_negotiate: Optional[str] = None,
                   service_name: Optional[str] = None,
                   username: Optional[str] = None,
                   vdomparam: Optional[str] = None)
func NewPppoeinterface(ctx *Context, name string, args PppoeinterfaceArgs, opts ...ResourceOption) (*Pppoeinterface, error)
public Pppoeinterface(string name, PppoeinterfaceArgs args, CustomResourceOptions? opts = null)
public Pppoeinterface(String name, PppoeinterfaceArgs args)
public Pppoeinterface(String name, PppoeinterfaceArgs args, CustomResourceOptions options)
type: fortios:system:Pppoeinterface
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PppoeinterfaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PppoeinterfaceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PppoeinterfaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PppoeinterfaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PppoeinterfaceArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var pppoeinterfaceResource = new Fortios.System.Pppoeinterface("pppoeinterfaceResource", new()
{
    Device = "string",
    LcpEchoInterval = 0,
    Name = "string",
    DialOnDemand = "string",
    DiscRetryTimeout = 0,
    IdleTimeout = 0,
    Ipunnumbered = "string",
    AuthType = "string",
    Ipv6 = "string",
    LcpMaxEchoFails = 0,
    AcName = "string",
    PadtRetryTimeout = 0,
    Password = "string",
    PppoeUnnumberedNegotiate = "string",
    ServiceName = "string",
    Username = "string",
    Vdomparam = "string",
});
Copy
example, err := system.NewPppoeinterface(ctx, "pppoeinterfaceResource", &system.PppoeinterfaceArgs{
	Device:                   pulumi.String("string"),
	LcpEchoInterval:          pulumi.Int(0),
	Name:                     pulumi.String("string"),
	DialOnDemand:             pulumi.String("string"),
	DiscRetryTimeout:         pulumi.Int(0),
	IdleTimeout:              pulumi.Int(0),
	Ipunnumbered:             pulumi.String("string"),
	AuthType:                 pulumi.String("string"),
	Ipv6:                     pulumi.String("string"),
	LcpMaxEchoFails:          pulumi.Int(0),
	AcName:                   pulumi.String("string"),
	PadtRetryTimeout:         pulumi.Int(0),
	Password:                 pulumi.String("string"),
	PppoeUnnumberedNegotiate: pulumi.String("string"),
	ServiceName:              pulumi.String("string"),
	Username:                 pulumi.String("string"),
	Vdomparam:                pulumi.String("string"),
})
Copy
var pppoeinterfaceResource = new Pppoeinterface("pppoeinterfaceResource", PppoeinterfaceArgs.builder()
    .device("string")
    .lcpEchoInterval(0)
    .name("string")
    .dialOnDemand("string")
    .discRetryTimeout(0)
    .idleTimeout(0)
    .ipunnumbered("string")
    .authType("string")
    .ipv6("string")
    .lcpMaxEchoFails(0)
    .acName("string")
    .padtRetryTimeout(0)
    .password("string")
    .pppoeUnnumberedNegotiate("string")
    .serviceName("string")
    .username("string")
    .vdomparam("string")
    .build());
Copy
pppoeinterface_resource = fortios.system.Pppoeinterface("pppoeinterfaceResource",
    device="string",
    lcp_echo_interval=0,
    name="string",
    dial_on_demand="string",
    disc_retry_timeout=0,
    idle_timeout=0,
    ipunnumbered="string",
    auth_type="string",
    ipv6="string",
    lcp_max_echo_fails=0,
    ac_name="string",
    padt_retry_timeout=0,
    password="string",
    pppoe_unnumbered_negotiate="string",
    service_name="string",
    username="string",
    vdomparam="string")
Copy
const pppoeinterfaceResource = new fortios.system.Pppoeinterface("pppoeinterfaceResource", {
    device: "string",
    lcpEchoInterval: 0,
    name: "string",
    dialOnDemand: "string",
    discRetryTimeout: 0,
    idleTimeout: 0,
    ipunnumbered: "string",
    authType: "string",
    ipv6: "string",
    lcpMaxEchoFails: 0,
    acName: "string",
    padtRetryTimeout: 0,
    password: "string",
    pppoeUnnumberedNegotiate: "string",
    serviceName: "string",
    username: "string",
    vdomparam: "string",
});
Copy
type: fortios:system:Pppoeinterface
properties:
    acName: string
    authType: string
    device: string
    dialOnDemand: string
    discRetryTimeout: 0
    idleTimeout: 0
    ipunnumbered: string
    ipv6: string
    lcpEchoInterval: 0
    lcpMaxEchoFails: 0
    name: string
    padtRetryTimeout: 0
    password: string
    pppoeUnnumberedNegotiate: string
    serviceName: string
    username: string
    vdomparam: string
Copy

Pppoeinterface Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Pppoeinterface resource accepts the following input properties:

Device This property is required. string
Name for the physical interface.
AcName string
PPPoE AC name.
AuthType string
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
DialOnDemand string
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
DiscRetryTimeout int
PPPoE discovery init timeout value in (0-4294967295 sec).
IdleTimeout int
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
Ipunnumbered string
PPPoE unnumbered IP.
Ipv6 string
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
LcpEchoInterval int
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
LcpMaxEchoFails int
Maximum missed LCP echo messages before disconnect.
Name Changes to this property will trigger replacement. string
Name of the PPPoE interface.
PadtRetryTimeout int
PPPoE terminate timeout value in (0-4294967295 sec).
Password string
Enter the password.
PppoeUnnumberedNegotiate string
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
ServiceName string
PPPoE service name.
Username string
User name.
Vdomparam Changes to this property will trigger replacement. 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.
Device This property is required. string
Name for the physical interface.
AcName string
PPPoE AC name.
AuthType string
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
DialOnDemand string
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
DiscRetryTimeout int
PPPoE discovery init timeout value in (0-4294967295 sec).
IdleTimeout int
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
Ipunnumbered string
PPPoE unnumbered IP.
Ipv6 string
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
LcpEchoInterval int
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
LcpMaxEchoFails int
Maximum missed LCP echo messages before disconnect.
Name Changes to this property will trigger replacement. string
Name of the PPPoE interface.
PadtRetryTimeout int
PPPoE terminate timeout value in (0-4294967295 sec).
Password string
Enter the password.
PppoeUnnumberedNegotiate string
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
ServiceName string
PPPoE service name.
Username string
User name.
Vdomparam Changes to this property will trigger replacement. 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.
device This property is required. String
Name for the physical interface.
acName String
PPPoE AC name.
authType String
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
dialOnDemand String
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
discRetryTimeout Integer
PPPoE discovery init timeout value in (0-4294967295 sec).
idleTimeout Integer
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered String
PPPoE unnumbered IP.
ipv6 String
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcpEchoInterval Integer
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcpMaxEchoFails Integer
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. String
Name of the PPPoE interface.
padtRetryTimeout Integer
PPPoE terminate timeout value in (0-4294967295 sec).
password String
Enter the password.
pppoeUnnumberedNegotiate String
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
serviceName String
PPPoE service name.
username String
User name.
vdomparam Changes to this property will trigger replacement. 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.
device This property is required. string
Name for the physical interface.
acName string
PPPoE AC name.
authType string
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
dialOnDemand string
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
discRetryTimeout number
PPPoE discovery init timeout value in (0-4294967295 sec).
idleTimeout number
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered string
PPPoE unnumbered IP.
ipv6 string
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcpEchoInterval number
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcpMaxEchoFails number
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. string
Name of the PPPoE interface.
padtRetryTimeout number
PPPoE terminate timeout value in (0-4294967295 sec).
password string
Enter the password.
pppoeUnnumberedNegotiate string
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
serviceName string
PPPoE service name.
username string
User name.
vdomparam Changes to this property will trigger replacement. 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.
device This property is required. str
Name for the physical interface.
ac_name str
PPPoE AC name.
auth_type str
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
dial_on_demand str
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
disc_retry_timeout int
PPPoE discovery init timeout value in (0-4294967295 sec).
idle_timeout int
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered str
PPPoE unnumbered IP.
ipv6 str
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcp_echo_interval int
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcp_max_echo_fails int
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. str
Name of the PPPoE interface.
padt_retry_timeout int
PPPoE terminate timeout value in (0-4294967295 sec).
password str
Enter the password.
pppoe_unnumbered_negotiate str
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
service_name str
PPPoE service name.
username str
User name.
vdomparam Changes to this property will trigger replacement. 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.
device This property is required. String
Name for the physical interface.
acName String
PPPoE AC name.
authType String
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
dialOnDemand String
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
discRetryTimeout Number
PPPoE discovery init timeout value in (0-4294967295 sec).
idleTimeout Number
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered String
PPPoE unnumbered IP.
ipv6 String
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcpEchoInterval Number
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcpMaxEchoFails Number
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. String
Name of the PPPoE interface.
padtRetryTimeout Number
PPPoE terminate timeout value in (0-4294967295 sec).
password String
Enter the password.
pppoeUnnumberedNegotiate String
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
serviceName String
PPPoE service name.
username String
User name.
vdomparam Changes to this property will trigger replacement. 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.

Outputs

All input properties are implicitly available as output properties. Additionally, the Pppoeinterface 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 Pppoeinterface Resource

Get an existing Pppoeinterface 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?: PppoeinterfaceState, opts?: CustomResourceOptions): Pppoeinterface
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ac_name: Optional[str] = None,
        auth_type: Optional[str] = None,
        device: Optional[str] = None,
        dial_on_demand: Optional[str] = None,
        disc_retry_timeout: Optional[int] = None,
        idle_timeout: Optional[int] = None,
        ipunnumbered: Optional[str] = None,
        ipv6: Optional[str] = None,
        lcp_echo_interval: Optional[int] = None,
        lcp_max_echo_fails: Optional[int] = None,
        name: Optional[str] = None,
        padt_retry_timeout: Optional[int] = None,
        password: Optional[str] = None,
        pppoe_unnumbered_negotiate: Optional[str] = None,
        service_name: Optional[str] = None,
        username: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Pppoeinterface
func GetPppoeinterface(ctx *Context, name string, id IDInput, state *PppoeinterfaceState, opts ...ResourceOption) (*Pppoeinterface, error)
public static Pppoeinterface Get(string name, Input<string> id, PppoeinterfaceState? state, CustomResourceOptions? opts = null)
public static Pppoeinterface get(String name, Output<String> id, PppoeinterfaceState state, CustomResourceOptions options)
resources:  _:    type: fortios:system:Pppoeinterface    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AcName string
PPPoE AC name.
AuthType string
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
Device string
Name for the physical interface.
DialOnDemand string
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
DiscRetryTimeout int
PPPoE discovery init timeout value in (0-4294967295 sec).
IdleTimeout int
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
Ipunnumbered string
PPPoE unnumbered IP.
Ipv6 string
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
LcpEchoInterval int
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
LcpMaxEchoFails int
Maximum missed LCP echo messages before disconnect.
Name Changes to this property will trigger replacement. string
Name of the PPPoE interface.
PadtRetryTimeout int
PPPoE terminate timeout value in (0-4294967295 sec).
Password string
Enter the password.
PppoeUnnumberedNegotiate string
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
ServiceName string
PPPoE service name.
Username string
User name.
Vdomparam Changes to this property will trigger replacement. 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.
AcName string
PPPoE AC name.
AuthType string
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
Device string
Name for the physical interface.
DialOnDemand string
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
DiscRetryTimeout int
PPPoE discovery init timeout value in (0-4294967295 sec).
IdleTimeout int
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
Ipunnumbered string
PPPoE unnumbered IP.
Ipv6 string
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
LcpEchoInterval int
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
LcpMaxEchoFails int
Maximum missed LCP echo messages before disconnect.
Name Changes to this property will trigger replacement. string
Name of the PPPoE interface.
PadtRetryTimeout int
PPPoE terminate timeout value in (0-4294967295 sec).
Password string
Enter the password.
PppoeUnnumberedNegotiate string
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
ServiceName string
PPPoE service name.
Username string
User name.
Vdomparam Changes to this property will trigger replacement. 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.
acName String
PPPoE AC name.
authType String
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
device String
Name for the physical interface.
dialOnDemand String
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
discRetryTimeout Integer
PPPoE discovery init timeout value in (0-4294967295 sec).
idleTimeout Integer
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered String
PPPoE unnumbered IP.
ipv6 String
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcpEchoInterval Integer
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcpMaxEchoFails Integer
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. String
Name of the PPPoE interface.
padtRetryTimeout Integer
PPPoE terminate timeout value in (0-4294967295 sec).
password String
Enter the password.
pppoeUnnumberedNegotiate String
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
serviceName String
PPPoE service name.
username String
User name.
vdomparam Changes to this property will trigger replacement. 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.
acName string
PPPoE AC name.
authType string
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
device string
Name for the physical interface.
dialOnDemand string
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
discRetryTimeout number
PPPoE discovery init timeout value in (0-4294967295 sec).
idleTimeout number
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered string
PPPoE unnumbered IP.
ipv6 string
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcpEchoInterval number
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcpMaxEchoFails number
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. string
Name of the PPPoE interface.
padtRetryTimeout number
PPPoE terminate timeout value in (0-4294967295 sec).
password string
Enter the password.
pppoeUnnumberedNegotiate string
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
serviceName string
PPPoE service name.
username string
User name.
vdomparam Changes to this property will trigger replacement. 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.
ac_name str
PPPoE AC name.
auth_type str
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
device str
Name for the physical interface.
dial_on_demand str
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
disc_retry_timeout int
PPPoE discovery init timeout value in (0-4294967295 sec).
idle_timeout int
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered str
PPPoE unnumbered IP.
ipv6 str
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcp_echo_interval int
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcp_max_echo_fails int
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. str
Name of the PPPoE interface.
padt_retry_timeout int
PPPoE terminate timeout value in (0-4294967295 sec).
password str
Enter the password.
pppoe_unnumbered_negotiate str
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
service_name str
PPPoE service name.
username str
User name.
vdomparam Changes to this property will trigger replacement. 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.
acName String
PPPoE AC name.
authType String
PPP authentication type to use. Valid values: auto, pap, chap, mschapv1, mschapv2.
device String
Name for the physical interface.
dialOnDemand String
Enable/disable dial on demand to dial the PPPoE interface when packets are routed to the PPPoE interface. Valid values: enable, disable.
discRetryTimeout Number
PPPoE discovery init timeout value in (0-4294967295 sec).
idleTimeout Number
PPPoE auto disconnect after idle timeout (0-4294967295 sec).
ipunnumbered String
PPPoE unnumbered IP.
ipv6 String
Enable/disable IPv6 Control Protocol (IPv6CP). Valid values: enable, disable.
lcpEchoInterval Number
Time in seconds between PPPoE Link Control Protocol (LCP) echo requests.
lcpMaxEchoFails Number
Maximum missed LCP echo messages before disconnect.
name Changes to this property will trigger replacement. String
Name of the PPPoE interface.
padtRetryTimeout Number
PPPoE terminate timeout value in (0-4294967295 sec).
password String
Enter the password.
pppoeUnnumberedNegotiate String
Enable/disable PPPoE unnumbered negotiation. Valid values: enable, disable.
serviceName String
PPPoE service name.
username String
User name.
vdomparam Changes to this property will trigger replacement. 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.

Import

System PppoeInterface can be imported using any of these accepted formats:

$ pulumi import fortios:system/pppoeinterface:Pppoeinterface labelname {{name}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:system/pppoeinterface:Pppoeinterface labelname {{name}}
Copy

$ 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.