Hi I have found the msExchSMTPGlobalIPDenyList attribute for the global IP deny list, but can find nothing on the format of the data within it. LDP says its a Binary blob and ADSView says its an OctetString and displays the data as hex (i.e. xff xac.) Can someone enlighten me on the data? I'd like to script lists into this, as typing in dotted decimal IP numbers and dotted decimal netmasks, quite frankly, bites. I have already made a script to convert ranges of IPs into the base IP and the associated netmask, but still need to get the data in. Thank you. Chas
Chas wrote in news:Xns979EB2284D1B8CHernandezedusympcom@207.46.248.16: > Hi I have found the msExchSMTPGlobalIPDenyList attribute for the > global IP deny list, but can find nothing on the format of the data > within it. LDP says its a Binary blob and ADSView says its an > OctetString and displays the data as hex (i.e. xff xac.) Can someone > enlighten me on the data? I'd like to script lists into this, as > typing in dotted decimal IP numbers and dotted decimal netmasks, quite > frankly, bites. I have already made a script to convert ranges of IPs > into the base IP and the associated netmask, but still need to get the > data in. Thank you. > Chas > I would like to import these IPs, they are for countries outside the USA. I can script the lists, but need to know what the data is/how it is compiled. Thanks.
after all IP addresses are 32 bit numbers.... so what you get is an array of numbers. if you will look at them in groups (of 32bit numbers) you will see the ip number. for example: 0x10100A0A is 16.16.10.10 0xFFFF0E0E is 255.255.14.14 good luck.