Routing

 View Only
last person joined: 4 days ago 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  Bridge Domain on ACX1100

    Posted 01-20-2019 04:22

    Hi friends,

     

    i have a problem that i didnt figure out how to solved it...

    looks like simple thing but doesnt workout.

     

    computer ip 10.0.0.1---(access mode)---ACX1100 irb int vlan 310 ip 10.0.0.254

     

    my problem is that i need to configure the computer to access port at the ACX as part of irb int pool.

     

    just need to have ping from the computer to the irb int on the ACX (part of bridge-domains)

     

    my configuration now:

    set interfaces ge-0/1/0 description "to computer"
    set interfaces ge-0/1/0 vlan-tagging
    set interfaces ge-0/1/0 speed 100m
    set interfaces ge-0/1/0 media-type copper
    set interfaces ge-0/1/0 encapsulation flexible-ethernet-services
    set interfaces ge-0/1/0 unit 310 encapsulation vlan-bridge
    set interfaces ge-0/1/0 unit 310 vlan-id 310
    set interfaces ge-0/1/0 unit 310 family bridge interface-mode access

     

    what an i missing??

     

    thank you friends!



  • 2.  RE: Bridge Domain on ACX1100

    Posted 01-20-2019 04:36

    Hello,

    Your ge-0/1/0 port is configured to accept only 802.1Q-tagged frames with VLAN tag 310.

    Is Your computer sending tagged frames as well?

    If not, then please change ge-0/1/0 to untagged, re-test and report back.

    HTH

    Thx
    Alex



  • 3.  RE: Bridge Domain on ACX1100

    Posted 01-20-2019 05:04

    Hi,

    my computer doesnt send taget frames, reguale PC without any vlan.

     

    how do i untagged the interface?

     

    i tryed to remove the command with the tag: 

    delete interfaces ge-0/1/0 vlan-tagging

     

    but i get the message:

    [edit interfaces]
    'ge-0/1/0'
    flexible-ethernet encapsulation not allowed on untagged interfaces
    error: configuration check-out failed

     



  • 4.  RE: Bridge Domain on ACX1100
    Best Answer

    Posted 01-20-2019 05:09

    Hello,

    You have to change encapsulation as well. The example interfaces + bridge-domain config follows:

     

    set interfaces ge-0/1/0 encapsulation ethernet-bridge
    set interfaces ge-0/1/0 unit 0 family bridge
    set bridge-domains BLAH interface ge-0/1/0.0
    set bridge-domains BLAH vlan-id 310
    set bridge-domains BLAH routing-interface irb.130
    set interfaces irb.130 family inet address 10.0.0.254/24

    HTH

    Thx
    Alex

     



  • 5.  RE: Bridge Domain on ACX1100

    Posted 01-20-2019 05:17

    you are my king!!!thank you it works!