github.com/docker/engine@v22.0.0-20211208180946-d456264580cf+incompatible/libnetwork/portallocator/portallocator_unix.go (about) 1 //go:build !windows 2 // +build !windows 3 4 package portallocator 5 6 const ( 7 // defaultPortRangeStart indicates the first port in port range 8 defaultPortRangeStart = 49153 9 // defaultPortRangeEnd indicates the last port in port range 10 // consistent with default /proc/sys/net/ipv4/ip_local_port_range 11 // upper bound on linux 12 defaultPortRangeEnd = 60999 13 )