Administrators can use the eSight system to monitor and manage the FW, receive alarms from the FW.
As shown in Figure 1, an enterprise deploys a FW at the network border as the security gateway and the eSight system to centrally manage the network devices. The eSight must be enabled to monitor and manage the FW, receive alarms when intranet users access the Internet from the FW.
Item |
Data |
Description |
|
|---|---|---|---|
FW |
Interface |
Interface: GigabitEthernet 0/0/1 IP Address: 1.1.1.1/24 Security zone: Untrust |
Interface connecting to the Internet. In this example, the next-hop address of the interface to the Internet is 1.1.1.2. |
Interface: GigabitEthernet 0/0/2 IP Address: 10.2.0.1/24 Security zone: DMZ |
Interface communicating with the eSight server. |
||
Interface: GigabitEthernet 0/0/3 IP Address: 10.3.0.1/24 Security zone: Trust |
Interface connecting to the enterprise intranet. |
||
SNMP parameters |
Security user group name: v3group Security user name: V3user SNMP version: v3 Authentication protocol: HMAC_SHA Authentication Password: Admin@123 Privacy protocol: AES128 Encryption Password: Admin@1234 |
Ensure that the SNMP parameters on the FW and the eSight are the same. |
|
eSight |
IP Address |
10.2.0.10/24 |
The physical server is deployed in the DMZ. |
SNMP parameters |
Security name: V3user SNMP version: v3 Authentication protocol: HMAC_SHA Password: Admin@123 Privacy protocol: AES128 Password: Admin@1234 |
Ensure that the SNMP parameters on the FW and the eSight are the same. |
|
To enable the FW to communicate with the eSight, set an IP address for FW interface GigabitEthernet 0/0/2, assign the interface to the DMZ, and configure the interface access management function to allow the SNMP protocol to pass.
If the interface access management function is not used, you need to configure related security policies. Before disabling interface access management, configure security policies for remote management protocols to prevent the failure to remotely manage the FW.
To enable the eSight to manage the FW and receive alarms from the FW, set SNMP parameters and enable the trap function on the FW, set the same SNMP parameters on the eSight and add the FW to the eSight system.
This example describes only how to connect the FW and the eSight. Configure corresponding routes to ensure that devices are routable. For other settings on the eSight, refer to the corresponding documents.
#
sysname sysname
#
interface GigabitEthernet0/0/1
undo shutdown
ip address 1.1.1.1 255.255.255.0
#
interface GigabitEthernet0/0/2
undo shutdown
ip address 10.2.0.1 255.255.255.0
service-manage snmp permit
#
interface GigabitEthernet0/0/3
undo shutdown
ip address 10.3.0.1 255.255.255.0
#
firewall zone untrust
set priority 5
add interface GigabitEthernet0/0/1
#
firewall zone dmz
set priority 50
add interface GigabitEthernet0/0/2
#
firewall zone trust
set priority 85
add interface GigabitEthernet0/0/3
#
security-policy
rule name trust_untrust_outbound1
source-zone trust
destination-zone Untrust
source-address 10.14.10.1 32
destination-address 10.3.0.0 mask 255.255.255.0
action permit
#
security-policy
rule name local_dmz
source-zone local
destination-zone dmz
source-address 10.2.0.1 24
service snmptrap
action permit
#
ip route-static 0.0.0.0 0.0.0.0 1.1.1.2
ip route-static 1.1.1.10 255.255.255.255 NULL0
ip route-static 1.1.1.11 255.255.255.255 NULL0
ip route-static 1.1.1.12 255.255.255.255 NULL0
#
snmp-agent
snmp-agent local-engineid 000007DB7FFFFFFF000077D0
snmp-agent sys-info version v3
snmp-agent mib-view include mib2view iso
snmp-agent group v3 v3group privacy
snmp-agent group v3 v3group privacy write-view mib2view notify-view mib2view
snmp-agent target-host trap address udp-domain 10.2.0.10 params securityname %
$%$Lch*5Z>Q0:BIj9Nv<&^W(>5,%$%$ v3 privacy private-netmanager
snmp-agent usm-user v3 V3user authentication-mode sha cipher %^%#]lck/kEvSA'=g^
WsIwEI~rf&=qHpDEhhB\3Dmt1(%^%#
snmp-agent usm-user v3 V3user privacy-mode aes128 cipher %^%#Ow4n$dQvbD:^-Asnmp
-agent usm-user v3 V3user privacy-mode aes128 cipher %^%#Ow4n$dQvbD:^-A
snmp-agent usm-user v3 V3user group v3group
snmp-agent trap enable
#
return