Fix the snmp parameter in NetworkProtocol

This should be the configuration information of snmpagent. Now
we have "snmp trap" functionality in openbmc,we don't have SNMP
agent functionality. So the parameters belonging to the agent
such as port are removed here.

Signed-off-by: Xiaochao Ma <maxiaochao@inspur.com>
Change-Id: I2d684b63d79ac1dc00bce0d2e0bd48e5a315f258
diff --git a/redfish-core/lib/network_protocol.hpp b/redfish-core/lib/network_protocol.hpp
index 75e3aa8..02251a8 100644
--- a/redfish-core/lib/network_protocol.hpp
+++ b/redfish-core/lib/network_protocol.hpp
@@ -204,27 +204,6 @@
         asyncResp->res.jsonValue["Status"]["Health"] = "OK";
         asyncResp->res.jsonValue["Status"]["HealthRollup"] = "OK";
         asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
-        asyncResp->res.jsonValue["SNMP"]["ProtocolEnabled"] = true;
-        asyncResp->res.jsonValue["SNMP"]["Port"] = 161;
-        asyncResp->res.jsonValue["SNMP"]["AuthenticationProtocol"] =
-            "CommunityString";
-        asyncResp->res.jsonValue["SNMP"]["CommunityAccessMode"] = "Full";
-        asyncResp->res.jsonValue["SNMP"]["HideCommunityStrings"] = true;
-        asyncResp->res
-            .jsonValue["SNMP"]["EngineId"]["EnterpriseSpecificMethod"] =
-            nullptr;
-        asyncResp->res.jsonValue["SNMP"]["EngineId"]["PrivateEnterpriseId"] =
-            nullptr;
-        asyncResp->res.jsonValue["SNMP"]["EnableSNMPv1"] = false;
-        asyncResp->res.jsonValue["SNMP"]["EnableSNMPv2c"] = true;
-        asyncResp->res.jsonValue["SNMP"]["EnableSNMPv3"] = false;
-        asyncResp->res.jsonValue["SNMP"]["EncryptionProtocol"] = "None";
-        nlohmann::json& memberArray =
-            asyncResp->res.jsonValue["SNMP"]["CommunityStrings"];
-        memberArray = nlohmann::json::array();
-        memberArray.push_back({{"AccessMode", "Full"}});
-        memberArray.push_back({{"CommunityString", ""}});
-        memberArray.push_back({{"Name", ""}});
 
         // HTTP is Mandatory attribute as per OCP Baseline Profile - v1.0.0,
         // but from security perspective it is not recommended to use.