[I/F] interface uptime 확인
주의>
openWRT 시스템에서만 가능한 것일 수 있음.
각자의 시스템에서 동작하는지는 개별적으로 확인해야함.
eth0 의 uptime을 확인하고 싶었음.
명령어> eth0가 아니라 wan 임(openWRT interface정의 /etc/config/network 참고)
/sbin/ifstatus wan | grep -o 'uptime.*' | grep -o '[[:digit:]]*'
-----------------------------------------------------------------------------------------------------
root@System:/# /sbin/ifstatus wan
{
"up": true,
"pending": false,
"available": true,
"autostart": true,
"dynamic": false,
"uptime": 788,
"l3_device": "eth0",
"proto": "dhcp",
"device": "eth0",
"updated": [
"addresses",
"routes",
"data"
],
"metric": 0,
"delegation": true,
"ipv4-address": [
{
"address": "192.168.88.162",
"mask": 24
}
],
"ipv6-address": [
],
"ipv6-prefix": [
],
"ipv6-prefix-assignment": [
],
"route": [
{
"target": "192.168.88.254",
"mask": 32,
"nexthop": "0.0.0.0",
"source": "192.168.88.162\/32"
},
{
"target": "0.0.0.0",
"mask": 0,
"nexthop": "192.168.88.254",
"source": "192.168.88.162\/32"
}
],
"dns-server": [
"192.168.88.254"
],
"dns-search": [
"System"
],
"inactive": {
"ipv4-address": [
],
"ipv6-address": [
],
"route": [
],
"dns-server": [
],
"dns-search": [
]
},
"data": {
"leasetime": 86400
}
}
root@System:/# /sbin/ifstatus lan
{
"up": true,
"pending": false,
"available": true,
"autostart": true,
"dynamic": false,
"uptime": 30688,
"l3_device": "br-lan",
"proto": "static",
"device": "br-lan",
"updated": [
"addresses"
],
"metric": 0,
"delegation": true,
"ipv4-address": [
{
"address": "192.168.2.254",
"mask": 24
}
],
"ipv6-address": [
],
"ipv6-prefix": [
],
"ipv6-prefix-assignment": [
],
"route": [
],
"dns-server": [
],
"dns-search": [
],
"inactive": {
"ipv4-address": [
],
"ipv6-address": [
],
"route": [
],
"dns-server": [
],
"dns-search": [
]
},
"data": {
}
}
root@System:/#
'프로...NetWork' 카테고리의 다른 글
[소켓] options (0) | 2018.12.21 |
---|---|
[성능측정] iperf (0) | 2018.12.21 |
[OpwnWrt] opkg (0) | 2018.11.13 |
[TS] Bridge에서 drop counter 증가하면서 ping이 안되는 경우 (0) | 2018.10.23 |
Ing> [iptables] iptables 정리 (0) | 2018.09.21 |