目标:从服务器中提取 IP 地址。但是,问题开始发挥作用,即专用和 VPS 非常不同。提取并检查和打印 IP 地址的最佳或最理想的方法是什么?
我想我可以检查以下内容?
root@host]# /sbin/ifconfig venet0:0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'
IP IS HERE
root@host]# /sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'
eth0: error fetching interface information: Device not found