This article provides information on how to configure VLAN Re-tagging on the Chassis Cluster, which is running in the bridging mode.
To re-tag the packets from Vlan 100 to Vlan 200 ingressing into Reth0. Once these packets are re-tagged, they will be sent out over Reth1.
chassis { cluster { reth-count 8; redundancy-group 0 { node 0 priority 200; node 1 priority 100; } redundancy-group 1 { node 1 priority 100; node 0 priority 200; } } } interfaces { ge-4/0/1 { gigether-options { redundant-parent reth0; } } ge-4/0/2 { gigether-options { redundant-parent reth1; } } ge-16/0/1 { gigether-options { redundant-parent reth0; } } ge-16/0/2 { gigether-options { redundant-parent reth1; } } fab0 { fabric-options { member-interfaces { ge-4/0/0; } } } fab1 { fabric-options { member-interfaces { ge-16/0/0; } } } reth0 { redundant-ether-options { redundancy-group 1; } unit 0 { family bridge { interface-mode trunk; vlan-id-list 200; vlan-rewrite { translate 100 200; } } } } reth1 { redundant-ether-options { redundancy-group 1; } unit 0 { family bridge { interface-mode trunk; vlan-id-list 200; } } } } security { policies { default-policy { permit-all; } } zones { security-zone reth0 { interfaces { reth0.0; } } security-zone reth1 { interfaces { reth1.0; } } } } bridge-domains { v200 { domain-type bridge; vlan-id 200; } }