How to let the Firewall of RHEL7 the SNMP connection passing?
The correct way to do this is to add a profile for SNMP to firewalld. Using UDP 161 not TCP
vim /etc/firewalld/services/snmp.xml
<?xml version="1.0" encoding="utf-8"?>
<service>
<short>SNMP</short>
<description>SNMP protocol</description>
<port protocol="udp" port="161"/>
</service>
Then you should reload your firewall
firewall-cmd --reload
Then you need to add the service to your public zone
firewall-cmd --zone=public --add-service snmp --permanent
Then finally reload your firewall again
firewall-cmd --reload