Browse Source

enable cloaking by default

tags/v2.1.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
215d36cff1
2 changed files with 13 additions and 9 deletions
  1. 6
    4
      conventional.yaml
  2. 7
    5
      oragono.yaml

+ 6
- 4
conventional.yaml View File

@@ -110,8 +110,9 @@ server:
110 110
     # already up and running is problematic).
111 111
     casemapping: "precis"
112 112
 
113
-    # whether to look up user hostnames with reverse DNS
114
-    # (to suppress this for privacy purposes, use the ip-cloaking options below)
113
+    # whether to look up user hostnames with reverse DNS.
114
+    # (disabling this will expose user IPs instead of hostnames;
115
+    # to make IP/hostname information private, see the ip-cloaking section)
115 116
     lookup-hostnames: true
116 117
     # whether to confirm hostname lookups using "forward-confirmed reverse DNS", i.e., for
117 118
     # any hostname returned from reverse DNS, resolve it back to an IP address and reject it
@@ -230,8 +231,9 @@ server:
230 231
         # whether to enable IP cloaking
231 232
         enabled: false
232 233
 
233
-        # fake TLD at the end of the hostname, e.g., pwbs2ui4377257x8.oragono
234
-        netname: "oragono"
234
+        # fake TLD at the end of the hostname, e.g., pwbs2ui4377257x8.irc
235
+        # you may want to use your network name here
236
+        netname: "irc"
235 237
 
236 238
         # the cloaked hostname is derived only from the CIDR (most significant bits
237 239
         # of the IP address), up to a configurable number of bits. this is the

+ 7
- 5
oragono.yaml View File

@@ -131,8 +131,9 @@ server:
131 131
     # already up and running is problematic).
132 132
     casemapping: "precis"
133 133
 
134
-    # whether to look up user hostnames with reverse DNS
135
-    # (to suppress this for privacy purposes, use the ip-cloaking options below)
134
+    # whether to look up user hostnames with reverse DNS.
135
+    # (disabling this will expose user IPs instead of hostnames;
136
+    # to make IP/hostname information private, see the ip-cloaking section)
136 137
     lookup-hostnames: true
137 138
     # whether to confirm hostname lookups using "forward-confirmed reverse DNS", i.e., for
138 139
     # any hostname returned from reverse DNS, resolve it back to an IP address and reject it
@@ -249,10 +250,11 @@ server:
249 250
     # IP is not already known, it is infeasible to recover it from the cloaked name.
250 251
     ip-cloaking:
251 252
         # whether to enable IP cloaking
252
-        enabled: false
253
+        enabled: true
253 254
 
254
-        # fake TLD at the end of the hostname, e.g., pwbs2ui4377257x8.oragono
255
-        netname: "oragono"
255
+        # fake TLD at the end of the hostname, e.g., pwbs2ui4377257x8.irc
256
+        # you may want to use your network name here
257
+        netname: "irc"
256 258
 
257 259
         # the cloaked hostname is derived only from the CIDR (most significant bits
258 260
         # of the IP address), up to a configurable number of bits. this is the

Loading…
Cancel
Save