]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Default for ssl-port is port 853, the temporary port assignment
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 9 Oct 2015 07:55:21 +0000 (07:55 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 9 Oct 2015 07:55:21 +0000 (07:55 +0000)
  for secure domain name system traffic.
  If you used to rely on the older default of port 443, you have
  to put a clause in unbound.conf for that.  The new value is likely
  going to be the standardised port number for this traffic.

git-svn-id: file:///svn/unbound/trunk@3502 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
doc/example.conf.in
doc/unbound.conf.5.in
util/config_file.c

index e1710e78d744959d661694b4751a37106eba792c..0d8fafa43fd646aba7a7709ee1e5fd42932dc870 100644 (file)
@@ -1,3 +1,10 @@
+9 October 2015: Wouter
+       - Default for ssl-port is port 853, the temporary port assignment
+         for secure domain name system traffic.
+         If you used to rely on the older default of port 443, you have
+         to put a clause in unbound.conf for that.  The new value is likely
+         going to be the standardised port number for this traffic.
+
 6 October 2015: Wouter
        - 1.5.5 release.
        - trunk tracks the development of 1.5.6.
index e34fc3191798343fd7232f23aeb85348ebde7384..a89b228dbffc95752791e4dbd7382973de16abea 100644 (file)
@@ -552,7 +552,7 @@ server:
        # default is "" (disabled).  requires restart to take effect.
        # ssl-service-key: "path/to/privatekeyfile.key"
        # ssl-service-pem: "path/to/publiccertfile.pem"
-       # ssl-port: 443
+       # ssl-port: 853
 
        # request upstream over SSL (with plain DNS inside the SSL stream).
        # Default is no.  Can be turned on and off with unbound-control.
index 25c88fdd6b6e1570b701b52f958070fe5589e677..76058f2c4631cf6e508365cc9f0952d9837fe13b 100644 (file)
@@ -362,7 +362,7 @@ The public key certificate pem file for the ssl service.  Default is "",
 turned off.
 .TP
 .B ssl\-port: \fI<number>
-The port number on which to provide TCP SSL service, default 443, only
+The port number on which to provide TCP SSL service, default 853, only
 interfaces configured with that port number as @number get the SSL service.
 .TP
 .B do\-daemonize: \fI<yes or no>
index 211fffba4b885a447534b5dc6c57deff4ec791d4..db328f3307ba884de0d01aa896716fae3a9db973 100644 (file)
@@ -100,7 +100,7 @@ config_create(void)
        cfg->tcp_upstream = 0;
        cfg->ssl_service_key = NULL;
        cfg->ssl_service_pem = NULL;
-       cfg->ssl_port = 443;
+       cfg->ssl_port = 853;
        cfg->ssl_upstream = 0;
        cfg->use_syslog = 1;
        cfg->log_time_ascii = 0;