Switching

 View Only
last person joined: 2 days ago 

Ask questions and share experiences about EX and QFX portfolios and all switching solutions across your data center, campus, and branch locations.
  • 1.  L3 -interface creation error

    This message was posted by a user wishing to remain anonymous
    Posted 12-28-2022 07:27
    This message was posted by a user wishing to remain anonymous

    root@SPHARE# show vlans
    VLAN11_SRV {
    description ***SERVER-MGMT-VLAN***;
    vlan-id 11;
    }
    VLAN411_MGMT {
    vlan-id 411;
    }
    default {
    ##
    ## Warning: l3-interface can be configured only under vlans with 'vlan-id'/'vlan-tags'
    ## Warning: Interface must already be defined under [edit interfaces]
    ##
    l3-interface irb.411;
    }


  • 2.  RE: L3 -interface creation error

    Posted 12-28-2022 07:32
    It looks like you are adding the interface to the incorrect vlan I assume that irb.411 would be under VLAN411_MGMT and not default.

    And you also need to create the interface itself under interfaces

    root@SPHARE# show vlans
    VLAN11_SRV {
    description ***SERVER-MGMT-VLAN***;
    vlan-id 11;
    }
    VLAN411_MGMT {
    vlan-id 411;
    l3-interface irb.411;
    }
    default {
    }
    
    interfaces 
    irb {
        unit 411 {
            family inet {
                address 10.0.1.1/24;
            }
        }
    }
    




    ------------------------------
    Steve Puluka BSEET - Juniper Ambassador
    IP Architect - DQE Communications Pittsburgh, PA (Metro Ethernet & ISP - Retired)
    http://puluka.com/home
    ------------------------------



  • 3.  RE: L3 -interface creation error

    Posted 12-28-2022 07:32
    What if you add "vlan-id 0" here?




  • 4.  RE: L3 -interface creation error

    Posted 12-29-2022 09:56
    A vlan id (not zero) is needed for an irb interface.  So you would need to assign some id for this vlan. 

    This can still have untagged interfaces as members of the vlan group with access mode assigned.

    ------------------------------
    Steve Puluka BSEET - Juniper Ambassador
    IP Architect - DQE Communications Pittsburgh, PA (Metro Ethernet & ISP - Retired)
    http://puluka.com/home
    ------------------------------