ルーターの状態を知るためのアプリケーションを書きました。プログラムを使用すると、1 回のリクエストで 1 つのステータスを確認できます。しかし、1回のリクエストで複数のステータスを知りたい。出来ますか?助けていただけますか?コードをご覧ください
このコードは、リクエストごとに 1 つのステータスのみを提供します。
InetAddress hostAddress = InetAddress.getByName("**.**.**.**");
String community = "public";
int version = 1 / 0; // SNMPv1
SNMPv1CommunicationInterface comInterface =
new SNMPv1CommunicationInterface(version, hostAddress,
community);
String itemID = "1.3.6.1.2.1.43.11.1.1.9";
SNMPVarBindList newVars = comInterface.getMIBEntry(itemID);