_mac_addresses: Try local interfaces with "ip link" if ifconfig is N/A.
This commit is contained in:
parent
19ce23282c
commit
b78ef321be
@ -821,12 +821,15 @@ _mac_addresses()
|
|||||||
local re='\([A-Fa-f0-9]\{2\}:\)\{5\}[A-Fa-f0-9]\{2\}'
|
local re='\([A-Fa-f0-9]\{2\}:\)\{5\}[A-Fa-f0-9]\{2\}'
|
||||||
local PATH="$PATH:/sbin:/usr/sbin"
|
local PATH="$PATH:/sbin:/usr/sbin"
|
||||||
|
|
||||||
# Local interfaces (Linux: HWaddr or ether, FreeBSD: ether)
|
# Local interfaces
|
||||||
COMPREPLY+=( $( ifconfig -a 2>/dev/null | sed -ne \
|
# - ifconfig on Linux: HWaddr or ether
|
||||||
|
# - ifconfig on FreeBSD: ether
|
||||||
|
# - ip link: link/ether
|
||||||
|
COMPREPLY+=( $( { ifconfig -a || ip link show; } 2>/dev/null | sed -ne \
|
||||||
"s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]].*/\1/p" -ne \
|
"s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]].*/\1/p" -ne \
|
||||||
"s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p" -ne \
|
"s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p" -ne \
|
||||||
"s/.*[[:space:]]ether[[:space:]]\{1,\}\($re\)[[:space:]].*/\1/p" -ne \
|
"s|.*[[:space:]]\(link/\)\{0,1\}ether[[:space:]]\{1,\}\($re\)[[:space:]].*|\2|p" -ne \
|
||||||
"s/.*[[:space:]]ether[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p"
|
"s|.*[[:space:]]\(link/\)\{0,1\}ether[[:space:]]\{1,\}\($re\)[[:space:]]*$|\2|p"
|
||||||
) )
|
) )
|
||||||
|
|
||||||
# ARP cache
|
# ARP cache
|
||||||
|
Loading…
x
Reference in New Issue
Block a user