mirror of
				https://github.com/hiskang/acme.sh
				synced 2025-11-04 12:28:12 +00:00 
			
		
		
		
	compatible for netstat on FreeBSD
This commit is contained in:
		
							parent
							
								
									50a4ef9cca
								
							
						
					
					
						commit
						edf08da6f3
					
				
							
								
								
									
										21
									
								
								le.sh
									
									
									
									
									
								
							
							
						
						
									
										21
									
								
								le.sh
									
									
									
									
									
								
							@ -181,21 +181,28 @@ _sign() {
 | 
			
		||||
 | 
			
		||||
_ss() {
 | 
			
		||||
  _port="$1"
 | 
			
		||||
  if command -v "netstat" >/dev/null 2>&1 ; then
 | 
			
		||||
  
 | 
			
		||||
  if _exists "ss" ; then
 | 
			
		||||
    _debug "Using: ss"
 | 
			
		||||
    ss -ntpl | grep :$_port" "
 | 
			
		||||
    return 0
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  if _exists "netstat" ; then
 | 
			
		||||
    _debug "Using: netstat"
 | 
			
		||||
    if netstat -h 2>&1 | grep "\-p proto" >/dev/null ; then
 | 
			
		||||
      #for windows version netstat tool
 | 
			
		||||
      netstat -anb -p tcp | grep "LISTENING" | grep :$_port" "
 | 
			
		||||
    else
 | 
			
		||||
      netstat -ntpl | grep :$_port" "
 | 
			
		||||
      if netstat -help 2>&1 | grep "-p protocol" >/dev/null ; then
 | 
			
		||||
        netstat -an -p tcp | grep LISTEN | grep :$_port" "
 | 
			
		||||
      else
 | 
			
		||||
        netstat -ntpl | grep :$_port" "
 | 
			
		||||
      fi
 | 
			
		||||
    fi
 | 
			
		||||
    return 0
 | 
			
		||||
  fi
 | 
			
		||||
  if command -v "ss" >/dev/null 2>&1 ; then
 | 
			
		||||
    _debug "Using: ss"
 | 
			
		||||
    ss -ntpl | grep :$_port" "
 | 
			
		||||
    return 0
 | 
			
		||||
  fi
 | 
			
		||||
 | 
			
		||||
  return 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user