Hello to all of subscribers... Please explaine me howto? :-)
When I use snmpwalk under Linux with base-MIB (for example) 1.3.6.1.2.1.10.127.1.3.3.1 I have got full list of all values for 1.3.6.1.2.1.10.127.1.3.3.1.2.. 1.3.6.1.2.1.10.127.1.3.3.1.3.. 1.3.6.1.2.1.10.127.1.3.3.1.4.. etc If I wish to get only one set of values I have used just simlpy 1.3.6.1.2.1.10.127.1.3.3.1.2 and got returned values only for this set. So, back to synapse.. When I wrote similar in Delphi: procedure TForm1.Button1Click(Sender: TObject); var retval: string; mib: string; ok: boolean; begin mib:= '1.3.6.1.2.1.10.127.1.3.3.1.2'; Memo1.Clear; repeat if SNMPGetNext(mib, com, host, retval) then Memo1.Lines.Add(retval); until not ok; end; I've got AGAIN full list of values, not only for 2. Why? Thanks in advance. Vic. ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ synalist-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/synalist-public
