mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
14 lines
193 B
Bash
Executable File
14 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# peer.sh
|
|
|
|
# set -x
|
|
|
|
REMOTE_MAC=`arp | grep $REMOTE_ADDR 2>/dev/null`
|
|
|
|
if [ -z "$ROW" ]; then
|
|
REMOTE_MAC=00:00:00:00:00:00
|
|
fi
|
|
|
|
echo "REMOTE_MAC=`echo $REMOTE_MAC | cut -d ' ' -f4`"
|