summaryrefslogtreecommitdiffstats
path: root/people/arping_users.py
diff options
context:
space:
mode:
authorroot <root@krebs>2011-06-30 01:05:00 +0200
committerroot <root@krebs>2011-06-30 01:05:00 +0200
commit6ee3199fafcd78037dee990bd3bb164394c96706 (patch)
tree4f629d09b26e7886d30fb5d0e8701cc22dd1cce0 /people/arping_users.py
parent16adb101bc87b9abd79c1b71aba186754c131036 (diff)
updated people script
mac_names updated with more names
Diffstat (limited to 'people/arping_users.py')
-rwxr-xr-xpeople/arping_users.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/people/arping_users.py b/people/arping_users.py
index c576e4f3..008fe337 100755
--- a/people/arping_users.py
+++ b/people/arping_users.py
@@ -21,7 +21,7 @@ def load_names(MAC_NAMES):
names = {}
f = open(MAC_NAMES)
for l in f:
- mac,name = l.split()
+ mac,name = l.split(' ',1)
names[mac] = name.replace('\n','')
f.close()
return names
@@ -29,7 +29,7 @@ def load_names(MAC_NAMES):
def arping_helper(dic):
return arpingy(**dic)
-for first in range(4):
+for first in range(1,3):
for second in range(255):
data.append({'iprange':'10.42.'+str(first)+'.'+str(second),'iface':DEV})
@@ -50,5 +50,3 @@ for p in ret:
print p[0] + " => " + p[1]
if p[1] in names:
print names[p[1]]+ " is online"
-
-