summaryrefslogtreecommitdiffstats
path: root/sys/netinet/in.h
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-04-19 17:22:30 +0000
committerphk <phk@FreeBSD.org>1998-04-19 17:22:30 +0000
commit0f961b2277a016486da4e8a38c3c8e2e4630944d (patch)
treedab2408056e73a4bf215898ad9c415387ba1bb78 /sys/netinet/in.h
parent2a0789b2755b8c87f0e0ce2798d896682b923aa4 (diff)
downloadFreeBSD-src-0f961b2277a016486da4e8a38c3c8e2e4630944d.zip
FreeBSD-src-0f961b2277a016486da4e8a38c3c8e2e4630944d.tar.gz
According to:
ftp://ftp.isi.edu/in-notes/iana/assignments/port-numbers port numbers are divided into three ranges: 0 - 1023 Well Known Ports 1024 - 49151 Registered Ports 49152 - 65535 Dynamic and/or Private Ports This patch changes the "local port range" from 40000-44999 to the range shown above (plus fix the comment in in_pcb.c). WARNING: This may have an impact on firewall configurations! PR: 5402 Reviewed by: phk Submitted by: Stephen J. Roznowski <sjr@home.net>
Diffstat (limited to 'sys/netinet/in.h')
-rw-r--r--sys/netinet/in.h17
1 files changed, 14 insertions, 3 deletions
diff --git a/sys/netinet/in.h b/sys/netinet/in.h
index 4d5467f..da5c420 100644
--- a/sys/netinet/in.h
+++ b/sys/netinet/in.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)in.h 8.3 (Berkeley) 1/3/94
- * $Id: in.h,v 1.29 1998/02/25 02:14:03 julian Exp $
+ * $Id: in.h,v 1.30 1998/02/25 02:35:35 julian Exp $
*/
#ifndef _NETINET_IN_H_
@@ -180,6 +180,17 @@
* Such a firewall configuration will generally depend on the use of these
* default values. If you change them, you may find your Security
* Administrator looking for you with a heavy object.
+ *
+ * For a slightly more orthodox text view on this:
+ *
+ * ftp://ftp.isi.edu/in-notes/iana/assignments/port-numbers
+ *
+ * port numbers are divided into three ranges:
+ *
+ * 0 - 1023 Well Known Ports
+ * 1024 - 49151 Registered Ports
+ * 49152 - 65535 Dynamic and/or Private Ports
+ *
*/
/*
@@ -194,8 +205,8 @@
/*
* Default local port range to use by setting IP_PORTRANGE_HIGH
*/
-#define IPPORT_HIFIRSTAUTO 40000
-#define IPPORT_HILASTAUTO 44999
+#define IPPORT_HIFIRSTAUTO 49152
+#define IPPORT_HILASTAUTO 65535
/*
* Scanning for a free reserved port return a value below IPPORT_RESERVED,
OpenPOWER on IntegriCloud