mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
commit
0a5eaec0f2
6
acme.sh
6
acme.sh
@ -1131,8 +1131,12 @@ _ss() {
|
|||||||
elif netstat -help 2>&1 | grep -- '-P protocol' >/dev/null; then
|
elif netstat -help 2>&1 | grep -- '-P protocol' >/dev/null; then
|
||||||
#for solaris
|
#for solaris
|
||||||
netstat -an -P tcp | grep "\.$_port " | grep "LISTEN"
|
netstat -an -P tcp | grep "\.$_port " | grep "LISTEN"
|
||||||
else
|
elif netstat -help 2>&1 | grep "\-p" >/dev/null; then
|
||||||
|
#for full linux
|
||||||
netstat -ntpl | grep ":$_port "
|
netstat -ntpl | grep ":$_port "
|
||||||
|
else
|
||||||
|
#for busybox (embedded linux; no pid support)
|
||||||
|
netstat -ntl 2>/dev/null | grep ":$_port "
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
Reference in New Issue
Block a user