routeros.InterfaceBridgeSettings
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as routeros from "@pulumi/routeros";
const settings = new routeros.InterfaceBridgeSettings("settings", {useIpFirewall: true});
import pulumi
import pulumi_routeros as routeros
settings = routeros.InterfaceBridgeSettings("settings", use_ip_firewall=True)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/routeros/routeros"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := routeros.NewInterfaceBridgeSettings(ctx, "settings", &routeros.InterfaceBridgeSettingsArgs{
UseIpFirewall: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Routeros = Pulumi.Routeros;
return await Deployment.RunAsync(() =>
{
var settings = new Routeros.InterfaceBridgeSettings("settings", new()
{
UseIpFirewall = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.routeros.InterfaceBridgeSettings;
import com.pulumi.routeros.InterfaceBridgeSettingsArgs;
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 settings = new InterfaceBridgeSettings("settings", InterfaceBridgeSettingsArgs.builder()
.useIpFirewall(true)
.build());
}
}
resources:
settings:
type: routeros:InterfaceBridgeSettings
properties:
useIpFirewall: true
Create InterfaceBridgeSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InterfaceBridgeSettings(name: string, args?: InterfaceBridgeSettingsArgs, opts?: CustomResourceOptions);
@overload
def InterfaceBridgeSettings(resource_name: str,
args: Optional[InterfaceBridgeSettingsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def InterfaceBridgeSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
allow_fast_path: Optional[bool] = None,
interface_bridge_settings_id: Optional[str] = None,
use_ip_firewall: Optional[bool] = None,
use_ip_firewall_for_pppoe: Optional[bool] = None,
use_ip_firewall_for_vlan: Optional[bool] = None)
func NewInterfaceBridgeSettings(ctx *Context, name string, args *InterfaceBridgeSettingsArgs, opts ...ResourceOption) (*InterfaceBridgeSettings, error)
public InterfaceBridgeSettings(string name, InterfaceBridgeSettingsArgs? args = null, CustomResourceOptions? opts = null)
public InterfaceBridgeSettings(String name, InterfaceBridgeSettingsArgs args)
public InterfaceBridgeSettings(String name, InterfaceBridgeSettingsArgs args, CustomResourceOptions options)
type: routeros:InterfaceBridgeSettings
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 InterfaceBridgeSettingsArgs
- 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 InterfaceBridgeSettingsArgs
- 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 InterfaceBridgeSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InterfaceBridgeSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InterfaceBridgeSettingsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
InterfaceBridgeSettings 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 InterfaceBridgeSettings resource accepts the following input properties:
- Allow
Fast boolPath - Whether to enable a bridge FastPath globally.
- Interface
Bridge stringSettings Id - The ID of this resource.
- Use
Ip boolFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- Use
Ip boolFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- Use
Ip boolFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- Allow
Fast boolPath - Whether to enable a bridge FastPath globally.
- Interface
Bridge stringSettings Id - The ID of this resource.
- Use
Ip boolFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- Use
Ip boolFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- Use
Ip boolFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow
Fast BooleanPath - Whether to enable a bridge FastPath globally.
- interface
Bridge StringSettings Id - The ID of this resource.
- use
Ip BooleanFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use
Ip BooleanFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use
Ip BooleanFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow
Fast booleanPath - Whether to enable a bridge FastPath globally.
- interface
Bridge stringSettings Id - The ID of this resource.
- use
Ip booleanFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use
Ip booleanFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use
Ip booleanFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow_
fast_ boolpath - Whether to enable a bridge FastPath globally.
- interface_
bridge_ strsettings_ id - The ID of this resource.
- use_
ip_ boolfirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use_
ip_ boolfirewall_ for_ pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use_
ip_ boolfirewall_ for_ vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow
Fast BooleanPath - Whether to enable a bridge FastPath globally.
- interface
Bridge StringSettings Id - The ID of this resource.
- use
Ip BooleanFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use
Ip BooleanFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use
Ip BooleanFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
Outputs
All input properties are implicitly available as output properties. Additionally, the InterfaceBridgeSettings resource produces the following output properties:
- Bridge
Fast doubleForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- Bridge
Fast doubleForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- Bridge
Fast boolPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- Bridge
Fast doublePath Bytes - Shows byte count forwarded by Bridge Fast Path.
- Bridge
Fast doublePath Packets - Shows packet count forwarded by Bridge FastPath.
- Id string
- The provider-assigned unique ID for this managed resource.
- Bridge
Fast float64Forward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- Bridge
Fast float64Forward Packets - Shows packet count forwarded by Bridge Fast Forward.
- Bridge
Fast boolPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- Bridge
Fast float64Path Bytes - Shows byte count forwarded by Bridge Fast Path.
- Bridge
Fast float64Path Packets - Shows packet count forwarded by Bridge FastPath.
- Id string
- The provider-assigned unique ID for this managed resource.
- bridge
Fast DoubleForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge
Fast DoubleForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge
Fast BooleanPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge
Fast DoublePath Bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge
Fast DoublePath Packets - Shows packet count forwarded by Bridge FastPath.
- id String
- The provider-assigned unique ID for this managed resource.
- bridge
Fast numberForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge
Fast numberForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge
Fast booleanPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge
Fast numberPath Bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge
Fast numberPath Packets - Shows packet count forwarded by Bridge FastPath.
- id string
- The provider-assigned unique ID for this managed resource.
- bridge_
fast_ floatforward_ bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge_
fast_ floatforward_ packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge_
fast_ boolpath_ active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge_
fast_ floatpath_ bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge_
fast_ floatpath_ packets - Shows packet count forwarded by Bridge FastPath.
- id str
- The provider-assigned unique ID for this managed resource.
- bridge
Fast NumberForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge
Fast NumberForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge
Fast BooleanPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge
Fast NumberPath Bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge
Fast NumberPath Packets - Shows packet count forwarded by Bridge FastPath.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing InterfaceBridgeSettings Resource
Get an existing InterfaceBridgeSettings 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?: InterfaceBridgeSettingsState, opts?: CustomResourceOptions): InterfaceBridgeSettings
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
allow_fast_path: Optional[bool] = None,
bridge_fast_forward_bytes: Optional[float] = None,
bridge_fast_forward_packets: Optional[float] = None,
bridge_fast_path_active: Optional[bool] = None,
bridge_fast_path_bytes: Optional[float] = None,
bridge_fast_path_packets: Optional[float] = None,
interface_bridge_settings_id: Optional[str] = None,
use_ip_firewall: Optional[bool] = None,
use_ip_firewall_for_pppoe: Optional[bool] = None,
use_ip_firewall_for_vlan: Optional[bool] = None) -> InterfaceBridgeSettings
func GetInterfaceBridgeSettings(ctx *Context, name string, id IDInput, state *InterfaceBridgeSettingsState, opts ...ResourceOption) (*InterfaceBridgeSettings, error)
public static InterfaceBridgeSettings Get(string name, Input<string> id, InterfaceBridgeSettingsState? state, CustomResourceOptions? opts = null)
public static InterfaceBridgeSettings get(String name, Output<String> id, InterfaceBridgeSettingsState state, CustomResourceOptions options)
resources: _: type: routeros:InterfaceBridgeSettings get: id: ${id}
- 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.
- Allow
Fast boolPath - Whether to enable a bridge FastPath globally.
- Bridge
Fast doubleForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- Bridge
Fast doubleForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- Bridge
Fast boolPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- Bridge
Fast doublePath Bytes - Shows byte count forwarded by Bridge Fast Path.
- Bridge
Fast doublePath Packets - Shows packet count forwarded by Bridge FastPath.
- Interface
Bridge stringSettings Id - The ID of this resource.
- Use
Ip boolFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- Use
Ip boolFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- Use
Ip boolFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- Allow
Fast boolPath - Whether to enable a bridge FastPath globally.
- Bridge
Fast float64Forward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- Bridge
Fast float64Forward Packets - Shows packet count forwarded by Bridge Fast Forward.
- Bridge
Fast boolPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- Bridge
Fast float64Path Bytes - Shows byte count forwarded by Bridge Fast Path.
- Bridge
Fast float64Path Packets - Shows packet count forwarded by Bridge FastPath.
- Interface
Bridge stringSettings Id - The ID of this resource.
- Use
Ip boolFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- Use
Ip boolFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- Use
Ip boolFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow
Fast BooleanPath - Whether to enable a bridge FastPath globally.
- bridge
Fast DoubleForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge
Fast DoubleForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge
Fast BooleanPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge
Fast DoublePath Bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge
Fast DoublePath Packets - Shows packet count forwarded by Bridge FastPath.
- interface
Bridge StringSettings Id - The ID of this resource.
- use
Ip BooleanFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use
Ip BooleanFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use
Ip BooleanFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow
Fast booleanPath - Whether to enable a bridge FastPath globally.
- bridge
Fast numberForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge
Fast numberForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge
Fast booleanPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge
Fast numberPath Bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge
Fast numberPath Packets - Shows packet count forwarded by Bridge FastPath.
- interface
Bridge stringSettings Id - The ID of this resource.
- use
Ip booleanFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use
Ip booleanFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use
Ip booleanFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow_
fast_ boolpath - Whether to enable a bridge FastPath globally.
- bridge_
fast_ floatforward_ bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge_
fast_ floatforward_ packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge_
fast_ boolpath_ active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge_
fast_ floatpath_ bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge_
fast_ floatpath_ packets - Shows packet count forwarded by Bridge FastPath.
- interface_
bridge_ strsettings_ id - The ID of this resource.
- use_
ip_ boolfirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use_
ip_ boolfirewall_ for_ pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use_
ip_ boolfirewall_ for_ vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- allow
Fast BooleanPath - Whether to enable a bridge FastPath globally.
- bridge
Fast NumberForward Bytes - Shows byte count forwarded by Bridge Fast Forward.
- bridge
Fast NumberForward Packets - Shows packet count forwarded by Bridge Fast Forward.
- bridge
Fast BooleanPath Active - Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- bridge
Fast NumberPath Bytes - Shows byte count forwarded by Bridge Fast Path.
- bridge
Fast NumberPath Packets - Shows packet count forwarded by Bridge FastPath.
- interface
Bridge StringSettings Id - The ID of this resource.
- use
Ip BooleanFirewall - Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- use
Ip BooleanFirewall For Pppoe - Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- use
Ip BooleanFirewall For Vlan - Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.
Import
$ pulumi import routeros:index/interfaceBridgeSettings:InterfaceBridgeSettings settings .
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- routeros terraform-routeros/terraform-provider-routeros
- License
- Notes
- This Pulumi package is based on the
routeros
Terraform Provider.