procedure TForm1.Button2Click(Sender: TObject);
var
IdSNMP_Set: TIdSNMP ;
begin
IdSNMP_Set:=TIdSNMP.Create(nil);
IdSNMP_Set.Query.Clear;
IdSNMP_Set.Active:=true;
IdSNMP_Set.Query.Port:=161;
IdSNMP_Set.Query.Community:='tets';
IdSNMP_Set.Query.Host:=Form1.ComboBox1.Items[Form1.ComboBox1.ItemIndex];
IdSNMP_Set.Query.PDUType:= PDUSetRequest;
IdSNMP_Set.Query.MIBAdd('1.3.6.1.4.1.5003.9.10.3.1.3.11.11.0','1');
IdSNMP_Set.SendQuery;
IdSNMP_Set.Query.MIBDelete(0);
IdSNMP_Set.Free;
end;