Hello,sir
When i use tahi to test ipv4,and i met a problem.When NUT send echorequest message to TN,TN need to know the Identifier,SequenceNumber,and data which is in Payload.Part of my scripts is:
$PING_ID = $ret{'Frame_Ether.Packet_IPv4.ICMPv4_EchoRequest.Identifier'};
$PING_SN = $ret{'Frame_Ether.Packet_IPv4.ICMPv4_EchoRequest.SequenceNumber'};
$PING_DATA = $ret{'Frame_Ether.Packet_IPv4.ICMPv4_EchoRequest.Payload.data'};
vCPP("-DPING_ID=$PING_ID -DPING_SN=$PING_SN -DPING_DATA=$PING_DATA");
PING_ID,PING_SN can be read out normally,but i can't get any informatin about PING_DATA,the value of it is null.so when the scritps run her vSend($IF,echo_reply);it will report an error,can you help me?