|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /proc/self/root/var/arpwatch/ |
Upload File : |
#!/bin/sh
# @(#) $Id: arp2ethers,v 1.4 2002/01/05 19:40:47 leres Exp $ (LBL)
#
# Convert arp.dat to ethers format
#
# - sort on timestamp, newest first
# - discard entries without simple hostnames
# - discard all but first occurance of each ethernet address
# - discard entires with raw ip addresses for simple names
# - remove ip address and timestamp fields
# - append "-ip" to hosts with decnet address too
# - append "-old", "-old1", etc. as necessary
# - sort
#
sort -k 2 -rn arp.dat | \
awk 'NF == 4 { print }' | \
awk -f p.awk | \
egrep -v '\.[0-9][0-9]*$' | \
sed -e 's/ .* / /' | \
awk -f d.awk | \
awk -f e.awk | \
sort