This section provides a web example of how to configure hot standby in load balancing mode in which the service interfaces of the firewalls work at Layer 2 and connect to routers in upstream and downstream directions.
On the network shown in Figure 1, the service interfaces of two FWs work at Layer 2 and are directly connected to routers. The uplink and downlink service interfaces of each FW are added to the same VLAN.
The FWs and directly connected routers run OSPF. The FWs transparently transmit OSPF packets and do not calculate routes.
The FWs are expected to work in load balancing mode. Normally, both FW_A and FW_B forward traffic. When one FW goes faulty, the other FW takes over all the traffic load.
Security policies configured on FW_A are automatically backed up to FW_B.
Configure OSPF on the routers to advertise routes. For configuration commands, refer to the related documents of the routers.
Choose to view the operating status of hot standby.
FW_A |
FW_B |
|---|---|
# hrp enable hrp interface GigabitEthernet 0/0/7 remote 10.10.0.2 hrp mirror session enable hrp track vlan 2 # vlan batch 2 # interface GigabitEthernet 0/0/3 portswitch port default vlan 2 # interface GigabitEthernet 0/0/1 portswitch port default vlan 2 # interface GigabitEthernet 0/0/7 ip address 10.10.0.1 255.255.255.0 # firewall zone trust set priority 85 add interface GigabitEthernet 0/0/3 # firewall zone untrust set priority 5 add interface GigabitEthernet 0/0/1 # firewall zone dmz set priority 50 add interface GigabitEthernet0/0/7 # security-policy rule name policy_ospf_1 source-zone trust destination-zone untrust source-address 10.3.0.1 32 source-address 10.3.1.1 32 destination-address 10.3.0.2 32 destination-address 10.3.1.2 32 service ospf action permit rule name policy_ospf_2 source-zone untrust destination-zone trust source-address 10.3.0.2 32 source-address 10.3.1.2 32 destination-address 10.3.0.1 32 destination-address 10.3.1.1 32 service ospf action permit rule name policy_sec source-zone trust destination-zone untrust source-address 10.3.2.0 24 source-address 10.3.3.0 24 action permit |
# hrp enable hrp interface GigabitEthernet 0/0/7 remote 10.10.0.1 hrp mirror session enable hrp track vlan 2 # vlan batch 2 # interface GigabitEthernet 0/0/3 portswitch port default vlan 2 # interface GigabitEthernet 0/0/1 portswitch port default vlan 2 # interface GigabitEthernet 0/0/7 ip address 10.10.0.2 255.255.255.0 # firewall zone trust set priority 85 add interface GigabitEthernet 0/0/3 # firewall zone untrust set priority 5 add interface GigabitEthernet 0/0/1 # firewall zone dmz set priority 50 add interface GigabitEthernet0/0/7 # security-policy rule name policy_ospf_1 source-zone trust destination-zone untrust source-address 10.3.0.1 32 source-address 10.3.1.1 32 destination-address 10.3.0.2 32 destination-address 10.3.1.2 32 service ospf action permit rule name policy_ospf_2 source-zone untrust destination-zone trust source-address 10.3.0.2 32 source-address 10.3.1.2 32 destination-address 10.3.0.1 32 destination-address 10.3.1.1 32 service ospf action permit rule name policy_sec source-zone trust destination-zone untrust source-address 10.3.2.0 24 source-address 10.3.3.0 24 action permit |