idsnmp支持的snmp协议现在的版本好像只是v1的,v2c,v3,现在ipwork的比较好,支持三个版本,但是现在没有出支持ipv6的,不过如果你想使用idsnmp的话,我可以给你贴一点代码。
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, IdBaseComponent, IdComponent, IdUDPBase, IdUDPClient,
IdSNMP;
type
TForm1 = class(TForm)
snmp: TIdSNMP;
Memo1: TMemo;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
origOID:string;
i:integer;
begin
SNMP.Community := 'public';
SNMP.Host := '202.202.41.173';
SNMP.Query.Clear;
origOID := '1.3.6.1.2.1.2.2.1.16';
SNMP.Query.MIBAdd(origOID, '');
SNMP.Query.PDUType := PDUGetNextRequest;
while SNMP.SendQuery do
begin
if Copy(SNMP.Reply.MIBOID[0], 1, Length(origOID)) <> origOID then
Break;
for I := 0 to SNMP.Reply.ValueCount - 1 do
memo1.Lines.Add(SNMP.Reply.Value);
SNMP.Query.Clear;
SNMP.Query.MIBAdd(SNMP.Reply.ValueOID[0], '');
SNMP.Query.PDUType := PDUGetNextRequest;
end;
end;
end.
在这个网址上有ipwork的下载,这个很不错,我推荐使用这个
www.0zones.com精品控件里面有下载。