在ruby中将ip地址转换为32位整数

前端之家收集整理的这篇文章主要介绍了在ruby中将ip地址转换为32位整数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图找到一种方法Ruby地址转换为32位整数,用于木偶模板.

这就是我在bash中进行转换的方式.

root@ubuntu-server2:~# cat test.sh 
#!/bin/bash

#eth0 address is 10.0.2.15
privip=`ifconfig eth0 | grep "inet addr:" | cut -d : -f 2 | cut -d " " -f 1` ;

echo "Private IP: ${privip}" ;

# Turn it into unsigned 32-bit integer

ipiter=3 ;

for ipoctet in `echo ${privip} | tr . " "` ;
    do
    ipint=$(( ipint + ( ipoctet * 256 ** ipiter-- ) )) ;
    done ;

echo "Private IP int32: ${ipint}" ;

.

root@ubuntu-server2:~# bash test.sh 
Private IP: 10.0.2.15
Private IP int32: 167772687

任何帮助将不胜感激.

解决方法

require 'ipaddr'
ip = IPAddr.new "10.0.2.15"
ip.to_i                      # 167772687
原文链接:https://www.f2er.com/ruby/271058.html

猜你在找的Ruby相关文章