This article provides information on how to configure VLAN re-tagging on the SRX Stand-alone device, which is running in bridging mode.
To re-tag the packets from Vlan 100 to Vlan 200 ingressing into ge-0/0/0. Once these packets are re-tagged, they will be sent out via ge-0/0/1.
interfaces { ge-0/0/0 { unit 0 { family bridge { interface-mode trunk; vlan-id-list 200; vlan-rewrite { translate 100 200; } } } } ge-0/0/1 { unit 0 { family bridge { interface-mode trunk; vlan-id-list 200; } } } } security { policies { default-policy { permit-all; } } zones { security-zone trust { interfaces { ge-0/0/0.0; } } security-zone untrust { interfaces { ge-0/0/1.0; } } } } bridge-domains { v200 { domain-type bridge; vlan-id 200; } }