github.com/rish1988/moby@v25.0.2+incompatible/libnetwork/portallocator/portallocator_unix.go (about)

     1  //go:build !windows
     2  
     3  package portallocator
     4  
     5  const (
     6  	// defaultPortRangeStart indicates the first port in port range
     7  	defaultPortRangeStart = 49153
     8  	// defaultPortRangeEnd indicates the last port in port range
     9  	// consistent with default /proc/sys/net/ipv4/ip_local_port_range
    10  	// upper bound on linux
    11  	defaultPortRangeEnd = 65535
    12  )