Technical Tip: Route traffic between two VDOM from different clusters
| Description | This article describes the steps to configure routing between a VDOM on a FortiGate cluster to a VDOM from another FortiGate cluster. |
| Scope | FortiGate. |
| Solution | Topology:
In this example, a Layer 2 switch is being used to interconnect the machines from both subnets and FortiGate clusters using VLANs. Since these are in the cluster, it is necessary to interconnect both primary and secondary units (from both clusters) to the Layer 2 switch with the correct VLAN tagging.
Configuration:
Cluster A:
config global config system interface edit "VLAN100" set vdom "A" set ip 192.168.100.1 255.255.255.252 set interface "wan1" set vlanid 100 next edit "VLAN150" set vdom "A" set ip 10.10.10.1 255.255.255.0 set allowaccess ping set interface "wan1" set vlanid 150 next end
config vdom edit A config firewall policy edit 0 set name "To Cluster B" set srcintf "VLAN150" set dstintf "VLAN100" set action accept set srcaddr "all" set dstaddr "all" set schedule "always" set service "ALL" next edit 0 set name "From Cluster B" set srcintf "VLAN100" set dstintf "VLAN150" set action accept set srcaddr "all" set dstaddr "all" set schedule "always" set service "ALL" next end config router static edit 0 set dst 10.20.20.0 255.255.255.0 set gateway 192.168.100.2 set device "VLAN100" next end Cluster B:
config global config system interface edit "VLAN100" set vdom "B" set ip 192.168.100.2 255.255.255.252 set interface "wan1" set vlanid 100 next edit "VLAN250" set vdom "B" set ip 10.20.20.1 255.255.255.0 set allowaccess ping set interface "wan1" set vlanid 250 next end
config vdom edit B config firewall policy edit 0 set name "To Cluster A" set srcintf "VLAN250" set dstintf "VLAN100" set action accept set srcaddr "all" set dstaddr "all" set schedule "always" set service "ALL" next edit 0 set name "From Cluster A" set srcintf "VLAN100" set dstintf "VLAN250" set action accept set srcaddr "all" set dstaddr "all" set schedule "always" set service "ALL" next end config router static edit 0 set dst 10.10.10.0 255.255.255.0 set gateway 192.168.100.1 set device "VLAN100" next end |

