github.com/toplink-cn/moby@v0.0.0-20240305205811-460b4aebdf81/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 )