Fxp0 interfaces are meant to be for Out of Band management only. If we try to push transit traffic through it, the traffic will be dropped. This article explains how to access the Out of Band management interfaces of a cluster when coming from a VPN tunnel terminating on the SRX.
The fxp0 interfaces are supposed to be Out of Band management interfaces. However, there is a specific requirement where the SRX nodes in a cluster need to be accessed on fxp0 from the other side of a VPN tunnel terminating on the SRX.
Fxp0 interfaces are meant to be for Out of Band Management only. If we try to push transit traffic through it, the traffic will be dropped.
Use this workaround to allow VPN users to get access to the fxp0 interfaces for managing the SRX cluster nodes.
routing-instances { production-VR { instance-type virtual-router; interface reth0.0; interface reth1.0; interface reth2.0; interface st0.0; routing-options { static { route 192.168.3.0/24 next-hop st0.0; route 10.0.0.0/8 next-hop 10.204.115.254; } } }
security { ike { policy ike-policy { mode main; proposal-set standard; pre-shared-key ascii-text "$ABC123"; ## SECRET-DATA } gateway ike-gateway { ike-policy ike-policy; address 192.168.1.2; external-interface reth0.0; } } ipsec { policy ipsec-policy { proposal-set standard; } vpn ipsec-vpn { bind-interface st0.0; ike { gateway ike-gateway; ipsec-policy ipsec-policy; } establish-tunnels immediately; } }
reth0 { redundant-ether-options { redundancy-group 1; } unit 0 { family inet { address 192.168.1.1/24; } } } reth1 { redundant-ether-options { redundancy-group 1; } unit 0 { family inet { address 192.168.2.1/24; } } } reth2 { redundant-ether-options { redundancy-group 1; } unit 0 { family inet { address 10.204.115.115/24; } } } groups { node0 { interfaces { fxp0 { unit 0 { family inet { address 10.204.115.108/24; } } } } } node1 { interfaces { fxp0 { unit 0 { family inet { address 10.204.115.107/24; } } } } } }
In this example, the traffic comes over the VPN tunnel and is decrypted after entering through the Reth0 interface. A route lookup sends it out the new Reth2 interface, where it reaches the destination Fxp0 interfaces traversing the switch.
2020-02-27: minor non-technical edits.