mirror of https://git.openwrt.org/project/luci.git
22 lines
451 B
Plaintext
22 lines
451 B
Plaintext
'use strict';
|
|
|
|
import { popen } from 'fs';
|
|
|
|
function lldpcli_json(section) {
|
|
return json(popen(`lldpcli -f json0 show ${section}`, 'r')?.read?.('all'));
|
|
}
|
|
|
|
const methods = {
|
|
getStatus: {
|
|
call: function() {
|
|
return {
|
|
statistics: lldpcli_json("statistics"),
|
|
neighbors: lldpcli_json("neighbors details"),
|
|
interfaces: lldpcli_json("interfaces"),
|
|
chassis: lldpcli_json("chassis")
|
|
};
|
|
}
|
|
}
|
|
};
|
|
|
|
return { 'luci.lldpd': methods }; |