This article will address a major issue for many SRX650 HA Chassis Cluster users which is: how do you use the port ge-0/0/3 to route traffic between the LAN and the WAN (between the private and public networks)?
Problem Description:
The problem is obvious - "How to make one reth0 port carry more than one network? Only one logical interface (only unit 0) is allowed in the reth0 interface. If we configure more than one unit, the COMMIT reports an error.
Important Assumptions for this example solution:
Now follow these simple config statements in order:
# delete interfaces reth0 unit 0 ##comment - this will delete the unit 0 because it will no longer be needed. # set interfaces reth0 vlan-tagging ##comment - this is the key statement # set interfaces reth0 unit 10 vlan-id 10 family inet address 192.168.10.1/24 ##comment - logical interface reth0.10 is for LAN # set interfaces reth0 unit 11 vlan-id 11 family inet address 192.168.11.1/24 ##comment - logical interface reth0.11 is for WAN # set interfaces reth0 unit 12 vlan-id 12 family inet address 192.168.12.1/24
##comment - logical interface reth0.12 is for DMZ
#commit