1. Packages
  2. Routeros Provider
  3. API Docs
  4. InterfaceBridgeSettings
routeros 1.83.1 published on Monday, Apr 28, 2025 by terraform-routeros

routeros.InterfaceBridgeSettings

Explore with Pulumi AI

routeros logo
routeros 1.83.1 published on Monday, Apr 28, 2025 by terraform-routeros

    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:

    AllowFastPath bool
    Whether to enable a bridge FastPath globally.
    InterfaceBridgeSettingsId string
    The ID of this resource.
    UseIpFirewall bool
    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.
    UseIpFirewallForPppoe bool
    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.
    UseIpFirewallForVlan bool
    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.
    AllowFastPath bool
    Whether to enable a bridge FastPath globally.
    InterfaceBridgeSettingsId string
    The ID of this resource.
    UseIpFirewall bool
    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.
    UseIpFirewallForPppoe bool
    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.
    UseIpFirewallForVlan bool
    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.
    allowFastPath Boolean
    Whether to enable a bridge FastPath globally.
    interfaceBridgeSettingsId String
    The ID of this resource.
    useIpFirewall Boolean
    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.
    useIpFirewallForPppoe Boolean
    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.
    useIpFirewallForVlan Boolean
    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.
    allowFastPath boolean
    Whether to enable a bridge FastPath globally.
    interfaceBridgeSettingsId string
    The ID of this resource.
    useIpFirewall boolean
    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.
    useIpFirewallForPppoe boolean
    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.
    useIpFirewallForVlan boolean
    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_path bool
    Whether to enable a bridge FastPath globally.
    interface_bridge_settings_id str
    The ID of this resource.
    use_ip_firewall bool
    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_firewall_for_pppoe bool
    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_firewall_for_vlan bool
    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.
    allowFastPath Boolean
    Whether to enable a bridge FastPath globally.
    interfaceBridgeSettingsId String
    The ID of this resource.
    useIpFirewall Boolean
    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.
    useIpFirewallForPppoe Boolean
    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.
    useIpFirewallForVlan Boolean
    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:

    BridgeFastForwardBytes double
    Shows byte count forwarded by Bridge Fast Forward.
    BridgeFastForwardPackets double
    Shows packet count forwarded by Bridge Fast Forward.
    BridgeFastPathActive bool
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    BridgeFastPathBytes double
    Shows byte count forwarded by Bridge Fast Path.
    BridgeFastPathPackets double
    Shows packet count forwarded by Bridge FastPath.
    Id string
    The provider-assigned unique ID for this managed resource.
    BridgeFastForwardBytes float64
    Shows byte count forwarded by Bridge Fast Forward.
    BridgeFastForwardPackets float64
    Shows packet count forwarded by Bridge Fast Forward.
    BridgeFastPathActive bool
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    BridgeFastPathBytes float64
    Shows byte count forwarded by Bridge Fast Path.
    BridgeFastPathPackets float64
    Shows packet count forwarded by Bridge FastPath.
    Id string
    The provider-assigned unique ID for this managed resource.
    bridgeFastForwardBytes Double
    Shows byte count forwarded by Bridge Fast Forward.
    bridgeFastForwardPackets Double
    Shows packet count forwarded by Bridge Fast Forward.
    bridgeFastPathActive Boolean
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridgeFastPathBytes Double
    Shows byte count forwarded by Bridge Fast Path.
    bridgeFastPathPackets Double
    Shows packet count forwarded by Bridge FastPath.
    id String
    The provider-assigned unique ID for this managed resource.
    bridgeFastForwardBytes number
    Shows byte count forwarded by Bridge Fast Forward.
    bridgeFastForwardPackets number
    Shows packet count forwarded by Bridge Fast Forward.
    bridgeFastPathActive boolean
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridgeFastPathBytes number
    Shows byte count forwarded by Bridge Fast Path.
    bridgeFastPathPackets number
    Shows packet count forwarded by Bridge FastPath.
    id string
    The provider-assigned unique ID for this managed resource.
    bridge_fast_forward_bytes float
    Shows byte count forwarded by Bridge Fast Forward.
    bridge_fast_forward_packets float
    Shows packet count forwarded by Bridge Fast Forward.
    bridge_fast_path_active bool
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridge_fast_path_bytes float
    Shows byte count forwarded by Bridge Fast Path.
    bridge_fast_path_packets float
    Shows packet count forwarded by Bridge FastPath.
    id str
    The provider-assigned unique ID for this managed resource.
    bridgeFastForwardBytes Number
    Shows byte count forwarded by Bridge Fast Forward.
    bridgeFastForwardPackets Number
    Shows packet count forwarded by Bridge Fast Forward.
    bridgeFastPathActive Boolean
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridgeFastPathBytes Number
    Shows byte count forwarded by Bridge Fast Path.
    bridgeFastPathPackets Number
    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.
    The following state arguments are supported:
    AllowFastPath bool
    Whether to enable a bridge FastPath globally.
    BridgeFastForwardBytes double
    Shows byte count forwarded by Bridge Fast Forward.
    BridgeFastForwardPackets double
    Shows packet count forwarded by Bridge Fast Forward.
    BridgeFastPathActive bool
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    BridgeFastPathBytes double
    Shows byte count forwarded by Bridge Fast Path.
    BridgeFastPathPackets double
    Shows packet count forwarded by Bridge FastPath.
    InterfaceBridgeSettingsId string
    The ID of this resource.
    UseIpFirewall bool
    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.
    UseIpFirewallForPppoe bool
    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.
    UseIpFirewallForVlan bool
    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.
    AllowFastPath bool
    Whether to enable a bridge FastPath globally.
    BridgeFastForwardBytes float64
    Shows byte count forwarded by Bridge Fast Forward.
    BridgeFastForwardPackets float64
    Shows packet count forwarded by Bridge Fast Forward.
    BridgeFastPathActive bool
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    BridgeFastPathBytes float64
    Shows byte count forwarded by Bridge Fast Path.
    BridgeFastPathPackets float64
    Shows packet count forwarded by Bridge FastPath.
    InterfaceBridgeSettingsId string
    The ID of this resource.
    UseIpFirewall bool
    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.
    UseIpFirewallForPppoe bool
    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.
    UseIpFirewallForVlan bool
    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.
    allowFastPath Boolean
    Whether to enable a bridge FastPath globally.
    bridgeFastForwardBytes Double
    Shows byte count forwarded by Bridge Fast Forward.
    bridgeFastForwardPackets Double
    Shows packet count forwarded by Bridge Fast Forward.
    bridgeFastPathActive Boolean
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridgeFastPathBytes Double
    Shows byte count forwarded by Bridge Fast Path.
    bridgeFastPathPackets Double
    Shows packet count forwarded by Bridge FastPath.
    interfaceBridgeSettingsId String
    The ID of this resource.
    useIpFirewall Boolean
    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.
    useIpFirewallForPppoe Boolean
    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.
    useIpFirewallForVlan Boolean
    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.
    allowFastPath boolean
    Whether to enable a bridge FastPath globally.
    bridgeFastForwardBytes number
    Shows byte count forwarded by Bridge Fast Forward.
    bridgeFastForwardPackets number
    Shows packet count forwarded by Bridge Fast Forward.
    bridgeFastPathActive boolean
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridgeFastPathBytes number
    Shows byte count forwarded by Bridge Fast Path.
    bridgeFastPathPackets number
    Shows packet count forwarded by Bridge FastPath.
    interfaceBridgeSettingsId string
    The ID of this resource.
    useIpFirewall boolean
    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.
    useIpFirewallForPppoe boolean
    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.
    useIpFirewallForVlan boolean
    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_path bool
    Whether to enable a bridge FastPath globally.
    bridge_fast_forward_bytes float
    Shows byte count forwarded by Bridge Fast Forward.
    bridge_fast_forward_packets float
    Shows packet count forwarded by Bridge Fast Forward.
    bridge_fast_path_active bool
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridge_fast_path_bytes float
    Shows byte count forwarded by Bridge Fast Path.
    bridge_fast_path_packets float
    Shows packet count forwarded by Bridge FastPath.
    interface_bridge_settings_id str
    The ID of this resource.
    use_ip_firewall bool
    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_firewall_for_pppoe bool
    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_firewall_for_vlan bool
    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.
    allowFastPath Boolean
    Whether to enable a bridge FastPath globally.
    bridgeFastForwardBytes Number
    Shows byte count forwarded by Bridge Fast Forward.
    bridgeFastForwardPackets Number
    Shows packet count forwarded by Bridge Fast Forward.
    bridgeFastPathActive Boolean
    Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
    bridgeFastPathBytes Number
    Shows byte count forwarded by Bridge Fast Path.
    bridgeFastPathPackets Number
    Shows packet count forwarded by Bridge FastPath.
    interfaceBridgeSettingsId String
    The ID of this resource.
    useIpFirewall Boolean
    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.
    useIpFirewallForPppoe Boolean
    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.
    useIpFirewallForVlan Boolean
    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.
    routeros logo
    routeros 1.83.1 published on Monday, Apr 28, 2025 by terraform-routeros