centos shell get ip mac address

--------------------------------mac------------------------

cat /sys/class/net/eth*/address

 

-------------------------mac-----------------------------

/sbin/ifconfig \
   | grep 'eth0' \
   | tr -s ' ' \
   | cut -d ' ' -f5

------------------ip--------------------------
/sbin/ifconfig \
   | grep '\<inet\>' \
   | sed -n '1p' \
   | tr -s ' ' \
   | cut -d ' ' -f3 \
   | cut -d ':' -f2
--------------------------mac----------------
ifconfig | grep HWaddr | awk -F" " '{print $5}'

------------------------ip-------------------------
ifconfig eth0 | grep "inet addr" | awk -F: '{print $2}' | awk '{print $1}'

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0003412272{main}( ).../index.php:0
20.15364262192Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.15364262192Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.545811453080Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.547111477360Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.548311532688Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.548611560088require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.558811959720K2ControllerItem->execute( ).../k2.php:64
90.558811959720K2ControllerItem->display( ).../BaseController.php:710
100.569512610424K2ControllerItem->display( ).../item.php:78
110.569512610424K2ControllerItem->display( ).../controller.php:19
120.574712981464Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.587013001832K2ViewItem->display( ).../ViewController.php:102
140.748115808512K2ViewItem->display( ).../view.html.php:742
150.748115808512K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.750715981448include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0003412272{main}( ).../index.php:0
20.15364262192Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.15364262192Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.545811453080Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.547111477360Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.548311532688Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.548611560088require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.558811959720K2ControllerItem->execute( ).../k2.php:64
90.558811959720K2ControllerItem->display( ).../BaseController.php:710
100.569512610424K2ControllerItem->display( ).../item.php:78
110.569512610424K2ControllerItem->display( ).../controller.php:19
120.574712981464Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.587013001832K2ViewItem->display( ).../ViewController.php:102
140.748115808512K2ViewItem->display( ).../view.html.php:742
150.748115808512K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.750715981448include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top