ip范围和cidr相互转换

 工具站 IP to CIDR online converter

CREATE TABLE `ip` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',

  `ip_cidr` varchar(64) default null,

  `ip_start` varchar(64) DEFAULT NULL,
  `ip_end` varchar(64) DEFAULT NULL,
		
  `iplong_start` int unsigned DEFAULT NULL,
  `iplong_end` int unsigned DEFAULT NULL,
 
  PRIMARY KEY (`id`) USING BTREE
) COMMENT='ip表';


-- ip to iplong
update ip
set iplong_start = INET_ATON(ip_start),
iplong_end = INET_ATON(ip_end)



-- 猜cidr偏移值
set @off = 23;
update ip
set ip_cidr = CONCAT(ip_start , "/" , @off)
where INET_NTOA( INET_ATON(ip_start)	| ((0x100000000 >> @off ) -1 )) = ip_end



-- 根据 ip范围 计算 cidr
delimiter // 
drop procedure if exists test; 
create procedure test()     
begin
		declare i int;      
		set i = 0;         
		while i <= 32 do 
				
			update ip
			set ip_cidr = CONCAT(ip_start , "/" , i)
			where INET_NTOA( INET_ATON(ip_start)	| ((0x100000000 >> i ) -1 )) = ip_end;

			set i = i + 1;   			
		end while;
		
end
//                                     
call test(); 





-- 根据 cidr 计算 ip范围
SELECT
	INET_NTOA(
		INET_ATON(SUBSTRING_INDEX(ip_cidr, '/', 1)) & 0xffffffff ^ ((0x1 << ( 32 - SUBSTRING_INDEX(ip_cidr, '/', -1)) ) -1 )
	) start_ip,
	INET_NTOA(
		INET_ATON( SUBSTRING_INDEX(ip_cidr, '/', 1)) | ((0x100000000 >> SUBSTRING_INDEX(ip_cidr, '/', -1) ) -1 )
	) end_ip
FROM ip;


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值