mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
|
|
// First try to get the IPs using "ip"
|
|
// First get list of links
|
|
$command='/bin/ip -oneline link show | /usr/bin/awk \'{print $2}\' | /bin/sed "s/://"';
|
|
exec($command, $result, $error);
|
|
if ($error) { // It didn't work with "ip" , so we do it with ifconfig
|
|
exec(
|
|
'/sbin/ifconfig | /bin/grep -B1 "inet addr" | /usr/bin/awk \'' .
|
|
'{ if ( $1 == "inet" ) { print $2 }' .
|
|
'else if ( $2 == "Link" ) { printf "%s:",$1 } }\' | /usr/bin/awk' .
|
|
' -F: \'{ print $1","$3 }\'',
|
|
$result
|
|
);
|
|
} else {
|
|
$result = implode(' ', $result);
|
|
// Now use that list to get the ip-adresses
|
|
$command = "for interface in {$result}; do" .
|
|
' for family in inet inet6; do'.
|
|
' /bin/ip -oneline -family $family addr show $interface |' .
|
|
' /bin/grep -v fe80 | /usr/bin/awk \'{print $2","$4}\';' .
|
|
' done; done';
|
|
exec($command, $result, $return_value);
|
|
}
|
|
// Get external adress
|
|
$result2 = file_get_contents('http://ipecho.net/plain');
|
|
|
|
// Create JSON header
|
|
header('Content-Type: application/json; charset=UTF-8');
|
|
// Return info as JSON
|
|
echo '[[','"external ip","',$result2,'"]';
|
|
$x = 0;
|
|
$max = count($result)-1;
|
|
foreach ($result as $a) {
|
|
echo ',';
|
|
echo json_encode(explode(',', $result[$x]));
|
|
//echo ($x==$max)?'':',';
|
|
unset($result[$x],$a);
|
|
$x++;
|
|
}
|
|
echo ']';
|