Dual PPPoE Bridge

Does VyOS supports dual PPPoE bridge ? as in I have 2 PPPoE connections and I want to combine them in bridge in fail over mode.
Is this feature available in VyOS? If so, how can I use it?

You can have multiple pppoe client connections via different interfaces, for what would you need a bridge interface?

set interfaces ethernet eth2 pppoe 0 password 'test' set interfaces ethernet eth2 pppoe 0 user-id 'test' set interfaces ethernet eth3 pppoe 1 password 'test1' set interfaces ethernet eth3 pppoe 1 user-id 'test1'

Which would give you 2 different pppoe interfaces with 2 different address (different IPs of course)

pppoe0 192.168.0.0 u/u pppoe1 192.168.0.1 u/u

I need to have a main connection and backup connection when the main fails, It’s does that a lot due to infrastructure problem where I work

I see, then you are looking for wan loadbalancing rather than for a bridge interface. Let me now if that is what you need.