Newer
Older
syntax = "proto3";
package an_epon_pm_onu_local_info;
message EponPmOnuLocalInfos {
message EponPmOnuLocalInfo {
///The name of ONU.
string name = 1;
//The optical power received by the OLT transceiver.The unit is 0.01dBm.
int32 olt_rx_power = 2;
//The ONU online time.The unit is second.
uint32 online_duration = 3;
//The last offline time of ONU.It is timestamp format.
uint32 last_down_time = 4;
//The reason for last offline of ONU.
uint32 last_down_cause = 5;
//The ONU status.(1-online,2-offline,255-invalid).
uint32 onu_status = 6;
}
repeated EponPmOnuLocalInfo epon_pm_onu_local_info = 1;
}