我碰到了一堵砖墙。我有一个小型系统,可通过SNMP与DSLAM进行通信。
几个月来一切都工作正常,但是当我最近向系统中添加新的DSLAM时,我无法从中得到答案。尝试了其他IP,没有问题。

一个小时左右后,另一个DSLAM中的另一个突然也停止回答我。因此,现在我有两个没有任何沟通的单元,真是太烂了。因此,我当然检查了单位,没有发现问题。通过我的MIB浏览器,我可以接触到所有单位……但不能通过我的软件。因此错误出在我的软件中。因此,我检查了Wireshark,发现getNext请求正在发出,但我似乎没有得到答案。当我通过MIB浏览器进行操作时,就会得到一个答案。但有趣的是:这两个请求是相同的。所以我一定不能在听-是的,它在听。

为什么这在世界范围内是特定于某些IP的,亲爱的上帝,为什么它们会互相污染?

让我们看一些代码:

public String GetNextValue(String OID, Dslam dslam) throws IOException {
    Snmp snmp = new Snmp(new DefaultUdpTransportMapping());
    snmp.listen();

    CommunityTarget target = initializeTarget(dslam);

    PDU request = new PDU();
    request.setType(PDU.GETNEXT);
    OID oid= new OID(OID);
    request.add(new VariableBinding(oid));

    PDU responsePDU=null;
    ResponseEvent responseEvent;
    responseEvent = snmp.send(request, target);

    if (responseEvent != null){
        System.out.println("resonse event not null..");
        responsePDU = responseEvent.getResponse();

        if ( responsePDU != null){
            System.out.println("pdu not null..");
            @SuppressWarnings("unchecked")
            Vector <VariableBinding> tmpv = (Vector<VariableBinding>) responsePDU.getVariableBindings();

            if(tmpv != null){
                System.out.println("tmpv not null..");

                VariableBinding vb = (VariableBinding) tmpv.get(0);
                if(!vb.isException()){
                    return vb.getVariable().toString()
                }
            }
        }
    }
    _errorHandler.criticalError("Response error in DSLAM communication");
    return null;
}


和初始化器:

private CommunityTarget initializeTarget(Dslam dslam){
    Address addr = new UdpAddress(dslam.getAddress() + "/" + dslam.getManagementPort() );
    System.out.println("IP: " + dslam.getAddress() + " port: " + dslam.getManagementPort());
    CommunityTarget target = new CommunityTarget(addr, new OctetString("public"));
    target.setVersion(SnmpConstants.version2c);
    target.setTimeout(3000);
    target.setRetries(3);

    return target;
}


如果我们在正常工作的DSLAM上进行测试:

@Test
public void Lowtest() throws IOException{
    SnmpController snmpController = SnmpController.GetInstance();

    DslamGrabber dslamGrabber = new DslamGrabber();
    Dslam dslam = dslamGrabber.getByDslamId("test5xda5");

    String result = snmpController.GetNextValue(".1.3.6.1.4.1.637.61.1.39.3.3.1.1.2", dslam);
    System.out.println(result);
}


结果:

IP: 195.215.96.135 port: 161
resonse event not null..
pdu not null..
tmpv not null..
OID: 1.3.6.1.4.1.637.61.1.39.3.3.1.1.2.1
BF512_2048


我们尝试反对test5xda9(屈服于这种可怕的类似疾病的错误的第二个错误)

我们在Wireshark中进行了3次重试,并且输出如下:

IP: 192.215.96.139 port: 161
resonse event not null..
Response error in DSLAM communication
null


我真的希望这里有人可以帮助我。我有几个小时的路程,要么泪流满面,要么断掉了DSLAM。

最好的祝福

最佳答案

好吧,正如一位朋友指出的192不等于195。

07-28 12:59