Oracle??IP??????????????CIDR???
???????????? ???????[ 2014/8/1 10:06:09 ] ????????????? IP ????
??????????????????:??????д洢??IP????????IP?????????????????????CIDR???????????????????????????CIDR?????????????????????е?IP????????????????????????IP?????58.247.221.238????????255.255.255.252?????????????58.247.221.236/30??
???????????:???????????IP????????????λ?????????????????????.Google??£???????IPv4?????????????????????????????????????????????????Oracle ?????bitand??????????????????????IP??????????????????IP???????????????????λ??????????????????????????????????????????????????????????????????????????/????CIDR??????????????????????????CIDR?????????????????????.
???????????????: ????58.247.221.236
????Sql????
????select inttoip(BITAND(dottedQuadToNumber('58.247.221.238')??
????ottedQuadToNumber('255.255.255.252'))) from dual
??????: ??????????????????:
????Sql????
CREATE OR REPLACE function dottedQuadToNumber ( dottedQuad IN VARCHAR2) return number is
Result NUMBER;
begin
Result:= (substr(dottedQuad ??
1??
(instr(dottedQuad ?? '.'?? 1?? 1 ) - 1))
* 256 * 256 * 256
) +
(substr(dottedQuad ??
instr(dottedQuad ?? '.'?? 1?? 1 ) + 1??
instr(dottedQuad ?? '.'?? 1?? 2 ) -
instr(dottedQuad ?? '.'?? 1?? 1 ) - 1) * 256 * 256
) +
(substr(dottedQuad ??
instr(dottedQuad ?? '.'?? 1?? 2 ) + 1??
instr(dottedQuad ?? '.'?? 1?? 3 ) -
instr(dottedQuad ?? '.'?? 1?? 2 ) - 1) * 256
) +
(substr(dottedQuad ??
instr(dottedQuad ?? '.'?? 1?? 3 ) + 1)
) ;
return(Result );
end dottedQuadToNumber ;
???????????ip????????:
????Sql????
CREATE OR REPLACE function inttoip(ip_address integer) return varchar2
deterministic
is
begin
return to_char(mod(trunc(ip_address /256/ 256/256 )??256))
|| '.'|| to_char(mod(trunc(ip_address/ 256/256 )??256))
|| '.'|| to_char(mod(trunc(ip_address/ 256)??256 ))
|| '.'|| to_char(mod(ip_address?? 256));
end;
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11