hi pete bassill, can you give your email or another way that i can contact you, and not sure both of this mail "splunk.ronin@binaryarp.com","splunk.ninjas@binaryarp.com" it can use.
my email : claudiusrtp@gmail.com
... View more
python script like this for convers form decimal to ip
ipint = int(<input from splunk search>)
ip=""
for i in range(4):
ip1 = ""
for j in range(8):
# print ipint % 2
ip1=str(ipint % 2)+ip1
ipint = ipint >> 1
# print ip1
print ip1
ip = str(int(ip1,2)) + "." + ip
print ip.strip(".")
if i want to create command for use with splunk search!! What splunk module or method i need to use for python script.
... View more