github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/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  )