Tag Archives: IP

[PHP]PHP获取服务器IP输出为数组

Leave a comment

用PHP执行ifconfig获得Linux服务器IP并输出为数组,下面是代码:

function getServerIp(){ //用ifconfig读取服务器IP并输出为数组
		$ss = exec('/sbin/ifconfig | sed -n \'s/^ *.*addr:\\([0-9.]\\{7,\\}\\) .*$/\\1/p\'',$arr);
		return $arr; 
		}
$ips=getServerIp();
foreach($ips as $k=>$v){//过滤IP
	if(substr($v,0,3)=='127' || substr($v,0,3)=='10.' || substr($v,0,7)=='192.168' || substr($v,0,6)=='172.16'){
		unset($ips[$k]);
	}
}
shuffle($ips);//重新排序
print_r($ips);

[Linux笔记]CentOS添加与批量添加IP

Leave a comment

一、添加单个IP的方法:

cd /etc/sysconfig/network-scripts  
cp ifcfg-eth0 ifcfg-eth0:0  
vim ifcfg-eth0:0  
DEVICE=eth0:0           #此处添加:0,保持和文件名一致,添加多个IP依次递增  
ONBOOT=yes              #是否开机激活  
BOOTPROTO=static        #静态IP,如果需要DHCP获取请输入dhcp  
IPADDR=192.168.0.2      #此处修改为要添加的IP  
NETMASK=255.255.255.0   #子网掩码根据你的实际情况作修改  

Continue reading