1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="generator" content="AsciiDoc 9.1.1" />
<title>TOR(1)</title>
<style type="text/css">
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
/* Default font. */
body {
font-family: Georgia,serif;
}
/* Title font. */
h1, h2, h3, h4, h5, h6,
div.title, caption.title,
thead, p.table.header,
#toctitle,
#author, #revnumber, #revdate, #revremark,
#footer {
font-family: Arial,Helvetica,sans-serif;
}
body {
margin: 1em 5% 1em 5%;
}
a {
color: blue;
text-decoration: underline;
}
a:visited {
color: fuchsia;
}
em {
font-style: italic;
color: navy;
}
strong {
font-weight: bold;
color: #083194;
}
h1, h2, h3, h4, h5, h6 {
color: #527bbd;
margin-top: 1.2em;
margin-bottom: 0.5em;
line-height: 1.3;
}
h1, h2, h3 {
border-bottom: 2px solid silver;
}
h2 {
padding-top: 0.5em;
}
h3 {
float: left;
}
h3 + * {
clear: left;
}
h5 {
font-size: 1.0em;
}
div.sectionbody {
margin-left: 0;
}
hr {
border: 1px solid silver;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
ul, ol, li > p {
margin-top: 0;
}
ul > li { color: #aaa; }
ul > li > * { color: black; }
.monospaced, code, pre {
font-family: "Courier New", Courier, monospace;
font-size: inherit;
color: navy;
padding: 0;
margin: 0;
}
pre {
white-space: pre-wrap;
}
#author {
color: #527bbd;
font-weight: bold;
font-size: 1.1em;
}
#email {
}
#revnumber, #revdate, #revremark {
}
#footer {
font-size: small;
border-top: 2px solid silver;
padding-top: 0.5em;
margin-top: 4.0em;
}
#footer-text {
float: left;
padding-bottom: 0.5em;
}
#footer-badges {
float: right;
padding-bottom: 0.5em;
}
#preamble {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
div.imageblock, div.exampleblock, div.verseblock,
div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
div.admonitionblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.admonitionblock {
margin-top: 2.0em;
margin-bottom: 2.0em;
margin-right: 10%;
color: #606060;
}
div.content { /* Block element content. */
padding: 0;
}
/* Block element titles. */
div.title, caption.title {
color: #527bbd;
font-weight: bold;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
}
div.title + * {
margin-top: 0;
}
td div.title:first-child {
margin-top: 0.0em;
}
div.content div.title:first-child {
margin-top: 0.0em;
}
div.content + div.title {
margin-top: 0.0em;
}
div.sidebarblock > div.content {
background: #ffffee;
border: 1px solid #dddddd;
border-left: 4px solid #f0f0f0;
padding: 0.5em;
}
div.listingblock > div.content {
border: 1px solid #dddddd;
border-left: 5px solid #f0f0f0;
background: #f8f8f8;
padding: 0.5em;
}
div.quoteblock, div.verseblock {
padding-left: 1.0em;
margin-left: 1.0em;
margin-right: 10%;
border-left: 5px solid #f0f0f0;
color: #888;
}
div.quoteblock > div.attribution {
padding-top: 0.5em;
text-align: right;
}
div.verseblock > pre.content {
font-family: inherit;
font-size: inherit;
}
div.verseblock > div.attribution {
padding-top: 0.75em;
text-align: left;
}
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
div.verseblock + div.attribution {
text-align: left;
}
div.admonitionblock .icon {
vertical-align: top;
font-size: 1.1em;
font-weight: bold;
text-decoration: underline;
color: #527bbd;
padding-right: 0.5em;
}
div.admonitionblock td.content {
padding-left: 0.5em;
border-left: 3px solid #dddddd;
}
div.exampleblock > div.content {
border-left: 3px solid #dddddd;
padding-left: 0.5em;
}
div.imageblock div.content { padding-left: 0; }
span.image img { border-style: none; vertical-align: text-bottom; }
a.image:visited { color: white; }
dl {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
dt {
margin-top: 0.5em;
margin-bottom: 0;
font-style: normal;
color: navy;
}
dd > *:first-child {
margin-top: 0.1em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
div.compact ul, div.compact ol,
div.compact p, div.compact p,
div.compact div, div.compact div {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
tfoot {
font-weight: bold;
}
td > div.verse {
white-space: pre;
}
div.hdlist {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
div.hdlist tr {
padding-bottom: 15px;
}
dt.hdlist1.strong, td.hdlist1.strong {
font-weight: bold;
}
td.hdlist1 {
vertical-align: top;
font-style: normal;
padding-right: 0.8em;
color: navy;
}
td.hdlist2 {
vertical-align: top;
}
div.hdlist.compact tr {
margin: 0;
padding-bottom: 0;
}
.comment {
background: yellow;
}
.footnote, .footnoteref {
font-size: 0.8em;
}
span.footnote, span.footnoteref {
vertical-align: super;
}
#footnotes {
margin: 20px 0 20px 0;
padding: 7px 0 0 0;
}
#footnotes div.footnote {
margin: 0 0 5px 0;
}
#footnotes hr {
border: none;
border-top: 1px solid silver;
height: 1px;
text-align: left;
margin-left: 0;
width: 20%;
min-width: 100px;
}
div.colist td {
padding-right: 0.5em;
padding-bottom: 0.3em;
vertical-align: top;
}
div.colist td img {
margin-top: 0.3em;
}
@media print {
#footer-badges { display: none; }
}
#toc {
margin-bottom: 2.5em;
}
#toctitle {
color: #527bbd;
font-size: 1.1em;
font-weight: bold;
margin-top: 1.0em;
margin-bottom: 0.1em;
}
div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
margin-top: 0;
margin-bottom: 0;
}
div.toclevel2 {
margin-left: 2em;
font-size: 0.9em;
}
div.toclevel3 {
margin-left: 4em;
font-size: 0.9em;
}
div.toclevel4 {
margin-left: 6em;
font-size: 0.9em;
}
span.aqua { color: aqua; }
span.black { color: black; }
span.blue { color: blue; }
span.fuchsia { color: fuchsia; }
span.gray { color: gray; }
span.green { color: green; }
span.lime { color: lime; }
span.maroon { color: maroon; }
span.navy { color: navy; }
span.olive { color: olive; }
span.purple { color: purple; }
span.red { color: red; }
span.silver { color: silver; }
span.teal { color: teal; }
span.white { color: white; }
span.yellow { color: yellow; }
span.aqua-background { background: aqua; }
span.black-background { background: black; }
span.blue-background { background: blue; }
span.fuchsia-background { background: fuchsia; }
span.gray-background { background: gray; }
span.green-background { background: green; }
span.lime-background { background: lime; }
span.maroon-background { background: maroon; }
span.navy-background { background: navy; }
span.olive-background { background: olive; }
span.purple-background { background: purple; }
span.red-background { background: red; }
span.silver-background { background: silver; }
span.teal-background { background: teal; }
span.white-background { background: white; }
span.yellow-background { background: yellow; }
span.big { font-size: 2em; }
span.small { font-size: 0.6em; }
span.underline { text-decoration: underline; }
span.overline { text-decoration: overline; }
span.line-through { text-decoration: line-through; }
div.unbreakable { page-break-inside: avoid; }
/*
* xhtml11 specific
*
* */
div.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
div.tableblock > table {
border: 3px solid #527bbd;
}
thead, p.table.header {
font-weight: bold;
color: #527bbd;
}
p.table {
margin-top: 0;
}
/* Because the table frame attribute is overridden by CSS in most browsers. */
div.tableblock > table[frame="void"] {
border-style: none;
}
div.tableblock > table[frame="hsides"] {
border-left-style: none;
border-right-style: none;
}
div.tableblock > table[frame="vsides"] {
border-top-style: none;
border-bottom-style: none;
}
/*
* html5 specific
*
* */
table.tableblock {
margin-top: 1.0em;
margin-bottom: 1.5em;
}
thead, p.tableblock.header {
font-weight: bold;
color: #527bbd;
}
p.tableblock {
margin-top: 0;
}
table.tableblock {
border-width: 3px;
border-spacing: 0px;
border-style: solid;
border-color: #527bbd;
border-collapse: collapse;
}
th.tableblock, td.tableblock {
border-width: 1px;
padding: 4px;
border-style: solid;
border-color: #527bbd;
}
table.tableblock.frame-topbot {
border-left-style: hidden;
border-right-style: hidden;
}
table.tableblock.frame-sides {
border-top-style: hidden;
border-bottom-style: hidden;
}
table.tableblock.frame-none {
border-style: hidden;
}
th.tableblock.halign-left, td.tableblock.halign-left {
text-align: left;
}
th.tableblock.halign-center, td.tableblock.halign-center {
text-align: center;
}
th.tableblock.halign-right, td.tableblock.halign-right {
text-align: right;
}
th.tableblock.valign-top, td.tableblock.valign-top {
vertical-align: top;
}
th.tableblock.valign-middle, td.tableblock.valign-middle {
vertical-align: middle;
}
th.tableblock.valign-bottom, td.tableblock.valign-bottom {
vertical-align: bottom;
}
/*
* manpage specific
*
* */
body.manpage h1 {
padding-top: 0.5em;
padding-bottom: 0.5em;
border-top: 2px solid silver;
border-bottom: 2px solid silver;
}
body.manpage h2 {
border-style: none;
}
body.manpage div.sectionbody {
margin-left: 3em;
}
@media print {
body.manpage div#toc { display: none; }
}
</style>
<script type="text/javascript">
/*<+'])');
// Function that scans the DOM tree for header elements (the DOM2
// nodeIterator API would be a better technique but not supported by all
// browsers).
var iterate = function (el) {
for (var i = el.firstChild; i != null; i = i.nextSibling) {
if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
var mo = re.exec(i.tagName);
if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
}
iterate(i);
}
}
}
iterate(el);
return result;
}
var toc = document.getElementById("toc");
if (!toc) {
return;
}
// Delete existing TOC entries in case we're reloading the TOC.
var tocEntriesToRemove = [];
var i;
for (i = 0; i < toc.childNodes.length; i++) {
var entry = toc.childNodes[i];
if (entry.nodeName.toLowerCase() == 'div'
&& entry.getAttribute("class")
&& entry.getAttribute("class").match(/^toclevel/))
tocEntriesToRemove.push(entry);
}
for (i = 0; i < tocEntriesToRemove.length; i++) {
toc.removeChild(tocEntriesToRemove[i]);
}
// Rebuild TOC entries.
var entries = tocEntries(document.getElementById("content"), toclevels);
for (var i = 0; i < entries.length; ++i) {
var entry = entries[i];
if (entry.element.id == "")
entry.element.id = "_toc_" + i;
var a = document.createElement("a");
a.href = "#" + entry.element.id;
a.appendChild(document.createTextNode(entry.text));
var div = document.createElement("div");
div.appendChild(a);
div.className = "toclevel" + entry.toclevel;
toc.appendChild(div);
}
if (entries.length == 0)
toc.parentNode.removeChild(toc);
},
/////////////////////////////////////////////////////////////////////
// Footnotes generator
/////////////////////////////////////////////////////////////////////
/* Based on footnote generation code from:
* http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
*/
footnotes: function () {
// Delete existing footnote entries in case we're reloading the footnodes.
var i;
var noteholder = document.getElementById("footnotes");
if (!noteholder) {
return;
}
var entriesToRemove = [];
for (i = 0; i < noteholder.childNodes.length; i++) {
var entry = noteholder.childNodes[i];
if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")
entriesToRemove.push(entry);
}
for (i = 0; i < entriesToRemove.length; i++) {
noteholder.removeChild(entriesToRemove[i]);
}
// Rebuild footnote entries.
var cont = document.getElementById("content");
var spans = cont.getElementsByTagName("span");
var refs = {};
var n = 0;
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnote") {
n++;
var note = spans[i].getAttribute("data-note");
if (!note) {
// Use [\s\S] in place of . so multi-line matches work.
// Because JavaScript has no s (dotall) regex flag.
note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
spans[i].innerHTML =
"[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
spans[i].setAttribute("data-note", note);
}
noteholder.innerHTML +=
"<div class='footnote' id='_footnote_" + n + "'>" +
"<a href='#_footnoteref_" + n + "' title='Return to text'>" +
n + "</a>. " + note + "</div>";
var id =spans[i].getAttribute("id");
if (id != null) refs["#"+id] = n;
}
}
if (n == 0)
noteholder.parentNode.removeChild(noteholder);
else {
// Process footnoterefs.
for (i=0; i<spans.length; i++) {
if (spans[i].className == "footnoteref") {
var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
href = href.match(/#.*/)[0]; // Because IE return full URL.
n = refs[href];
spans[i].innerHTML =
"[<a href='#_footnote_" + n +
"' title='View footnote' class='footnote'>" + n + "</a>]";
}
}
}
},
install: function(toclevels) {
var timerId;
function reinstall() {
asciidoc.footnotes();
if (toclevels) {
asciidoc.toc(toclevels);
}
}
function reinstallAndRemoveTimer() {
clearInterval(timerId);
reinstall();
}
timerId = setInterval(reinstall, 500);
if (document.addEventListener)
document.addEventListener("DOMContentLoaded", reinstallAndRemoveTimer, false);
else
window.onload = reinstallAndRemoveTimer;
}
}
asciidoc.install(2);
/*]]>*/
</script>
</head>
<body class="manpage">
<div id="header">
<h1>
TOR(1) Manual Page
</h1>
<div id="toc">
<div id="toctitle">Table of Contents</div>
<noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
</div>
<h2>NAME</h2>
<div class="sectionbody">
<p>tor -
The second-generation onion router
</p>
</div>
</div>
<div id="content">
<div class="sect1">
<h2 id="_synopsis">SYNOPSIS</h2>
<div class="sectionbody">
<div class="paragraph"><p><strong>tor</strong> [<em>OPTION</em> <em>value</em>]…</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_description">DESCRIPTION</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tor is a connection-oriented anonymizing communication service. Users
choose a source-routed path through a set of nodes, and negotiate a
"virtual circuit" through the network. Each node in a virtual circuit
knows its predecessor and successor nodes, but no other nodes. Traffic
flowing down the circuit is unwrapped by a symmetric key at each node,
which reveals the downstream node.<br /></p></div>
<div class="paragraph"><p>Basically, Tor provides a distributed network of servers or relays
("onion routers"). Users bounce their TCP streams, including web
traffic, ftp, ssh, etc., around the network, so that recipients,
observers, and even the relays themselves have difficulty tracking the
source of the stream.</p></div>
<div class="admonitionblock">
<table><tr>
<td class="icon">
<div class="title">Note</div>
</td>
<td class="content">By default, <strong>tor</strong> acts as a client only. To help the network by
providing bandwidth as a relay, change the <strong>ORPort</strong> configuration
option as mentioned below. Please also consult the documentation on
the Tor Project’s website.</td>
</tr></table>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_command_line_options">COMMAND-LINE OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tor has a powerful command-line interface. This section lists optional
arguments you can specify at the command line using the <strong><code>tor</code></strong>
command.</p></div>
<div class="paragraph"><p>Configuration options can be specified on the command line in the
format <strong><code>--</code></strong><em>OptionName</em> <em>OptionValue</em>, on the command line in the
format <em>OptionName</em> <em>OptionValue</em>, or in a configuration file. For
instance, you can tell Tor to start listening for SOCKS connections on
port 9999 by passing either <strong><code>--SocksPort 9999</code></strong> or <strong><code>SocksPort
9999</code></strong> on the command line, or by specifying <strong><code>SocksPort 9999</code></strong> in
the configuration file. On the command line, quote option values that
contain spaces. For instance, if you want Tor to log all debugging
messages to <strong><code>debug.log</code></strong>, you must specify <strong><code>--Log "debug file
debug.log"</code></strong>.</p></div>
<div class="admonitionblock">
<table><tr>
<td class="icon">
<div class="title">Note</div>
</td>
<td class="content">Configuration options on the command line override those in
configuration files. See <strong><a href="#conf-format">THE CONFIGURATION FILE FORMAT</a></strong> for more information.</td>
</tr></table>
</div>
<div class="paragraph"><p>The following options in this section are only recognized on the
<strong><code>tor</code></strong> command line, not in a configuration file.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="opt-h"></a> <strong><code>-h</code></strong>, <strong><code>--help</code></strong>
</dt>
<dd>
<p>
Display a short help message and exit.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-f"></a> <strong><code>-f</code></strong>, <strong><code>--torrc-file</code></strong> <em>FILE</em>
</dt>
<dd>
<p>
Specify a new configuration file to contain further Tor configuration
options, or pass <strong>-</strong> to make Tor read its configuration from standard
input. (Default: <strong><code>@CONFDIR@/torrc</code></strong>, or <strong><code>$HOME/.torrc</code></strong> if
that file is not found.)
</p>
</dd>
<dt class="hdlist1">
<a id="opt-allow-missing-torrc"></a> <strong><code>--allow-missing-torrc</code></strong>
</dt>
<dd>
<p>
Allow the configuration file specified by <strong><code>-f</code></strong> to be missing,
if the defaults-torrc file (see below) is accessible.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-defaults-torrc"></a> <strong><code>--defaults-torrc</code></strong> <em>FILE</em>
</dt>
<dd>
<p>
Specify a file in which to find default values for Tor options. The
contents of this file are overridden by those in the regular
configuration file, and by those on the command line. (Default:
<strong><code>@CONFDIR@/torrc-defaults</code></strong>.)
</p>
</dd>
<dt class="hdlist1">
<a id="opt-ignore-missing-torrc"></a> <strong><code>--ignore-missing-torrc</code></strong>
</dt>
<dd>
<p>
Specify that Tor should treat a missing torrc file as though it
were empty. Ordinarily, Tor does this for missing default torrc files,
but not for those specified on the command line.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-hash-password"></a> <strong><code>--hash-password</code></strong> <em>PASSWORD</em>
</dt>
<dd>
<p>
Generate a hashed password for control port access.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-list-fingerprint"></a> <strong><code>--list-fingerprint</code></strong> [<em>key type</em>]
</dt>
<dd>
<p>
Generate your keys and output your nickname and fingerprint. Optionally,
you can specify the key type as <code>rsa</code> (default) or <code>ed25519</code>.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-verify-config"></a> <strong><code>--verify-config</code></strong>
</dt>
<dd>
<p>
Verify whether the configuration file is valid.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-dump-config"></a> <strong><code>--dump-config</code></strong> <strong><code>short</code></strong>|<strong><code>full</code></strong>
</dt>
<dd>
<p>
Write a list of Tor’s configured options to standard output.
When the <code>short</code> flag is selected, only write the options that
are different from their default values.
When <code>full</code> is selected, write every option.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-serviceinstall"></a> <strong><code>--service install</code></strong> [<strong><code>--options</code></strong> <em>command-line options</em>]
</dt>
<dd>
<p>
Install an instance of Tor as a Windows service, with the provided
command-line options. Current instructions can be found at
<a href="https://www.torproject.org/docs/faq#NTService">https://www.torproject.org/docs/faq#NTService</a>
</p>
</dd>
<dt class="hdlist1">
<a id="opt-service"></a> <strong><code>--service</code></strong> <strong><code>remove</code></strong>|<strong><code>start</code></strong>|<strong><code>stop</code></strong>
</dt>
<dd>
<p>
Remove, start, or stop a configured Tor Windows service.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-nt-service"></a> <strong><code>--nt-service</code></strong>
</dt>
<dd>
<p>
Used internally to implement a Windows service.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-list-torrc-options"></a> <strong><code>--list-torrc-options</code></strong>
</dt>
<dd>
<p>
List all valid options.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-list-deprecated-options"></a> <strong><code>--list-deprecated-options</code></strong>
</dt>
<dd>
<p>
List all valid options that are scheduled to become obsolete in a
future version. (This is a warning, not a promise.)
</p>
</dd>
<dt class="hdlist1">
<a id="opt-list-modules"></a> <strong><code>--list-modules</code></strong>
</dt>
<dd>
<p>
List whether each optional module has been compiled into Tor.
(Any module not listed is not optional in this version of Tor.)
</p>
</dd>
<dt class="hdlist1">
<a id="opt-version"></a> <strong><code>--version</code></strong>
</dt>
<dd>
<p>
Display Tor version and exit. The output is a single line of the format
"Tor version [version number]." (The version number format
is as specified in version-spec.txt.)
</p>
</dd>
<dt class="hdlist1">
<a id="opt-quiet"></a> <strong><code>--quiet</code></strong>|<strong><code>--hush</code></strong>
</dt>
<dd>
<p>
Override the default console logging behavior. By default, Tor
starts out logging messages at level "notice" and higher to the
console. It stops doing so after it parses its configuration, if
the configuration tells it to log anywhere else. These options
override the default console logging behavior. Use the
<strong><code>--hush</code></strong> option if you want Tor to log only warnings and
errors to the console, or use the <strong><code>--quiet</code></strong> option if you want
Tor not to log to the console at all.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-keygen"></a> <strong><code>--keygen</code></strong> [<strong><code>--newpass</code></strong>]
</dt>
<dd>
<p>
Running <strong><code>tor --keygen</code></strong> creates a new ed25519 master identity key
for a relay, or only a fresh temporary signing key and
certificate, if you already have a master key. Optionally, you
can encrypt the master identity key with a passphrase. When Tor
asks you for a passphrase and you don’t want to encrypt the master
key, just don’t enter any passphrase when asked.<br />
<br />
Use the <strong><code>--newpass</code></strong> option with <strong><code>--keygen</code></strong> only when you
need to add, change, or remove a passphrase on an existing ed25519
master identity key. You will be prompted for the old passphrase
(if any), and the new passphrase (if any).
</p>
<div class="admonitionblock">
<table><tr>
<td class="icon">
<div class="title">Note</div>
</td>
<td class="content">When generating a master key, you may want to use
<strong><code>--DataDirectory</code></strong> to control where the keys and certificates
will be stored, and <strong><code>--SigningKeyLifetime</code></strong> to control their
lifetimes. See <a href="#server-options">SERVER OPTIONS</a> to learn more about the
behavior of these options. You must have write access to the
specified DataDirectory.</td>
</tr></table>
</div>
<div class="paragraph"><p>To use the generated files, you must copy them to the
<em>DataDirectory</em>/<strong><code>keys</code></strong> directory of your Tor daemon, and
make sure that they are owned by the user actually running the Tor
daemon on your system.</p></div>
</dd>
<dt class="hdlist1">
<a id="opt-keygen-family"></a> <strong><code>--keygen-family</code></strong> <em>basename</em>
</dt>
<dd>
<p>
Generate a new family ID key in <em>basename</em><code>.secret_family_key</code>.
To use this key, install it on every relay in your family.
(Put it in the relay’s <code>KeyDirectory</code>.)
Also, store the corresponding family ID in <em>basename</em><code>.public_family_id</code>.
Then enable the corresponding FamilyID option on your relays.
This command overwrites these files if they already exist.
See <a href="https://community.torproject.org/relay/setup/post-install/family-ids/">https://community.torproject.org/relay/setup/post-install/family-ids/</a>
for more information.
</p>
</dd>
<dt class="hdlist1">
<strong><code>--passphrase-fd</code></strong> <em>FILEDES</em>
</dt>
<dd>
<p>
File descriptor to read the passphrase from. Note that unlike with the
tor-gencert program, the entire file contents are read and used as
the passphrase, including any trailing newlines.
If the file descriptor is not specified, the passphrase is read
from the terminal by default.
</p>
</dd>
<dt class="hdlist1">
<a id="opt-key-expiration"></a> <strong><code>--key-expiration</code></strong> [<em>purpose</em>] [<strong><code>--format</code></strong> <strong><code>iso8601</code></strong>|<strong><code>timestamp</code></strong>]
</dt>
<dd>
<p>
The <em>purpose</em> specifies which type of key certificate to determine
the expiration of. The only currently recognised <em>purpose</em> is
"sign".<br />
<br />
Running <strong><code>tor --key-expiration sign</code></strong> will attempt to find your
signing key certificate and will output, both in the logs as well
as to stdout. The optional <strong><code>--format</code></strong> argument lets you specify
the time format. Currently, <strong><code>iso8601</code></strong> and <strong><code>timestamp</code></strong> are
supported. If <strong><code>--format</code></strong> is not specified, the signing key
certificate’s expiration time will be in ISO-8601 format. For example,
the output sent to stdout will be of the form:
"signing-cert-expiry: 2017-07-25 08:30:15 UTC". If <strong><code>--format</code></strong> <strong><code>timestamp</code></strong>
is specified, the signing key certificate’s expiration time will be in
Unix timestamp format. For example, the output sent to stdout will be of the form:
"signing-cert-expiry: 1500971415".
</p>
</dd>
<dt class="hdlist1">
<a id="opt-dbg"></a> <strong>--dbg-</strong>…
</dt>
<dd>
<p>
Tor may support other options beginning with the string "dbg". These
are intended for use by developers to debug and test Tor. They are
not supported or guaranteed to be stable, and you should probably
not use them.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="conf-format">THE CONFIGURATION FILE FORMAT</h2>
<div class="sectionbody">
<div class="paragraph"><p>All configuration options in a configuration are written on a single line by
default. They take the form of an option name and a value, or an option name
and a quoted value (option value or option "value"). Anything after a #
character is treated as a comment. Options are
case-insensitive. C-style escaped characters are allowed inside quoted
values. To split one configuration entry into multiple lines, use a single
backslash character (\) before the end of the line. Comments can be used in
such multiline entries, but they must start at the beginning of a line.</p></div>
<div class="paragraph"><p>Configuration options can be imported from files or folders using the %include
option with the value being a path. This path can have wildcards. Wildcards are
expanded first, then sorted using lexical order. Then, for each matching file or
folder, the following rules are followed: if the path is a file, the options from
the file will be parsed as if they were written where the %include option is. If
the path is a folder, all files on that folder will be parsed following lexical
order. Files starting with a dot are ignored. Files in subfolders are ignored.
The %include option can be used recursively.
New configuration files or directories cannot be added to already running Tor
instance if <strong>Sandbox</strong> is enabled.</p></div>
<div class="paragraph"><p>The supported wildcards are * meaning any number of characters including none
and ? meaning exactly one character. These characters can be escaped by preceding
them with a backslash, except on Windows. Files starting with a dot are not matched
when expanding wildcards unless the starting dot is explicitly in the pattern, except
on Windows.</p></div>
<div class="paragraph"><p>By default, an option on the command line overrides an option found in the
configuration file, and an option in a configuration file overrides one in
the defaults file.</p></div>
<div class="paragraph"><p>This rule is simple for options that take a single value, but it can become
complicated for options that are allowed to occur more than once: if you
specify four SocksPorts in your configuration file, and one more SocksPort on
the command line, the option on the command line will replace <em>all</em> of the
SocksPorts in the configuration file. If this isn’t what you want, prefix
the option name with a plus sign (+), and it will be appended to the previous
set of options instead. For example, setting SocksPort 9100 will use only
port 9100, but setting +SocksPort 9100 will use ports 9100 and 9050 (because
this is the default).</p></div>
<div class="paragraph"><p>Alternatively, you might want to remove every instance of an option in the
configuration file, and not replace it at all: you might want to say on the
command line that you want no SocksPorts at all. To do that, prefix the
option name with a forward slash (/). You can use the plus sign (+) and the
forward slash (/) in the configuration file and on the command line.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_general_options">GENERAL OPTIONS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="AccelDir"></a> <strong>AccelDir</strong> <em>DIR</em>
</dt>
<dd>
<p>
Specify this option if using dynamic hardware acceleration and the engine
implementation library resides somewhere other than the OpenSSL default.
Can not be changed while tor is running.
</p>
</dd>
<dt class="hdlist1">
<a id="AccelName"></a> <strong>AccelName</strong> <em>NAME</em>
</dt>
<dd>
<p>
When using OpenSSL hardware crypto acceleration attempt to load the dynamic
engine of this name. This must be used for any dynamic hardware engine.
Names can be verified with the openssl engine command. Can not be changed
while tor is running.<br />
<br />
If the engine name is prefixed with a "!", then Tor will exit if the
engine cannot be loaded.
</p>
</dd>
<dt class="hdlist1">
<a id="AlternateBridgeAuthority"></a> <strong>AlternateBridgeAuthority</strong> [<em>nickname</em>] [<strong>flags</strong>] <em>ipv4address</em>:<em>port</em> <em> fingerprint</em>
</dt>
<dt class="hdlist1">
<a id="AlternateDirAuthority"></a> <strong>AlternateDirAuthority</strong> [<em>nickname</em>] [<strong>flags</strong>] <em>ipv4address</em>:<em>port</em> <em>fingerprint</em>
</dt>
<dd>
<p>
These options behave as DirAuthority, but they replace fewer of the
default directory authorities. Using
AlternateDirAuthority replaces the default Tor directory authorities, but
leaves the default bridge authorities in
place. Similarly,
AlternateBridgeAuthority replaces the default bridge authority,
but leaves the directory authorities alone.
</p>
</dd>
<dt class="hdlist1">
<a id="AvoidDiskWrites"></a> <strong>AvoidDiskWrites</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If non-zero, try to write to disk less frequently than we would otherwise.
This is useful when running on flash memory or other media that support
only a limited number of writes. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="BandwidthBurst"></a> <strong>BandwidthBurst</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
Limit the maximum token bucket size (also known as the burst) to the given
number of bytes in each direction. (Default: 1 GByte)
</p>
</dd>
<dt class="hdlist1">
<a id="BandwidthRate"></a> <strong>BandwidthRate</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
A token bucket limits the average incoming bandwidth usage on this node
to the specified number of bytes per second, and the average outgoing
bandwidth usage to that same value. If you want to run a relay in the
public network, this needs to be <em>at the very least</em> 75 KBytes for a
relay (that is, 600 kbits) or 50 KBytes for a bridge (400 kbits) — but of
course, more is better; we recommend at least 250 KBytes (2 mbits) if
possible. (Default: 1 GByte)<br />
<br />
Note that this option, and other bandwidth-limiting options, apply to TCP
data only: They do not count TCP headers or DNS traffic.<br />
<br />
Tor uses powers of two, not powers of ten, so 1 GByte is
1024*1024*1024 bytes as opposed to 1 billion bytes.<br />
<br />
With this option, and in other options that take arguments in bytes,
KBytes, and so on, other formats are also supported. Notably, "KBytes" can
also be written as "kilobytes" or "kb"; "MBytes" can be written as
"megabytes" or "MB"; "kbits" can be written as "kilobits"; and so forth.
Case doesn’t matter.
Tor also accepts "byte" and "bit" in the singular.
The prefixes "tera" and "T" are also recognized.
If no units are given, we default to bytes.
To avoid confusion, we recommend writing "bytes" or "bits" explicitly,
since it’s easy to forget that "B" means bytes, not bits.
</p>
</dd>
<dt class="hdlist1">
<a id="CacheDirectory"></a> <strong>CacheDirectory</strong> <em>DIR</em>
</dt>
<dd>
<p>
Store cached directory data in DIR. Can not be changed while tor is
running.
(Default: uses the value of DataDirectory.)
</p>
</dd>
<dt class="hdlist1">
<a id="CacheDirectoryGroupReadable"></a> <strong>CacheDirectoryGroupReadable</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read the
CacheDirectory. If the option is set to 1, make the CacheDirectory readable
by the default GID. If the option is "auto", then we use the
setting for DataDirectoryGroupReadable when the CacheDirectory is the
same as the DataDirectory, and 0 otherwise. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="CircuitPriorityHalflife"></a> <strong>CircuitPriorityHalflife</strong> <em>NUM</em>
</dt>
<dd>
<p>
If this value is set, we override the default algorithm for choosing which
circuit’s cell to deliver or relay next. It is delivered first to the
circuit that has the lowest weighted cell count, where cells are weighted
exponentially according to this value (in seconds). If the value is -1, it
is taken from the consensus if possible else it will fallback to the
default value of 30. Minimum: 1, Maximum: 2147483647. This can be defined
as a float value. This is an advanced option; you generally shouldn’t have
to mess with it. (Default: -1)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientTransportPlugin"></a> <strong>ClientTransportPlugin</strong> <em>transport</em> socks4|socks5 <em>IP</em>:<em>PORT</em>
</dt>
<dt class="hdlist1">
<a id="ClientTransportPlugin-2"></a> <strong>ClientTransportPlugin</strong> <em>transport</em> exec <em>path-to-binary</em> [options]
</dt>
<dd>
<p>
In its first form, when set along with a corresponding Bridge line, the Tor
client forwards its traffic to a SOCKS-speaking proxy on "IP:PORT".
(IPv4 addresses should written as-is; IPv6 addresses should be wrapped in
square brackets.) It’s the
duty of that proxy to properly forward the traffic to the bridge.<br />
<br />
In its second form, when set along with a corresponding Bridge line, the Tor
client launches the pluggable transport proxy executable in
<em>path-to-binary</em> using <em>options</em> as its command-line options, and
forwards its traffic to it. It’s the duty of that proxy to properly forward
the traffic to the bridge. (Default: none)
</p>
</dd>
<dt class="hdlist1">
<a id="ConfluxEnabled"></a> <strong>ConfluxEnabled</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
If this option is set to 1, general purpose traffic will use Conflux which
is traffic splitting among multiple legs (circuits). Onion services are not
supported at the moment. Default value is set to "auto" meaning the
consensus is used to decide unless set. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="ConfluxClientUX"></a> <strong>ConfluxClientUX</strong> <strong>throughput</strong>|<strong>latency</strong>|<strong>throughput_lowmem</strong>|<strong>latency_lowmem</strong>
</dt>
<dd>
<p>
This option configures the user experience that the client requests from
the exit, for data that the exit sends to the client. The default is
"throughput", which maximizes throughput. "Latency" will tell the exit to
only use the circuit with lower latency for all data. The lowmem versions
minimize queue usage memory at the client. (Default: "throughput")
</p>
</dd>
<dt class="hdlist1">
<a id="ConnLimit"></a> <strong>ConnLimit</strong> <em>NUM</em>
</dt>
<dd>
<p>
The minimum number of file descriptors that must be available to the Tor
process before it will start. Tor will ask the OS for as many file
descriptors as the OS will allow (you can find this by "ulimit -H -n").
If this number is less than ConnLimit, then Tor will refuse to start.<br />
<br />
Tor relays need thousands of sockets, to connect to every other relay.
If you are running a private bridge, you can reduce the number of sockets
that Tor uses. For example, to limit Tor to 500 sockets, run
"ulimit -n 500" in a shell. Then start tor in the same shell, with
<strong>ConnLimit 500</strong>. You may also need to set <strong>DisableOOSCheck 0</strong>.<br />
<br />
Unless you have severely limited sockets, you probably don’t need to
adjust <strong>ConnLimit</strong> itself. It has no effect on Windows, since that
platform lacks getrlimit(). (Default: 1000)
</p>
</dd>
<dt class="hdlist1">
<a id="ConstrainedSockets"></a> <strong>ConstrainedSockets</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set, Tor will tell the kernel to attempt to shrink the buffers for all
sockets to the size specified in <strong>ConstrainedSockSize</strong>. This is useful for
virtual servers and other environments where system level TCP buffers may
be limited. If you’re on a virtual server, and you encounter the "Error
creating network socket: No buffer space available" message, you are
likely experiencing this problem.<br />
<br />
The preferred solution is to have the admin increase the buffer pool for
the host itself via /proc/sys/net/ipv4/tcp_mem or equivalent facility;
this configuration option is a second-resort.<br />
<br />
The DirPort option should also not be used if TCP buffers are scarce. The
cached directory requests consume additional sockets which exacerbates
the problem.<br />
<br />
You should <strong>not</strong> enable this feature unless you encounter the "no buffer
space available" issue. Reducing the TCP buffers affects window size for
the TCP stream and will reduce throughput in proportion to round trip
time on long paths. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ConstrainedSockSize"></a> <strong>ConstrainedSockSize</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>
</dt>
<dd>
<p>
When <strong>ConstrainedSockets</strong> is enabled the receive and transmit buffers for
all sockets will be set to this limit. Must be a value between 2048 and
262144, in 1024 byte increments. Default of 8192 is recommended.
</p>
</dd>
<dt class="hdlist1">
<a id="ControlPort"></a> <strong>ControlPort</strong> [<em>address</em><strong>:</strong>]<em>port</em>|<strong>unix:</strong><em>path</em>|<strong>auto</strong> [<em>flags</em>]
</dt>
<dd>
<p>
If set, Tor will accept connections on this port and allow those
connections to control the Tor process using the Tor Control Protocol
(described in control-spec.txt in
<a href="https://spec.torproject.org">torspec</a>). Note: unless you also
specify one or more of <strong>HashedControlPassword</strong> or
<strong>CookieAuthentication</strong>, setting this option will cause Tor to allow
any process on the local host to control it. (Setting both authentication
methods means either method is sufficient to authenticate to Tor.) This
option is required for many Tor controllers; most use the value of 9051.
If a unix domain socket is used, you may quote the path using standard
C escape sequences. You can specify this directive multiple times, to
bind to multiple address/port pairs.
Set it to "auto" to have Tor pick a port for you. (Default: 0)<br />
<br />
Recognized flags are:
</p>
<div class="dlist"><dl>
<dt class="hdlist1">
<strong>GroupWritable</strong>
</dt>
<dd>
<p>
Unix domain sockets only: makes the socket get created as
group-writable.
</p>
</dd>
<dt class="hdlist1">
<strong>WorldWritable</strong>
</dt>
<dd>
<p>
Unix domain sockets only: makes the socket get created as
world-writable.
</p>
</dd>
<dt class="hdlist1">
<strong>RelaxDirModeCheck</strong>
</dt>
<dd>
<p>
Unix domain sockets only: Do not insist that the directory
that holds the socket be read-restricted.
</p>
</dd>
</dl></div>
</dd>
<dt class="hdlist1">
<a id="ControlPortFileGroupReadable"></a> <strong>ControlPortFileGroupReadable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read the
control port file. If the option is set to 1, make the control port
file readable by the default GID. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ControlPortWriteToFile"></a> <strong>ControlPortWriteToFile</strong> <em>Path</em>
</dt>
<dd>
<p>
If set, Tor writes the address and port of any control port it opens to
this address. Usable by controllers to learn the actual control port
when ControlPort is set to "auto".
</p>
</dd>
<dt class="hdlist1">
<a id="ControlSocket"></a> <strong>ControlSocket</strong> <em>Path</em>
</dt>
<dd>
<p>
Like ControlPort, but listens on a Unix domain socket, rather than a TCP
socket. <em>0</em> disables ControlSocket. (Unix and Unix-like systems only.)
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ControlSocketsGroupWritable"></a> <strong>ControlSocketsGroupWritable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read and
write unix sockets (e.g. ControlSocket). If the option is set to 1, make
the control socket readable and writable by the default GID. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="CookieAuthentication"></a> <strong>CookieAuthentication</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 1, allow connections on the control port
when the connecting process knows the contents of a file named
"control_auth_cookie", which Tor will create in its data directory. This
authentication method should only be used on systems with good filesystem
security. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="CookieAuthFile"></a> <strong>CookieAuthFile</strong> <em>Path</em>
</dt>
<dd>
<p>
If set, this option overrides the default location and file name
for Tor’s cookie file. (See <a href="#CookieAuthentication">CookieAuthentication</a>.)
</p>
</dd>
<dt class="hdlist1">
<a id="CookieAuthFileGroupReadable"></a> <strong>CookieAuthFileGroupReadable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read the
cookie file. If the option is set to 1, make the cookie file readable by
the default GID. [Making the file readable by other groups is not yet
implemented; let us know if you need this for some reason.] (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="CountPrivateBandwidth"></a> <strong>CountPrivateBandwidth</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set, then Tor’s rate-limiting applies not only to
remote connections, but also to connections to private addresses like
127.0.0.1 or 10.0.0.1. This is mostly useful for debugging
rate-limiting. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DataDirectory"></a> <strong>DataDirectory</strong> <em>DIR</em>
</dt>
<dd>
<p>
Store working data in DIR. Can not be changed while tor is running.
(Default: ~/.tor if your home directory is not /; otherwise,
@LOCALSTATEDIR@/lib/tor. On Windows, the default is
your ApplicationData folder.)
</p>
</dd>
<dt class="hdlist1">
<a id="DataDirectoryGroupReadable"></a> <strong>DataDirectoryGroupReadable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read the
DataDirectory. If the option is set to 1, make the DataDirectory readable
by the default GID. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DirAuthority"></a> <strong>DirAuthority</strong> [<em>nickname</em>] [<strong>flags</strong>] <em>ipv4address</em>:<em>dirport</em> <em>fingerprint</em>
</dt>
<dd>
<p>
Use a nonstandard authoritative directory server at the provided address
and port, with the specified key fingerprint. This option can be repeated
many times, for multiple authoritative directory servers. Flags are
separated by spaces, and determine what kind of an authority this directory
is. By default, an authority is not authoritative for any directory style
or version unless an appropriate flag is given.<br />
<br />
Tor will use this authority as a bridge authoritative directory if the
"bridge" flag is set. If a flag "orport=<strong>orport</strong>" is given, Tor will
use the given port when opening encrypted tunnels to the dirserver. If a
flag "weight=<strong>num</strong>" is given, then the directory server is chosen
randomly with probability proportional to that weight (default 1.0). If a
flag "v3ident=<strong>fp</strong>" is given, the dirserver is a v3 directory authority
whose v3 long-term signing key has the fingerprint <strong>fp</strong>. Lastly,
if an "ipv6=<strong>[</strong><em>ipv6address</em><strong>]</strong>:<em>orport</em>" flag is present, then
the directory authority is listening for IPv6 connections on the
indicated IPv6 address and OR Port.<br />
<br />
Tor will contact the authority at <em>ipv4address</em> to
download directory documents. Clients always use the ORPort. Relays
usually use the DirPort, but will use the ORPort in some circumstances.
If an IPv6 ORPort is supplied, clients will also download directory
documents at the IPv6 ORPort, if they are configured to use IPv6.<br />
<br />
If no <strong>DirAuthority</strong> line is given, Tor will use the default directory
authorities. NOTE: this option is intended for setting up a private Tor
network with its own directory authorities. If you use it, you will be
distinguishable from other users, because you won’t believe the same
authorities they do.
</p>
</dd>
<dt class="hdlist1">
<a id="DirAuthorityFallbackRate"></a> <strong>DirAuthorityFallbackRate</strong> <em>NUM</em>
</dt>
<dd>
<p>
When configured to use both directory authorities and fallback
directories, the directory authorities also work as fallbacks. They are
chosen with their regular weights, multiplied by this number, which
should be 1.0 or less. The default is less than 1, to reduce load on
authorities. (Default: 0.1)
</p>
</dd>
<dt class="hdlist1">
<a id="DisableAllSwap"></a> <strong>DisableAllSwap</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will attempt to lock all current and future memory pages,
so that memory cannot be paged out. Windows, OS X and Solaris are currently
not supported. We believe that this feature works on modern Gnu/Linux
distributions, and that it should work on *BSD systems (untested). This
option requires that you start your Tor as root, and you should use the
<strong>User</strong> option to properly reduce Tor’s privileges.
Can not be changed while tor is running. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DisableDebuggerAttachment"></a> <strong>DisableDebuggerAttachment</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will attempt to prevent basic debugging attachment attempts
by other processes. This may also keep Tor from generating core files if
it crashes. It has no impact for users who wish to attach if they
have CAP_SYS_PTRACE or if they are root. We believe that this feature
works on modern Gnu/Linux distributions, and that it may also work on *BSD
systems (untested). Some modern Gnu/Linux systems such as Ubuntu have the
kernel.yama.ptrace_scope sysctl and by default enable it as an attempt to
limit the PTRACE scope for all user processes by default. This feature will
attempt to limit the PTRACE scope for Tor specifically - it will not attempt
to alter the system wide ptrace scope as it may not even exist. If you wish
to attach to Tor with a debugger such as gdb or strace you will want to set
this to 0 for the duration of your debugging. Normal users should leave it
on. Disabling this option while Tor is running is prohibited. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="DisableNetwork"></a> <strong>DisableNetwork</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set, we don’t listen for or accept any connections
other than controller connections, and we close (and don’t reattempt)
any outbound
connections. Controllers sometimes use this option to avoid using
the network until Tor is fully configured. Tor will make still certain
network-related calls (like DNS lookups) as a part of its configuration
process, even if DisableNetwork is set. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ExtendByEd25519ID"></a> <strong>ExtendByEd25519ID</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
If this option is set to 1, we always try to include a relay’s Ed25519 ID
when telling the preceding relay in a circuit to extend to it.
If this option is set to 0, we never include Ed25519 IDs when extending
circuits. If the option is set to "auto", we obey a
parameter in the consensus document. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="ExtORPort"></a> <strong>ExtORPort</strong> [<em>address</em><strong>:</strong>]<em>port</em>|<strong>auto</strong>
</dt>
<dd>
<p>
Open this port to listen for Extended ORPort connections from your
pluggable transports.<br />
(Default: <strong>DataDirectory</strong>/extended_orport_auth_cookie)
</p>
</dd>
<dt class="hdlist1">
<a id="ExtORPortCookieAuthFile"></a> <strong>ExtORPortCookieAuthFile</strong> <em>Path</em>
</dt>
<dd>
<p>
If set, this option overrides the default location and file name
for the Extended ORPort’s cookie file — the cookie file is needed
for pluggable transports to communicate through the Extended ORPort.
</p>
</dd>
<dt class="hdlist1">
<a id="ExtORPortCookieAuthFileGroupReadable"></a> <strong>ExtORPortCookieAuthFileGroupReadable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read the
Extended OR Port cookie file. If the option is set to 1, make the cookie
file readable by the default GID. [Making the file readable by other
groups is not yet implemented; let us know if you need this for some
reason.] (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="FallbackDir"></a> <strong>FallbackDir</strong> <em>ipv4address</em>:<em>dirport</em> orport=<em>orport</em> id=<em>fingerprint</em> [weight=<em>num</em>] [ipv6=<strong>[</strong><em>ipv6address</em><strong>]</strong>:<em>orport</em>]
</dt>
<dd>
<p>
When tor is unable to connect to any directory cache for directory info
(usually because it doesn’t know about any yet) it tries a hard-coded
directory. Relays try one directory authority at a time. Clients try
multiple directory authorities and FallbackDirs, to avoid hangs on
startup if a hard-coded directory is down. Clients wait for a few seconds
between each attempt, and retry FallbackDirs more often than directory
authorities, to reduce the load on the directory authorities. <br />
<br />
FallbackDirs should be stable relays with stable IP addresses, ports,
and identity keys. They must have a DirPort.<br />
<br />
By default, the directory authorities are also FallbackDirs. Specifying a
FallbackDir replaces Tor’s default hard-coded FallbackDirs (if any).
(See <a href="#DirAuthority">DirAuthority</a> for an explanation of each flag.)
</p>
</dd>
<dt class="hdlist1">
<a id="FetchDirInfoEarly"></a> <strong>FetchDirInfoEarly</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will always fetch directory information like other
directory caches, even if you don’t meet the normal criteria for fetching
early. Normal users should leave it off. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="FetchDirInfoExtraEarly"></a> <strong>FetchDirInfoExtraEarly</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will fetch directory information before other directory
caches. It will attempt to download directory information closer to the
start of the consensus period. Normal users should leave it off.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="FetchHidServDescriptors"></a> <strong>FetchHidServDescriptors</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 0, Tor will never fetch any hidden service descriptors from the
rendezvous directories. This option is only useful if you’re using a Tor
controller that handles hidden service fetches for you. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="FetchServerDescriptors"></a> <strong>FetchServerDescriptors</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 0, Tor will never fetch any network status summaries or server
descriptors from the directory servers. This option is only useful if
you’re using a Tor controller that handles directory fetches for you.
(Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="FetchUselessDescriptors"></a> <strong>FetchUselessDescriptors</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will fetch every consensus flavor, and all server
descriptors and authority certificates referenced by those consensuses,
except for extra info descriptors. When this option is 1, Tor will also
keep fetching descriptors, even when idle.
If set to 0, Tor will avoid fetching useless descriptors: flavors that it
is not using to build circuits, and authority certificates it does not
trust. When Tor hasn’t built any application circuits, it will go idle,
and stop fetching descriptors. This option is useful if you’re using a
tor client with an external parser that uses a full consensus.
This option fetches all documents except extrainfo descriptors,
<strong>DirCache</strong> fetches and serves all documents except extrainfo
descriptors, <strong>DownloadExtraInfo</strong>* fetches extrainfo documents, and serves
them if <strong>DirCache</strong> is on, and <strong>UseMicrodescriptors</strong> changes the
flavor of consensuses and descriptors that is fetched and used for
building circuits. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="HardwareAccel"></a> <strong>HardwareAccel</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If non-zero, try to use built-in (static) crypto hardware acceleration when
available. Can not be changed while tor is running. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="HashedControlPassword"></a> <strong>HashedControlPassword</strong> <em>hashed_password</em>
</dt>
<dd>
<p>
Allow connections on the control port if they present
the password whose one-way hash is <em>hashed_password</em>. You
can compute the hash of a password by running "tor --hash-password
<em>password</em>". You can provide several acceptable passwords by using more
than one HashedControlPassword line.
</p>
</dd>
<dt class="hdlist1">
<a id="HTTPProxy"></a> <strong>HTTPProxy</strong> <em>host</em>[:<em>port</em>]
</dt>
<dd>
<p>
Tor will make all its directory requests through this host:port (or host:80
if port is not specified), rather than connecting directly to any directory
servers. (DEPRECATED: As of 0.3.1.0-alpha you should use HTTPSProxy.)
</p>
</dd>
<dt class="hdlist1">
<a id="HTTPProxyAuthenticator"></a> <strong>HTTPProxyAuthenticator</strong> <em>username:password</em>
</dt>
<dd>
<p>
If defined, Tor will use this username:password for Basic HTTP proxy
authentication, as in RFC 2617. This is currently the only form of HTTP
proxy authentication that Tor supports; feel free to submit a patch if you
want it to support others. (DEPRECATED: As of 0.3.1.0-alpha you should use
HTTPSProxyAuthenticator.)
</p>
</dd>
<dt class="hdlist1">
<a id="HTTPSProxy"></a> <strong>HTTPSProxy</strong> <em>host</em>[:<em>port</em>]
</dt>
<dd>
<p>
Tor will make all its OR (SSL) connections through this host:port (or
host:443 if port is not specified), via HTTP CONNECT rather than connecting
directly to servers. You may want to set <strong>FascistFirewall</strong> to restrict
the set of ports you might try to connect to, if your HTTPS proxy only
allows connecting to certain ports.
</p>
</dd>
<dt class="hdlist1">
<a id="HTTPSProxyAuthenticator"></a> <strong>HTTPSProxyAuthenticator</strong> <em>username:password</em>
</dt>
<dd>
<p>
If defined, Tor will use this username:password for Basic HTTPS proxy
authentication, as in RFC 2617. This is currently the only form of HTTPS
proxy authentication that Tor supports; feel free to submit a patch if you
want it to support others.
</p>
</dd>
<dt class="hdlist1">
<a id="KeepalivePeriod"></a> <strong>KeepalivePeriod</strong> <em>NUM</em>
</dt>
<dd>
<p>
To keep firewalls from expiring connections, send a padding keepalive cell
every NUM seconds on open connections that are in use. (Default: 5 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="KeepBindCapabilities"></a> <strong>KeepBindCapabilities</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
On Linux, when we are started as root and we switch our identity using
the <strong>User</strong> option, the <strong>KeepBindCapabilities</strong> option tells us whether to
try to retain our ability to bind to low ports. If this value is 1, we
try to keep the capability; if it is 0 we do not; and if it is <strong>auto</strong>,
we keep the capability only if we are configured to listen on a low port.
Can not be changed while tor is running.
(Default: auto.)
</p>
</dd>
<dt class="hdlist1">
<a id="Log"></a> <strong>Log</strong> <em>minSeverity</em>[-<em>maxSeverity</em>] <strong>stderr</strong>|<strong>stdout</strong>|<strong>syslog</strong>
</dt>
<dd>
<p>
Send all messages between <em>minSeverity</em> and <em>maxSeverity</em> to the standard
output stream, the standard error stream, or to the system log. (The
"syslog" value is only supported on Unix.) Recognized severity levels are
debug, info, notice, warn, and err. We advise using "notice" in most cases,
since anything more verbose may provide sensitive information to an
attacker who obtains the logs. If only one severity level is given, all
messages of that level or higher will be sent to the listed destination.<br />
<br />
Some low-level logs may be sent from signal handlers, so their destination
logs must be signal-safe. These low-level logs include backtraces,
logging function errors, and errors in code called by logging functions.
Signal-safe logs are always sent to stderr or stdout. They are also sent to
a limited number of log files that are configured to log messages at error
severity from the bug or general domains. They are never sent as syslogs,
control port log events, or to any API-based log
destinations.
</p>
</dd>
<dt class="hdlist1">
<a id="Log2"></a> <strong>Log</strong> <em>minSeverity</em>[-<em>maxSeverity</em>] <strong>file</strong> <em>FILENAME</em>
</dt>
<dd>
<p>
As above, but send log messages to the listed filename. The
"Log" option may appear more than once in a configuration file.
Messages are sent to all the logs that match their severity
level.
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="Log3"></a> <strong>Log</strong> <strong>[</strong><em>domain</em>,…<strong>]</strong><em>minSeverity</em>[-<em>maxSeverity</em>] … <strong>file</strong> <em>FILENAME</em><br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="Log4"></a> <strong>Log</strong> <strong>[</strong><em>domain</em>,…<strong>]</strong><em>minSeverity</em>[-<em>maxSeverity</em>] … <strong>stderr</strong>|<strong>stdout</strong>|<strong>syslog</strong>
</dt>
<dd>
<p>
As above, but select messages by range of log severity <em>and</em> by a
set of "logging domains". Each logging domain corresponds to an area of
functionality inside Tor. You can specify any number of severity ranges
for a single log statement, each of them prefixed by a comma-separated
list of logging domains. You can prefix a domain with ~ to indicate
negation, and use * to indicate "all domains". If you specify a severity
range without a list of domains, it matches all domains.<br />
<br />
This is an advanced feature which is most useful for debugging one or two
of Tor’s subsystems at a time.<br />
<br />
The currently recognized domains are: general, crypto, net, config, fs,
protocol, mm, http, app, control, circ, rend, bug, dir, dirserv, or, edge,
acct, hist, handshake, heartbeat, channel, sched, guard, consdiff, dos,
process, pt, btrack, and mesg.
Domain names are case-insensitive.<br />
<br />
For example, "<code>Log [handshake]debug [~net,~mm]info notice stdout</code>" sends
to stdout: all handshake messages of any severity, all info-and-higher
messages from domains other than networking and memory management, and all
messages of severity notice or higher.
</p>
</dd>
<dt class="hdlist1">
<a id="LogMessageDomains"></a> <strong>LogMessageDomains</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If 1, Tor includes message domains with each log message. Every log
message currently has at least one domain; most currently have exactly
one. This doesn’t affect controller log messages. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="LogTimeGranularity"></a> <strong>LogTimeGranularity</strong> <em>NUM</em>
</dt>
<dd>
<p>
Set the resolution of timestamps in Tor’s logs to NUM milliseconds.
NUM must be positive and either a divisor or a multiple of 1 second.
Note that this option only controls the granularity written by Tor to
a file or console log. Tor does not (for example) "batch up" log
messages to affect times logged by a controller, times attached to
syslog messages, or the mtime fields on log files. (Default: 1 second)
</p>
</dd>
<dt class="hdlist1">
<a id="MaxAdvertisedBandwidth"></a> <strong>MaxAdvertisedBandwidth</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
If set, we will not advertise more than this amount of bandwidth for our
BandwidthRate. Server operators who want to reduce the number of clients
who ask to build circuits through them (since this is proportional to
advertised bandwidth rate) can thus reduce the CPU demands on their server
without impacting network performance.
</p>
</dd>
<dt class="hdlist1">
<a id="MaxUnparseableDescSizeToLog"></a> <strong>MaxUnparseableDescSizeToLog</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>
</dt>
<dd>
<p>
Unparseable descriptors (e.g. for votes, consensuses, routers) are logged
in separate files by hash, up to the specified size in total. Note that
only files logged during the lifetime of this Tor process count toward the
total; this is intended to be used to debug problems without opening live
servers to resource exhaustion attacks. (Default: 10 MBytes)
</p>
</dd>
<dt class="hdlist1">
<a id="MetricsPort"></a> <strong>MetricsPort</strong> [<em>address</em><strong>:</strong>]<em>port</em> [<em>format</em>]
</dt>
<dd>
<p>
WARNING: Before enabling this, it is important to understand that exposing
tor metrics publicly is dangerous to the Tor network users. Please take
extra precaution and care when opening this port. Set a very strict access
policy with MetricsPortPolicy and consider using your operating systems
firewall features for defense in depth.
<br />
We recommend, for the prometheus <em>format</em>, that the only address that
can access this port should be the Prometheus server itself. Remember that
the connection is unencrypted (HTTP) hence consider using a tool like
stunnel to secure the link from this port to the server.
<br />
If set, open this port to listen for an HTTP GET request to "/metrics".
Upon a request, the collected metrics in the the tor instance are
formatted for the given format and then sent back. If this is set,
MetricsPortPolicy must be defined else every request will be rejected.
<br />
Supported format is "prometheus" which is also the default if not set. The
Prometheus data model can be found here:
<a href="https://prometheus.io/docs/concepts/data_model/">https://prometheus.io/docs/concepts/data_model/</a>
<br />
The tor metrics are constantly collected and they solely consists of
counters. Thus, asking for those metrics is very lightweight on the tor
process. (Default: None)
<br />
As an example, here only 5.6.7.8 will be allowed to connect:
</p>
<div class="literalblock">
<div class="content">
<pre><code>MetricsPort 1.2.3.4:9035
MetricsPortPolicy accept 5.6.7.8</code></pre>
</div></div>
</dd>
<dt class="hdlist1">
<a id="MetricsPortPolicy"></a> <strong>MetricsPortPolicy</strong> <em>policy</em>,<em>policy</em>,<em>…</em>
</dt>
<dd>
<p>
Set an entrance policy for the <strong>MetricsPort</strong>, to limit who can access
it. The policies have the same form as exit policies below, except that
port specifiers are ignored. For multiple entries, this line can be used
multiple times. It is a reject all by default policy. (Default: None)
<br />
Please, keep in mind here that if the server collecting metrics on the
MetricsPort is behind a NAT, then everything behind it can access it. This
is similar for the case of allowing localhost, every users on the server
will be able to access it. Again, strongly consider using a tool like
stunnel to secure the link or to strengthen access control.
</p>
</dd>
<dt class="hdlist1">
<a id="NoExec"></a> <strong>NoExec</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 1, then Tor will never launch another
executable, regardless of the settings of ClientTransportPlugin
or ServerTransportPlugin. Once this option has been set to 1,
it cannot be set back to 0 without restarting Tor. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="OutboundBindAddress"></a> <strong>OutboundBindAddress</strong> <em>IP</em>
</dt>
<dd>
<p>
Make all outbound connections originate from the IP address specified. This
is only useful when you have multiple network interfaces, and you want all
of Tor’s outgoing connections to use a single one. This option may
be used twice, once with an IPv4 address and once with an IPv6 address.
IPv6 addresses should be wrapped in square brackets.
This setting will be ignored for connections to the loopback addresses
(127.0.0.0/8 and ::1), and is not used for DNS requests as well.
</p>
</dd>
<dt class="hdlist1">
<a id="OutboundBindAddressExit"></a> <strong>OutboundBindAddressExit</strong> <em>IP</em>
</dt>
<dd>
<p>
Make all outbound exit connections originate from the IP address
specified. This option overrides <strong>OutboundBindAddress</strong> for the
same IP version. This option may be used twice, once with an IPv4
address and once with an IPv6 address.
IPv6 addresses should be wrapped in square brackets.
This setting will be ignored
for connections to the loopback addresses (127.0.0.0/8 and ::1).
</p>
</dd>
<dt class="hdlist1">
<a id="OutboundBindAddressOR"></a> <strong>OutboundBindAddressOR</strong> <em>IP</em>
</dt>
<dd>
<p>
Make all outbound non-exit (relay and other) connections
originate from the IP address specified. This option overrides
<strong>OutboundBindAddress</strong> for the same IP version. This option may
be used twice, once with an IPv4 address and once with an IPv6
address. IPv6 addresses should be wrapped in square brackets.
This setting will be ignored for connections to the loopback
addresses (127.0.0.0/8 and ::1).
</p>
</dd>
<dt class="hdlist1">
<a id="OwningControllerProcess"></a> <strong>__OwningControllerProcess</strong> <em>PID</em>
</dt>
<dd>
<p>
Make Tor instance periodically check for presence of a controller process
with given PID and terminate itself if this process is no longer alive.
Polling interval is 15 seconds.
</p>
</dd>
<dt class="hdlist1">
<a id="PerConnBWBurst"></a> <strong>PerConnBWBurst</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
If this option is set manually, or via the "perconnbwburst" consensus
field, Tor will use it for separate rate limiting for each connection
from a non-relay. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="PerConnBWRate"></a> <strong>PerConnBWRate</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
If this option is set manually, or via the "perconnbwrate" consensus
field, Tor will use it for separate rate limiting for each connection
from a non-relay. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="OutboundBindAddressPT"></a> <strong>OutboundBindAddressPT</strong> <em>IP</em>
</dt>
<dd>
<p>
Request that pluggable transports makes all outbound connections
originate from the IP address specified. Because outgoing connections
are handled by the pluggable transport itself, it is not possible for
Tor to enforce whether the pluggable transport honors this option. This
option overrides <strong>OutboundBindAddress</strong> for the same IP version. This
option may be used twice, once with an IPv4 address and once with an
IPv6 address. IPv6 addresses should be wrapped in square brackets. This
setting will be ignored for connections to the loopback addresses
(127.0.0.0/8 and ::1).
</p>
</dd>
<dt class="hdlist1">
<a id="PidFile"></a> <strong>PidFile</strong> <em>FILE</em>
</dt>
<dd>
<p>
On startup, write our PID to FILE. On clean shutdown, remove
FILE. Can not be changed while tor is running.
</p>
</dd>
<dt class="hdlist1">
<a id="ProtocolWarnings"></a> <strong>ProtocolWarnings</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If 1, Tor will log with severity 'warn' various cases of other parties not
following the Tor specification. Otherwise, they are logged with severity
'info'. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="RelayBandwidthBurst"></a> <strong>RelayBandwidthBurst</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
If not 0, limit the maximum token bucket size (also known as the burst) for
_relayed traffic_ to the given number of bytes in each direction.
They do not include directory fetches by the relay (from authority
or other relays), because that is considered "client" activity. (Default: 0)
RelayBandwidthBurst defaults to the value of RelayBandwidthRate if unset.
</p>
</dd>
<dt class="hdlist1">
<a id="RelayBandwidthRate"></a> <strong>RelayBandwidthRate</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
If not 0, a separate token bucket limits the average incoming bandwidth
usage for _relayed traffic_ on this node to the specified number of bytes
per second, and the average outgoing bandwidth usage to that same value.
Relayed traffic currently is calculated to include answers to directory
requests, but that may change in future versions. They do not include directory
fetches by the relay (from authority or other relays), because that is considered
"client" activity. (Default: 0)
RelayBandwidthRate defaults to the value of RelayBandwidthBurst if unset.
</p>
</dd>
<dt class="hdlist1">
<a id="RephistTrackTime"></a> <strong>RephistTrackTime</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
Tells an authority, or other node tracking node reliability and history,
that fine-grained information about nodes can be discarded when it hasn’t
changed for a given amount of time. (Default: 24 hours)
</p>
</dd>
<dt class="hdlist1">
<a id="RunAsDaemon"></a> <strong>RunAsDaemon</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If 1, Tor forks and daemonizes to the background. This option has no effect
on Windows; instead you should use the --service command-line option.
Can not be changed while tor is running.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="SafeLogging"></a> <strong>SafeLogging</strong> <strong>0</strong>|<strong>1</strong>|<strong>relay</strong>
</dt>
<dd>
<p>
Tor can scrub potentially sensitive strings from log messages (e.g.
addresses) by replacing them with the string [scrubbed]. This way logs can
still be useful, but they don’t leave behind personally identifying
information about what sites a user might have visited.<br />
<br />
If this option is set to 0, Tor will not perform any scrubbing, if it is
set to 1, all potentially sensitive strings are replaced. If it is set to
relay, all log messages generated when acting as a relay are sanitized, but
all messages generated when acting as a client are not.
Note: Tor may not heed this option when logging at log levels more
verbose than Notice.
(Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="Sandbox"></a> <strong>Sandbox</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will run securely through the use of a syscall sandbox.
Otherwise the sandbox will be disabled. The option only works on
Linux-based operating systems, and only when Tor has been built with the
libseccomp library. Note that this option may be incompatible with some
versions of libc, and some kernel versions. This option can not be
changed while tor is running.<br />
<br />
When the <strong>Sandbox</strong> is 1, the following options can not be changed when tor
is running:
<strong>Address</strong>,
<strong>ConnLimit</strong>,
<strong>CookieAuthFile</strong>,
<strong>DirPortFrontPage</strong>,
<strong>ExtORPortCookieAuthFile</strong>,
<strong>Logs</strong>,
<strong>ServerDNSResolvConfFile</strong>,
<strong>ClientOnionAuthDir</strong> (and any files in it won’t reload on HUP signal).<br />
<br />
Launching new Onion Services through the control port is not supported
with current syscall sandboxing implementation.<br />
<br />
Tor must remain in client or server mode (some changes to <strong>ClientOnly</strong>
and <strong>ORPort</strong> are not allowed). Currently, if <strong>Sandbox</strong> is 1,
<strong>ControlPort</strong> command "GETINFO address" will not work.<br />
<br />
When using %include in the tor configuration files, reloading the tor
configuration is not supported after adding new configuration files or
directories.<br />
<br />
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="Schedulers"></a> <strong>Schedulers</strong> <strong>KIST</strong>|<strong>KISTLite</strong>|<strong>Vanilla</strong>
</dt>
<dd>
<p>
Specify the scheduler type that tor should use. The scheduler is
responsible for moving data around within a Tor process. This is an ordered
list by priority which means that the first value will be tried first and if
unavailable, the second one is tried and so on. It is possible to change
these values at runtime. This option mostly effects relays, and most
operators should leave it set to its default value.
(Default: KIST,KISTLite,Vanilla)<br />
<br />
The possible scheduler types are:
<br />
<strong>KIST</strong>: Kernel-Informed Socket Transport. Tor will use TCP information
from the kernel to make informed decisions regarding how much data to send
and when to send it. KIST also handles traffic in batches (see
<a href="#KISTSchedRunInterval">KISTSchedRunInterval</a>) in order to improve traffic prioritization decisions.
As implemented, KIST will only work on Linux kernel version 2.6.39 or
higher.<br />
<br />
<strong>KISTLite</strong>: Same as KIST but without kernel support. Tor will use all
the same mechanics as with KIST, including the batching, but its decisions
regarding how much data to send will not be as good. KISTLite will work on
all kernels and operating systems, and the majority of the benefits of KIST
are still realized with KISTLite.<br />
<br />
<strong>Vanilla</strong>: The scheduler that Tor used before KIST was implemented. It
sends as much data as possible, as soon as possible. Vanilla will work on
all kernels and operating systems.
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="KISTSchedRunInterval"></a> <strong>KISTSchedRunInterval</strong> <em>NUM</em> <strong>msec</strong>
</dt>
<dd>
<p>
If KIST or KISTLite is used in the Schedulers option, this controls at which
interval the scheduler tick is. If the value is 0 msec, the value is taken
from the consensus if possible else it will fallback to the default 10
msec. Maximum possible value is 100 msec. (Default: 0 msec)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="KISTSockBufSizeFactor"></a> <strong>KISTSockBufSizeFactor</strong> <em>NUM</em>
</dt>
<dd>
<p>
If KIST is used in Schedulers, this is a multiplier of the per-socket
limit calculation of the KIST algorithm. (Default: 1.0)
</p>
</dd>
<dt class="hdlist1">
<a id="Socks4Proxy"></a> <strong>Socks4Proxy</strong> <em>host</em>[:<em>port</em>]
</dt>
<dd>
<p>
Tor will make all OR connections through the SOCKS 4 proxy at host:port
(or host:1080 if port is not specified).
</p>
</dd>
<dt class="hdlist1">
<a id="Socks5Proxy"></a> <strong>Socks5Proxy</strong> <em>host</em>[:<em>port</em>]
</dt>
<dd>
<p>
Tor will make all OR connections through the SOCKS 5 proxy at host:port
(or host:1080 if port is not specified).
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="Socks5ProxyUsername"></a> <strong>Socks5ProxyUsername</strong> <em>username</em><br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="Socks5ProxyPassword"></a> <strong>Socks5ProxyPassword</strong> <em>password</em>
</dt>
<dd>
<p>
If defined, authenticate to the SOCKS 5 server using username and password
in accordance to RFC 1929. Both username and password must be between 1 and
255 characters.
</p>
</dd>
<dt class="hdlist1">
<a id="SyslogIdentityTag"></a> <strong>SyslogIdentityTag</strong> <em>tag</em>
</dt>
<dd>
<p>
When logging to syslog, adds a tag to the syslog identity such that
log entries are marked with "Tor-<em>tag</em>". Can not be changed while tor is
running. (Default: none)
</p>
</dd>
<dt class="hdlist1">
<a id="TCPProxy"></a> <strong>TCPProxy</strong> <em>protocol</em> <em>host</em>:<em>port</em>
</dt>
<dd>
<p>
Tor will use the given protocol to make all its OR (SSL) connections through
a TCP proxy on host:port, rather than connecting directly to servers. You may
want to set <strong>FascistFirewall</strong> to restrict the set of ports you might try to
connect to, if your proxy only allows connecting to certain ports. There is no
equivalent option for directory connections, because all Tor client versions
that support this option download directory documents via OR connections.<br />
</p>
<div class="literalblock">
<div class="content">
<pre><code>The only protocol supported right now is 'haproxy'. This option is only for
clients. (Default: none) +</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>The HAProxy version 1 proxy protocol is described in detail at
https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt +</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Both source IP address and source port will be set to zero.</code></pre>
</div></div>
</dd>
<dt class="hdlist1">
<a id="TruncateLogFile"></a> <strong>TruncateLogFile</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If 1, Tor will overwrite logs at startup and in response to a HUP signal,
instead of appending to them. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="UnixSocksGroupWritable"></a> <strong>UnixSocksGroupWritable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read and
write unix sockets (e.g. SocksPort unix:). If the option is set to 1, make
the Unix socket readable and writable by the default GID. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="UseDefaultFallbackDirs"></a> <strong>UseDefaultFallbackDirs</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Use Tor’s default hard-coded FallbackDirs (if any). (When a
FallbackDir line is present, it replaces the hard-coded FallbackDirs,
regardless of the value of UseDefaultFallbackDirs.) (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="User"></a> <strong>User</strong> <em>Username</em>
</dt>
<dd>
<p>
On startup, setuid to this user and setgid to their primary group.
Can not be changed while tor is running.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_client_options">CLIENT OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options are useful only for clients (that is, if
<strong>SocksPort</strong>, <strong>HTTPTunnelPort</strong>, <strong>TransPort</strong>, <strong>DNSPort</strong>, or
<strong>NATDPort</strong> is non-zero):</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="AllowNonRFC953Hostnames"></a> <strong>AllowNonRFC953Hostnames</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is disabled, Tor blocks hostnames containing illegal
characters (like @ and :) rather than sending them to an exit node to be
resolved. This helps trap accidental attempts to resolve URLs and so on.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="AutomapHostsOnResolve"></a> <strong>AutomapHostsOnResolve</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is enabled, and we get a request to resolve an address
that ends with one of the suffixes in <strong>AutomapHostsSuffixes</strong>, we map an
unused virtual address to that address, and return the new virtual address.
This is handy for making ".onion" addresses work with applications that
resolve an address and then connect to it. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="AutomapHostsSuffixes"></a> <strong>AutomapHostsSuffixes</strong> <em>SUFFIX</em>,<em>SUFFIX</em>,<em>…</em>
</dt>
<dd>
<p>
A comma-separated list of suffixes to use with <strong>AutomapHostsOnResolve</strong>.
The "." suffix is equivalent to "all addresses." (Default: .exit,.onion).
</p>
</dd>
<dt class="hdlist1">
<a id="Bridge"></a> <strong>Bridge</strong> [<em>transport</em>] <em>IP</em>:<em>ORPort</em> [<em>fingerprint</em>]
</dt>
<dd>
<p>
When set along with UseBridges, instructs Tor to use the relay at
"IP:ORPort" as a "bridge" relaying into the Tor network. If "fingerprint"
is provided (using the same format as for DirAuthority), we will verify that
the relay running at that location has the right fingerprint. We also use
fingerprint to look up the bridge descriptor at the bridge authority, if
it’s provided and if UpdateBridgesFromAuthority is set too. <br />
<br />
If "transport" is provided, it must match a ClientTransportPlugin line. We
then use that pluggable transport’s proxy to transfer data to the bridge,
rather than connecting to the bridge directly. Some transports use a
transport-specific method to work out the remote address to connect to.
These transports typically ignore the "IP:ORPort" specified in the bridge
line. <br />
<br />
Tor passes any "key=val" settings to the pluggable transport proxy as
per-connection arguments when connecting to the bridge. Consult
the documentation of the pluggable transport for details of what
arguments it supports.
</p>
</dd>
<dt class="hdlist1">
<a id="CircuitPadding"></a> <strong>CircuitPadding</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 0, Tor will not pad client circuits with additional cover
traffic. Only clients may set this option. This option should be offered
via the UI to mobile users for use where bandwidth may be expensive. If
set to 1, padding will be negotiated as per the consensus and relay
support (unlike ConnectionPadding, CircuitPadding cannot be force-enabled).
(Default: 1)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="ReducedCircuitPadding"></a> <strong>ReducedCircuitPadding</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will only use circuit padding algorithms that have low
overhead. Only clients may set this option. This option should be offered
via the UI to mobile users for use where bandwidth may be expensive.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientBootstrapConsensusAuthorityDownloadInitialDelay"></a> <strong>ClientBootstrapConsensusAuthorityDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for when clients should download consensuses from authorities
if they are bootstrapping (that is, they don’t have a usable, reasonably
live consensus). Only used by clients fetching from a list of fallback
directory mirrors. This schedule is advanced by (potentially concurrent)
connection attempts, unlike other schedules, which are advanced by
connection failures. (Default: 6)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay"></a> <strong>ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for when clients should download consensuses from authorities
if they are bootstrapping (that is, they don’t have a usable, reasonably
live consensus). Only used by clients which don’t have or won’t fetch
from a list of fallback directory mirrors. This schedule is advanced by
(potentially concurrent) connection attempts, unlike other schedules,
which are advanced by connection failures. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientBootstrapConsensusFallbackDownloadInitialDelay"></a> <strong>ClientBootstrapConsensusFallbackDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for when clients should download consensuses from fallback
directory mirrors if they are bootstrapping (that is, they don’t have a
usable, reasonably live consensus). Only used by clients fetching from a
list of fallback directory mirrors. This schedule is advanced by
(potentially concurrent) connection attempts, unlike other schedules,
which are advanced by connection failures. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientBootstrapConsensusMaxInProgressTries"></a> <strong>ClientBootstrapConsensusMaxInProgressTries</strong> <em>NUM</em>
</dt>
<dd>
<p>
Try this many simultaneous connections to download a consensus before
waiting for one to complete, timeout, or error out. (Default: 3)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientDNSRejectInternalAddresses"></a> <strong>ClientDNSRejectInternalAddresses</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If true, Tor does not believe any anonymously retrieved DNS answer that
tells it that an address resolves to an internal address (like 127.0.0.1 or
192.168.0.1). This option prevents certain browser-based attacks; it
is not allowed to be set on the default network. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientOnionAuthDir"></a> <strong>ClientOnionAuthDir</strong> <em>path</em>
</dt>
<dd>
<p>
Path to the directory containing v3 hidden service authorization files.
Each file is for a single onion address, and the files MUST have the suffix
".auth_private" (i.e. "bob_onion.auth_private"). The content format MUST be:
<br />
<onion-address>:descriptor:x25519:<base32-encoded-privkey>
<br />
The <onion-address> MUST NOT have the ".onion" suffix. The
<base32-encoded-privkey> is the base32 representation of the raw key bytes
only (32 bytes for x25519). See Appendix G in the rend-spec-v3.txt file of
<a href="https://spec.torproject.org/">torspec</a> for more information.
</p>
</dd>
<dt class="hdlist1">
<a id="ClientOnly"></a> <strong>ClientOnly</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will not run as a relay or serve
directory requests, even if the ORPort, ExtORPort, or DirPort options are
set. (This config option is
mostly unnecessary: we added it back when we were considering having
Tor clients auto-promote themselves to being relays if they were stable
and fast enough. The current behavior is simply that Tor is a client
unless ORPort, ExtORPort, or DirPort are configured.) (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientPreferIPv6DirPort"></a> <strong>ClientPreferIPv6DirPort</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
If this option is set to 1, Tor prefers a directory port with an IPv6
address over one with IPv4, for direct connections, if a given directory
server has both. (Tor also prefers an IPv6 DirPort if IPv4Client is set to
0.) If this option is set to auto, clients prefer IPv4. Other things may
influence the choice. This option breaks a tie to the favor of IPv6.
(Default: auto) (DEPRECATED: This option has had no effect for some
time.)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientPreferIPv6ORPort"></a> <strong>ClientPreferIPv6ORPort</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
If this option is set to 1, Tor prefers an OR port with an IPv6
address over one with IPv4 if a given entry node has both. (Tor also
prefers an IPv6 ORPort if IPv4Client is set to 0.) If this option is set
to auto, Tor bridge clients prefer the configured bridge address, and
other clients prefer IPv4. Other things may influence the choice. This
option breaks a tie to the favor of IPv6. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientRejectInternalAddresses"></a> <strong>ClientRejectInternalAddresses</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If true, Tor does not try to fulfill requests to connect to an internal
address (like 127.0.0.1 or 192.168.0.1) <em>unless an exit node is
specifically requested</em> (for example, via a .exit hostname, or a
controller request). If true, multicast DNS hostnames for machines on the
local network (of the form *.local) are also rejected. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientUseIPv4"></a> <strong>ClientUseIPv4</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 0, Tor will avoid connecting to directory servers
and entry nodes over IPv4. Note that clients with an IPv4
address in a <strong>Bridge</strong>, proxy, or pluggable transport line will try
connecting over IPv4 even if <strong>ClientUseIPv4</strong> is set to 0. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ClientUseIPv6"></a> <strong>ClientUseIPv6</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 1, Tor might connect to directory servers or
entry nodes over IPv6. For IPv6 only hosts, you need to also set
<strong>ClientUseIPv4</strong> to 0 to disable IPv4. Note that clients configured with
an IPv6 address in a <strong>Bridge</strong>, proxy, or pluggable transportline will
try connecting over IPv6 even if <strong>ClientUseIPv6</strong> is set to 0. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ConnectionPadding"></a> <strong>ConnectionPadding</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
This option governs Tor’s use of padding to defend against some forms of
traffic analysis. If it is set to <em>auto</em>, Tor will send padding only
if both the client and the relay support it. If it is set to 0, Tor will
not send any padding cells. If it is set to 1, Tor will still send padding
for client connections regardless of relay support. Only clients may set
this option. This option should be offered via the UI to mobile users
for use where bandwidth may be expensive.
(Default: auto)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="ReducedConnectionPadding"></a> <strong>ReducedConnectionPadding</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will not not hold OR connections open for very long,
and will send less padding on these connections. Only clients may set
this option. This option should be offered via the UI to mobile users
for use where bandwidth may be expensive. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DNSPort"></a> <strong>DNSPort</strong> [<em>address</em><strong>:</strong>]<em>port</em>|<strong>auto</strong> [<em>isolation flags</em>]
</dt>
<dd>
<p>
If non-zero, open this port to listen for UDP DNS requests, and resolve
them anonymously. This port only handles A, AAAA, and PTR requests---it
doesn’t handle arbitrary DNS request types. Set the port to "auto" to
have Tor pick a port for
you. This directive can be specified multiple times to bind to multiple
addresses/ports. See <a href="#SocksPort">SocksPort</a> for an explanation of isolation
flags. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DownloadExtraInfo"></a> <strong>DownloadExtraInfo</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If true, Tor downloads and caches "extra-info" documents. These documents
contain information about servers other than the information in their
regular server descriptors. Tor does not use this information for anything
itself; to save bandwidth, leave this option turned off. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="EnforceDistinctSubnets"></a> <strong>EnforceDistinctSubnets</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If 1, Tor will not put two servers whose IP addresses are "too close" on
the same circuit. Currently, two addresses are "too close" if they lie in
the same /16 range. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="FascistFirewall"></a> <strong>FascistFirewall</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If 1, Tor will only create outgoing connections to ORs running on ports
that your firewall allows (defaults to 80 and 443; see <a href="#FirewallPorts">FirewallPorts</a>).
This will allow you to run Tor as a client behind a firewall with
restrictive policies, but will not allow you to run as a server behind such
a firewall. If you prefer more fine-grained control, use
ReachableAddresses instead.
</p>
</dd>
<dt class="hdlist1">
<a id="FirewallPorts"></a> <strong>FirewallPorts</strong> <em>PORTS</em>
</dt>
<dd>
<p>
A list of ports that your firewall allows you to connect to. Only used when
<strong>FascistFirewall</strong> is set. This option is deprecated; use ReachableAddresses
instead. (Default: 80, 443)
</p>
</dd>
<dt class="hdlist1">
<a id="HTTPTunnelPort"></a> <strong>HTTPTunnelPort</strong> [<em>address</em><strong>:</strong>]<em>port</em>|<strong>auto</strong> [<em>isolation flags</em>]
</dt>
<dd>
<p>
Open this port to listen for proxy connections using the "HTTP CONNECT"
protocol instead of SOCKS. Set this to
0 if you don’t want to allow "HTTP CONNECT" connections. Set the port
to "auto" to have Tor pick a port for you. This directive can be
specified multiple times to bind to multiple addresses/ports. If multiple
entries of this option are present in your configuration file, Tor will
perform stream isolation between listeners by default. See
<a href="#SocksPort">SocksPort</a> for an explanation of isolation flags. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="LongLivedPorts"></a> <strong>LongLivedPorts</strong> <em>PORTS</em>
</dt>
<dd>
<p>
A list of ports for services that tend to have long-running connections
(e.g. chat and interactive shells). Circuits for streams that use these
ports will contain only high-uptime nodes, to reduce the chance that a node
will go down before the stream is finished. Note that the list is also
honored for circuits (both client and service side) involving hidden
services whose virtual port is in this list. (Default: 21, 22, 706,
1863, 5050, 5190, 5222, 5223, 6523, 6667, 6697, 8300)
</p>
</dd>
<dt class="hdlist1">
<a id="MapAddress"></a> <strong>MapAddress</strong> <em>address</em> <em>newaddress</em>
</dt>
<dd>
<p>
When a request for address arrives to Tor, it will transform to newaddress
before processing it. For example, if you always want connections to
www.example.com to exit via <em>torserver</em> (where <em>torserver</em> is the
fingerprint of the server), use "MapAddress www.example.com
www.example.com.torserver.exit". If the value is prefixed with a
"*.", matches an entire domain. For example, if you
always want connections to example.com and any if its subdomains
to exit via
<em>torserver</em> (where <em>torserver</em> is the fingerprint of the server), use
"MapAddress *.example.com *.example.com.torserver.exit". (Note the
leading "*." in each part of the directive.) You can also redirect all
subdomains of a domain to a single address. For example, "MapAddress
*.example.com www.example.com". If the specified exit is not available,
or the exit can not connect to the site, Tor will fail any connections
to the mapped address.+
<br />
NOTES:
</p>
<div class="olist arabic"><ol class="arabic">
<li>
<p>
When evaluating MapAddress expressions Tor stops when it hits the most
recently added expression that matches the requested address. So if you
have the following in your torrc, www.torproject.org will map to
198.51.100.1:
</p>
<div class="literalblock">
<div class="content">
<pre><code>MapAddress www.torproject.org 192.0.2.1
MapAddress www.torproject.org 198.51.100.1</code></pre>
</div></div>
</li>
<li>
<p>
Tor evaluates the MapAddress configuration until it finds no matches. So
if you have the following in your torrc, www.torproject.org will map to
203.0.113.1:
</p>
<div class="literalblock">
<div class="content">
<pre><code>MapAddress 198.51.100.1 203.0.113.1
MapAddress www.torproject.org 198.51.100.1</code></pre>
</div></div>
</li>
<li>
<p>
The following MapAddress expression is invalid (and will be
ignored) because you cannot map from a specific address to a wildcard
address:
</p>
<div class="literalblock">
<div class="content">
<pre><code>MapAddress www.torproject.org *.torproject.org.torserver.exit</code></pre>
</div></div>
</li>
<li>
<p>
Using a wildcard to match only part of a string (as in *ample.com) is
also invalid.
</p>
</li>
<li>
<p>
Tor maps hostnames and IP addresses separately. If you MapAddress
a DNS name, but use an IP address to connect, then Tor will ignore the
DNS name mapping.
</p>
</li>
<li>
<p>
MapAddress does not apply to redirects in the application protocol.
For example, HTTP redirects and alt-svc headers will ignore mappings
for the original address. You can use a wildcard mapping to handle
redirects within the same site.
</p>
</li>
</ol></div>
</dd>
<dt class="hdlist1">
<a id="MaxCircuitDirtiness"></a> <strong>MaxCircuitDirtiness</strong> <em>NUM</em>
</dt>
<dd>
<p>
Feel free to reuse a circuit that was first used at most NUM seconds ago,
but never attach a new stream to a circuit that is too old. For hidden
services, this applies to the <em>last</em> time a circuit was used, not the
first. Circuits with streams constructed with SOCKS authentication via
SocksPorts that have <strong>KeepAliveIsolateSOCKSAuth</strong> also remain alive
for MaxCircuitDirtiness seconds after carrying the last such stream.
(Default: 10 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="MaxClientCircuitsPending"></a> <strong>MaxClientCircuitsPending</strong> <em>NUM</em>
</dt>
<dd>
<p>
Do not allow more than NUM circuits to be pending at a time for handling
client streams. A circuit is pending if we have begun constructing it,
but it has not yet been completely constructed. (Default: 32)
</p>
</dd>
<dt class="hdlist1">
<a id="NATDPort"></a> <strong>NATDPort</strong> [<em>address</em><strong>:</strong>]<em>port</em>|<strong>auto</strong> [<em>isolation flags</em>]
</dt>
<dd>
<p>
Open this port to listen for connections from old versions of ipfw (as
included in old versions of FreeBSD, etc) using the NATD protocol.
Use 0 if you don’t want to allow NATD connections. Set the port
to "auto" to have Tor pick a port for you. This directive can be
specified multiple times to bind to multiple addresses/ports. If multiple
entries of this option are present in your configuration file, Tor will
perform stream isolation between listeners by default. See
<a href="#SocksPort">SocksPort</a> for an explanation of isolation flags.<br />
<br />
This option is only for people who cannot use TransPort. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="NewCircuitPeriod"></a> <strong>NewCircuitPeriod</strong> <em>NUM</em>
</dt>
<dd>
<p>
Every NUM seconds consider whether to build a new circuit. (Default: 30
seconds)
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="PathBiasCircThreshold"></a> <strong>PathBiasCircThreshold</strong> <em>NUM</em><br /></p></div>
<div class="paragraph"><p><a id="PathBiasDropGuards"></a> <strong>PathBiasDropGuards</strong> <em>NUM</em><br /></p></div>
<div class="paragraph"><p><a id="PathBiasExtremeRate"></a> <strong>PathBiasExtremeRate</strong> <em>NUM</em><br /></p></div>
<div class="paragraph"><p><a id="PathBiasNoticeRate"></a> <strong>PathBiasNoticeRate</strong> <em>NUM</em><br /></p></div>
<div class="paragraph"><p><a id="PathBiasWarnRate"></a> <strong>PathBiasWarnRate</strong> <em>NUM</em><br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="PathBiasScaleThreshold"></a> <strong>PathBiasScaleThreshold</strong> <em>NUM</em>
</dt>
<dd>
<p>
These options override the default behavior of Tor’s (<strong>currently
experimental</strong>) path bias detection algorithm. To try to find broken or
misbehaving guard nodes, Tor looks for nodes where more than a certain
fraction of circuits through that guard fail to get built.<br />
<br />
The PathBiasCircThreshold option controls how many circuits we need to build
through a guard before we make these checks. The PathBiasNoticeRate,
PathBiasWarnRate and PathBiasExtremeRate options control what fraction of
circuits must succeed through a guard so we won’t write log messages.
If less than PathBiasExtremeRate circuits succeed <strong>and</strong> PathBiasDropGuards
is set to 1, we disable use of that guard.<br />
<br />
When we have seen more than PathBiasScaleThreshold
circuits through a guard, we scale our observations by 0.5 (governed by
the consensus) so that new observations don’t get swamped by old ones.<br />
<br />
By default, or if a negative value is provided for one of these options,
Tor uses reasonable defaults from the networkstatus consensus document.
If no defaults are available there, these options default to 150, .70,
.50, .30, 0, and 300 respectively.
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="PathBiasUseThreshold"></a> <strong>PathBiasUseThreshold</strong> <em>NUM</em><br /></p></div>
<div class="paragraph"><p><a id="PathBiasNoticeUseRate"></a> <strong>PathBiasNoticeUseRate</strong> <em>NUM</em><br /></p></div>
<div class="paragraph"><p><a id="PathBiasExtremeUseRate"></a> <strong>PathBiasExtremeUseRate</strong> <em>NUM</em><br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="PathBiasScaleUseThreshold"></a> <strong>PathBiasScaleUseThreshold</strong> <em>NUM</em>
</dt>
<dd>
<p>
Similar to the above options, these options override the default behavior
of Tor’s (<strong>currently experimental</strong>) path use bias detection algorithm.<br />
<br />
Where as the path bias parameters govern thresholds for successfully
building circuits, these four path use bias parameters govern thresholds
only for circuit usage. Circuits which receive no stream usage
are not counted by this detection algorithm. A used circuit is considered
successful if it is capable of carrying streams or otherwise receiving
well-formed responses to RELAY cells.<br />
<br />
By default, or if a negative value is provided for one of these options,
Tor uses reasonable defaults from the networkstatus consensus document.
If no defaults are available there, these options default to 20, .80,
.60, and 100, respectively.
</p>
</dd>
<dt class="hdlist1">
<a id="PathsNeededToBuildCircuits"></a> <strong>PathsNeededToBuildCircuits</strong> <em>NUM</em>
</dt>
<dd>
<p>
Tor clients don’t build circuits for user traffic until they know
about enough of the network so that they could potentially construct
enough of the possible paths through the network. If this option
is set to a fraction between 0.25 and 0.95, Tor won’t build circuits
until it has enough descriptors or microdescriptors to construct
that fraction of possible paths. Note that setting this option too low
can make your Tor client less anonymous, and setting it too high can
prevent your Tor client from bootstrapping. If this option is negative,
Tor will use a default value chosen by the directory authorities. If the
directory authorities do not choose a value, Tor will default to 0.6.
(Default: -1)
</p>
</dd>
<dt class="hdlist1">
<a id="ReachableAddresses"></a> <strong>ReachableAddresses</strong> <em>IP</em>[/<em>MASK</em>][:<em>PORT</em>]…
</dt>
<dd>
<p>
A comma-separated list of IP addresses and ports that your firewall allows
you to connect to. The format is as for the addresses in ExitPolicy, except
that "accept" is understood unless "reject" is explicitly provided. For
example, 'ReachableAddresses 99.0.0.0/8, reject 18.0.0.0/8:80, accept
*:80' means that your firewall allows connections to everything inside net
99, rejects port 80 connections to net 18, and accepts connections to port
80 otherwise. (Default: 'accept *:*'.)
</p>
</dd>
<dt class="hdlist1">
<a id="ReachableDirAddresses"></a> <strong>ReachableDirAddresses</strong> <em>IP</em>[/<em>MASK</em>][:<em>PORT</em>]…
</dt>
<dd>
<p>
Like <strong>ReachableAddresses</strong>, a list of addresses and ports. Tor will obey
these restrictions when fetching directory information, using standard HTTP
GET requests. If not set explicitly then the value of
<strong>ReachableAddresses</strong> is used. If <strong>HTTPProxy</strong> is set then these
connections will go through that proxy. (DEPRECATED: This option has
had no effect for some time.)
</p>
</dd>
<dt class="hdlist1">
<a id="ReachableORAddresses"></a> <strong>ReachableORAddresses</strong> <em>IP</em>[/<em>MASK</em>][:<em>PORT</em>]…
</dt>
<dd>
<p>
Like <strong>ReachableAddresses</strong>, a list of addresses and ports. Tor will obey
these restrictions when connecting to Onion Routers, using TLS/SSL. If not
set explicitly then the value of <strong>ReachableAddresses</strong> is used. If
<strong>HTTPSProxy</strong> is set then these connections will go through that proxy.<br />
<br />
The separation between <strong>ReachableORAddresses</strong> and
<strong>ReachableDirAddresses</strong> is only interesting when you are connecting
through proxies (see <a href="#HTTPProxy">HTTPProxy</a> and <a href="#HTTPSProxy">HTTPSProxy</a>). Most proxies limit
TLS connections (which Tor uses to connect to Onion Routers) to port 443,
and some limit HTTP GET requests (which Tor uses for fetching directory
information) to port 80.
</p>
</dd>
<dt class="hdlist1">
<a id="SafeSocks"></a> <strong>SafeSocks</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is enabled, Tor will reject application connections that
use unsafe variants of the socks protocol — ones that only provide an IP
address, meaning the application is doing a DNS resolve first.
Specifically, these are socks4 and socks5 when not doing remote DNS.
(Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="TestSocks"></a> <strong>TestSocks</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is enabled, Tor will make a notice-level log entry for
each connection to the Socks port indicating whether the request used a
safe socks protocol or an unsafe one (see <a href="#SafeSocks">SafeSocks</a>). This
helps to determine whether an application using Tor is possibly leaking
DNS requests. (Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="WarnPlaintextPorts"></a> <strong>WarnPlaintextPorts</strong> <em>port</em>,<em>port</em>,<em>…</em>
</dt>
<dd>
<p>
Tells Tor to issue a warnings whenever the user tries to make an anonymous
connection to one of these ports. This option is designed to alert users
to services that risk sending passwords in the clear. (Default:
23,109,110,143)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="RejectPlaintextPorts"></a> <strong>RejectPlaintextPorts</strong> <em>port</em>,<em>port</em>,<em>…</em>
</dt>
<dd>
<p>
Like WarnPlaintextPorts, but instead of warning about risky port uses, Tor
will instead refuse to make the connection. (Default: None)
</p>
</dd>
<dt class="hdlist1">
<a id="SocksPolicy"></a> <strong>SocksPolicy</strong> <em>policy</em>,<em>policy</em>,<em>…</em>
</dt>
<dd>
<p>
Set an entrance policy for this server, to limit who can connect to the
SocksPort and DNSPort ports. The policies have the same form as exit
policies below, except that port specifiers are ignored. Any address
not matched by some entry in the policy is accepted.
</p>
</dd>
<dt class="hdlist1">
<a id="SocksPort"></a> <strong>SocksPort</strong> [<em>address</em><strong>:</strong>]<em>port</em>|<strong>unix:</strong><em>path</em>|<strong>auto</strong> [<em>flags</em>] [<em>isolation flags</em>]
</dt>
<dd>
<p>
Open this port to listen for connections from SOCKS-speaking
applications. Set this to 0 if you don’t want to allow application
connections via SOCKS. Set it to "auto" to have Tor pick a port for
you. This directive can be specified multiple times to bind
to multiple addresses/ports. If a unix domain socket is used, you may
quote the path using standard C escape sequences. Most flags are off by
default, except where specified. Flags that are on by default can be
disabled by putting "No" before the flag name.
(Default: 9050)<br />
<br />
NOTE: Although this option allows you to specify an IP address
other than localhost, you should do so only with extreme caution.
The SOCKS protocol is unencrypted and (as we use it)
unauthenticated, so exposing it in this way could leak your
information to anybody watching your network, and allow anybody
to use your computer as an open proxy.<br />
<br />
If multiple entries of this option are present in your configuration
file, Tor will perform stream isolation between listeners by default.
The <em>isolation flags</em> arguments give Tor rules for which streams
received on this SocksPort are allowed to share circuits with one
another. Recognized isolation flags are:
</p>
<div class="dlist"><dl>
<dt class="hdlist1">
<strong>IsolateClientAddr</strong>
</dt>
<dd>
<p>
Don’t share circuits with streams from a different
client address. (On by default and strongly recommended when
supported; you can disable it with <strong>NoIsolateClientAddr</strong>.
Unsupported and force-disabled when using Unix domain sockets.)
</p>
</dd>
<dt class="hdlist1">
<strong>IsolateSOCKSAuth</strong>
</dt>
<dd>
<p>
Don’t share circuits with streams for which different
SOCKS authentication was provided. (For HTTPTunnelPort
connections, this option looks at the Proxy-Authorization and
X-Tor-Stream-Isolation headers. On by default;
you can disable it with <strong>NoIsolateSOCKSAuth</strong>.)
</p>
</dd>
<dt class="hdlist1">
<strong>IsolateClientProtocol</strong>
</dt>
<dd>
<p>
Don’t share circuits with streams using a different protocol.
(SOCKS 4, SOCKS 5, HTTPTunnelPort connections, TransPort connections,
NATDPort connections, and DNSPort requests are all considered to be
different protocols.)
</p>
</dd>
<dt class="hdlist1">
<strong>IsolateDestPort</strong>
</dt>
<dd>
<p>
Don’t share circuits with streams targeting a different
destination port.
</p>
</dd>
<dt class="hdlist1">
<strong>IsolateDestAddr</strong>
</dt>
<dd>
<p>
Don’t share circuits with streams targeting a different
destination address.
</p>
</dd>
<dt class="hdlist1">
<strong>KeepAliveIsolateSOCKSAuth</strong>
</dt>
<dd>
<p>
If <strong>IsolateSOCKSAuth</strong> is enabled, keep alive circuits while they have
at least one stream with SOCKS authentication active. After such a
circuit is idle for more than MaxCircuitDirtiness seconds, it can be
closed.
</p>
</dd>
<dt class="hdlist1">
<strong>SessionGroup=</strong><em>INT</em>
</dt>
<dd>
<p>
If no other isolation rules would prevent it, allow streams
on this port to share circuits with streams from every other
port with the same session group. (By default, streams received
on different SocksPorts, TransPorts, etc are always isolated from one
another. This option overrides that behavior.)
</p>
</dd>
</dl></div>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="OtherSocksPortFlags"></a>
</dt>
<dd>
<p>
Other recognized <em>flags</em> for a SocksPort are:
</p>
<div class="dlist"><dl>
<dt class="hdlist1">
<strong>NoIPv4Traffic</strong>
</dt>
<dd>
<p>
Tell exits to not connect to IPv4 addresses in response to SOCKS
requests on this connection.
</p>
</dd>
<dt class="hdlist1">
<strong>IPv6Traffic</strong>
</dt>
<dd>
<p>
Tell exits to allow IPv6 addresses in response to SOCKS requests on
this connection, so long as SOCKS5 is in use. (SOCKS4 can’t handle
IPv6.)
</p>
</dd>
<dt class="hdlist1">
<strong>PreferIPv6</strong>
</dt>
<dd>
<p>
Tells exits that, if a host has both an IPv4 and an IPv6 address,
we would prefer to connect to it via IPv6. (IPv4 is the default.)
</p>
</dd>
<dt class="hdlist1">
<strong>NoDNSRequest</strong>
</dt>
<dd>
<p>
Do not ask exits to resolve DNS addresses in SOCKS5 requests. Tor will
connect to IPv4 addresses, IPv6 addresses (if IPv6Traffic is set) and
.onion addresses.
</p>
</dd>
<dt class="hdlist1">
<strong>NoOnionTraffic</strong>
</dt>
<dd>
<p>
Do not connect to .onion addresses in SOCKS5 requests.
</p>
</dd>
<dt class="hdlist1">
<strong>OnionTrafficOnly</strong>
</dt>
<dd>
<p>
Tell the tor client to only connect to .onion addresses in response to
SOCKS5 requests on this connection. This is equivalent to NoDNSRequest,
NoIPv4Traffic, NoIPv6Traffic. The corresponding NoOnionTrafficOnly
flag is not supported.
</p>
</dd>
<dt class="hdlist1">
<strong>CacheIPv4DNS</strong>
</dt>
<dd>
<p>
Tells the client to remember IPv4 DNS answers we receive from exit
nodes via this connection.
</p>
</dd>
<dt class="hdlist1">
<strong>CacheIPv6DNS</strong>
</dt>
<dd>
<p>
Tells the client to remember IPv6 DNS answers we receive from exit
nodes via this connection.
</p>
</dd>
<dt class="hdlist1">
<strong>GroupWritable</strong>
</dt>
<dd>
<p>
Unix domain sockets only: makes the socket get created as
group-writable.
</p>
</dd>
<dt class="hdlist1">
<strong>WorldWritable</strong>
</dt>
<dd>
<p>
Unix domain sockets only: makes the socket get created as
world-writable.
</p>
</dd>
<dt class="hdlist1">
<strong>CacheDNS</strong>
</dt>
<dd>
<p>
Tells the client to remember all DNS answers we receive from exit
nodes via this connection.
</p>
</dd>
<dt class="hdlist1">
<strong>UseIPv4Cache</strong>
</dt>
<dd>
<p>
Tells the client to use any cached IPv4 DNS answers we have when making
requests via this connection. (NOTE: This option, or UseIPv6Cache
or UseDNSCache, can harm your anonymity, and probably
won’t help performance as much as you might expect. Use with care!)
</p>
</dd>
<dt class="hdlist1">
<strong>UseIPv6Cache</strong>
</dt>
<dd>
<p>
Tells the client to use any cached IPv6 DNS answers we have when making
requests via this connection.
</p>
</dd>
<dt class="hdlist1">
<strong>UseDNSCache</strong>
</dt>
<dd>
<p>
Tells the client to use any cached DNS answers we have when making
requests via this connection.
</p>
</dd>
<dt class="hdlist1">
<strong>NoPreferIPv6Automap</strong>
</dt>
<dd>
<p>
When serving a hostname lookup request on this port that
should get automapped (according to AutomapHostsOnResolve),
if we could return either an IPv4 or an IPv6 answer, prefer
an IPv4 answer. (Tor prefers IPv6 by default.)
</p>
</dd>
<dt class="hdlist1">
<strong>PreferSOCKSNoAuth</strong>
</dt>
<dd>
<p>
Ordinarily, when an application offers both "username/password
authentication" and "no authentication" to Tor via SOCKS5, Tor
selects username/password authentication so that IsolateSOCKSAuth can
work. This can confuse some applications, if they offer a
username/password combination then get confused when asked for
one. You can disable this behavior, so that Tor will select "No
authentication" when IsolateSOCKSAuth is disabled, or when this
option is set.
</p>
</dd>
<dt class="hdlist1">
<strong>ExtendedErrors</strong>
</dt>
<dd>
<p>
Return extended error code in the SOCKS reply. So far, the possible
errors are:
</p>
<div class="literalblock">
<div class="content">
<pre><code>X'F0' Onion Service Descriptor Can Not be Found</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>The requested onion service descriptor can't be found on the
hashring and thus not reachable by the client. (v3 only)</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>X'F1' Onion Service Descriptor Is Invalid</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>The requested onion service descriptor can't be parsed or
signature validation failed. (v3 only)</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>X'F2' Onion Service Introduction Failed</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>All introduction attempts failed either due to a combination of
NACK by the intro point or time out. (v3 only)</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>X'F3' Onion Service Rendezvous Failed</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Every rendezvous circuit has timed out and thus the client is
unable to rendezvous with the service. (v3 only)</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>X'F4' Onion Service Missing Client Authorization</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Client was able to download the requested onion service descriptor
but is unable to decrypt its content because it is missing client
authorization information. (v3 only)</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>X'F5' Onion Service Wrong Client Authorization</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Client was able to download the requested onion service descriptor
but is unable to decrypt its content using the client
authorization information it has. This means the client access
were revoked. (v3 only)</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>X'F6' Onion Service Invalid Address</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>The given .onion address is invalid. In one of these cases this
error is returned: address checksum doesn't match, ed25519 public
key is invalid or the encoding is invalid. (v3 only)</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>X'F7' Onion Service Introduction Timed Out</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Similar to X'F2' code but in this case, all introduction attempts
have failed due to a time out. (v3 only)</code></pre>
</div></div>
</dd>
</dl></div>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="SocksPortFlagsMisc"></a>
</dt>
<dd>
<p>
Flags are processed left to right. If flags conflict, the last flag on the
line is used, and all earlier flags are ignored. No error is issued for
conflicting flags.
</p>
</dd>
<dt class="hdlist1">
<a id="TokenBucketRefillInterval"></a> <strong>TokenBucketRefillInterval</strong> <em>NUM</em> [<strong>msec</strong>|<strong>second</strong>]
</dt>
<dd>
<p>
Set the refill delay interval of Tor’s token bucket to NUM milliseconds.
NUM must be between 1 and 1000, inclusive. When Tor is out of bandwidth,
on a connection or globally, it will wait up to this long before it tries
to use that connection again.
Note that bandwidth limits are still expressed in bytes per second: this
option only affects the frequency with which Tor checks to see whether
previously exhausted connections may read again.
Can not be changed while tor is running. (Default: 100 msec)
</p>
</dd>
<dt class="hdlist1">
<a id="TrackHostExits"></a> <strong>TrackHostExits</strong> <em>host</em>,<em>.domain</em>,<em>…</em>
</dt>
<dd>
<p>
For each value in the comma separated list, Tor will track recent
connections to hosts that match this value and attempt to reuse the same
exit node for each. If the value is prepended with a '.', it is treated as
matching an entire domain. If one of the values is just a '.', it means
match everything. This option is useful if you frequently connect to sites
that will expire all your authentication cookies (i.e. log you out) if
your IP address changes. Note that this option does have the disadvantage
of making it more clear that a given history is associated with a single
user. However, most people who would wish to observe this will observe it
through cookies or other protocol-specific means anyhow.
</p>
</dd>
<dt class="hdlist1">
<a id="TrackHostExitsExpire"></a> <strong>TrackHostExitsExpire</strong> <em>NUM</em>
</dt>
<dd>
<p>
Since exit servers go up and down, it is desirable to expire the
association between host and exit server after NUM seconds. The default is
1800 seconds (30 minutes).
</p>
</dd>
<dt class="hdlist1">
<a id="TransPort"></a> <strong>TransPort</strong> [<em>address</em><strong>:</strong>]<em>port</em>|<strong>auto</strong> [<em>isolation flags</em>]
</dt>
<dd>
<p>
Open this port to listen for transparent proxy connections. Set this to
0 if you don’t want to allow transparent proxy connections. Set the port
to "auto" to have Tor pick a port for you. This directive can be
specified multiple times to bind to multiple addresses/ports. If multiple
entries of this option are present in your configuration file, Tor will
perform stream isolation between listeners by default. See
<a href="#SocksPort">SocksPort</a> for an explanation of isolation flags.<br />
<br />
TransPort requires OS support for transparent proxies, such as BSDs' pf or
Linux’s IPTables. If you’re planning to use Tor as a transparent proxy for
a network, you’ll want to examine and change VirtualAddrNetwork from the
default setting. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TransProxyType"></a> <strong>TransProxyType</strong> <strong>default</strong>|<strong>TPROXY</strong>|<strong>ipfw</strong>|<strong>pf-divert</strong>
</dt>
<dd>
<p>
TransProxyType may only be enabled when there is transparent proxy listener
enabled.<br />
<br />
Set this to "TPROXY" if you wish to be able to use the TPROXY Linux module
to transparently proxy connections that are configured using the TransPort
option. Detailed information on how to configure the TPROXY
feature can be found in the Linux kernel source tree in the file
Documentation/networking/tproxy.txt.<br />
<br />
Set this option to "ipfw" to use the FreeBSD ipfw interface.<br />
<br />
On *BSD operating systems when using pf, set this to "pf-divert" to take
advantage of <code>divert-to</code> rules, which do not modify the packets like
<code>rdr-to</code> rules do. Detailed information on how to configure pf to use
<code>divert-to</code> rules can be found in the pf.conf(5) manual page. On OpenBSD,
<code>divert-to</code> is available to use on versions greater than or equal to
OpenBSD 4.4.<br />
<br />
Set this to "default", or leave it unconfigured, to use regular IPTables
on Linux, or to use pf <code>rdr-to</code> rules on *BSD systems.<br />
<br />
(Default: "default")
</p>
</dd>
<dt class="hdlist1">
<a id="UpdateBridgesFromAuthority"></a> <strong>UpdateBridgesFromAuthority</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When set (along with UseBridges), Tor will try to fetch bridge descriptors
from the configured bridge authorities when feasible. It will fall back to
a direct request if the authority responds with a 404. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="UseBridges"></a> <strong>UseBridges</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When set, Tor will fetch descriptors for each bridge listed in the "Bridge"
config lines, and use these relays as both entry guards and directory
guards. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="UseEntryGuards"></a> <strong>UseEntryGuards</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 1, we pick a few long-term entry servers, and try
to stick with them. This is desirable because constantly changing servers
increases the odds that an adversary who owns some servers will observe a
fraction of your paths. Entry Guards can not be used by Directory
Authorities or Single Onion Services. In these cases,
this option is ignored. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="UseGuardFraction"></a> <strong>UseGuardFraction</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
This option specifies whether clients should use the
guardfraction information found in the consensus during path
selection. If it’s set to <em>auto</em>, clients will do what the
UseGuardFraction consensus parameter tells them to do. (Default: auto)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="GuardLifetime"></a> <strong>GuardLifetime</strong> <em>N</em> <strong>days</strong>|<strong>weeks</strong>|<strong>months</strong>
</dt>
<dd>
<p>
If UseEntryGuards is set, minimum time to keep a guard on our guard list
before picking a new one. If less than one day, we use defaults from the
consensus directory. (Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="NumDirectoryGuards"></a> <strong>NumDirectoryGuards</strong> <em>NUM</em>
</dt>
<dd>
<p>
If UseEntryGuards is set to 1, we try to make sure we have at least NUM
routers to use as directory guards. If this option is set to 0, use the
value from the guard-n-primary-dir-guards-to-use consensus parameter, and
default to 3 if the consensus parameter isn’t set. (Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="NumEntryGuards"></a> <strong>NumEntryGuards</strong> <em>NUM</em>
</dt>
<dd>
<p>
If UseEntryGuards is set to 1, we will try to pick a total of NUM routers
as long-term entries for our circuits. If NUM is 0, we try to learn the
number from the guard-n-primary-guards-to-use consensus parameter, and
default to 1 if the consensus parameter isn’t set. (Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="NumPrimaryGuards"></a> <strong>NumPrimaryGuards</strong> <em>NUM</em>
</dt>
<dd>
<p>
If UseEntryGuards is set to 1, we will try to pick NUM routers for our
primary guard list, which is the set of routers we strongly prefer when
connecting to the Tor network. If NUM is 0, we try to learn the number from
the guard-n-primary-guards consensus parameter, and default to 3 if the
consensus parameter isn’t set. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="VanguardsLiteEnabled"></a> <strong>VanguardsLiteEnabled</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
This option specifies whether clients should use the vanguards-lite
subsystem to protect against guard discovery attacks. If it’s set to
<em>auto</em>, clients will do what the vanguards-lite-enabled consensus parameter
tells them to do, and will default to enable the subsystem if the consensus
parameter isn’t set. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="UseMicrodescriptors"></a> <strong>UseMicrodescriptors</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Microdescriptors are a smaller version of the information that Tor needs
in order to build its circuits. Using microdescriptors makes Tor clients
download less directory information, thus saving bandwidth. Directory
caches need to fetch regular descriptors and microdescriptors, so this
option doesn’t save any bandwidth for them. For legacy reasons, auto is
accepted, but it has the same effect as 1. (Default: auto)
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="VirtualAddrNetworkIPv4"></a> <strong>VirtualAddrNetworkIPv4</strong> <em>IPv4Address</em>/<em>bits</em><br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="VirtualAddrNetworkIPv6"></a> <strong>VirtualAddrNetworkIPv6</strong> [<em>IPv6Address</em>]/<em>bits</em>
</dt>
<dd>
<p>
When Tor needs to assign a virtual (unused) address because of a MAPADDRESS
command from the controller or the AutomapHostsOnResolve feature, Tor
picks an unassigned address from this range. (Defaults:
127.192.0.0/10 and [FE80::]/10 respectively.)<br />
<br />
When providing proxy server service to a network of computers using a tool
like dns-proxy-tor, change the IPv4 network to "10.192.0.0/10" or
"172.16.0.0/12" and change the IPv6 network to "[FC00::]/7".
The default <strong>VirtualAddrNetwork</strong> address ranges on a
properly configured machine will route to the loopback or link-local
interface. The maximum number of bits for the network prefix is set to 104
for IPv6 and 16 for IPv4. However, a larger network
(that is, one with a smaller prefix length)
is preferable, since it reduces the chances for an attacker to guess the
used IP. For local use, no change to the default VirtualAddrNetwork setting
is needed.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_circuit_timeout_options">CIRCUIT TIMEOUT OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options are useful for configuring timeouts related
to building Tor circuits and using them:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="CircuitsAvailableTimeout"></a> <strong>CircuitsAvailableTimeout</strong> <em>NUM</em>
</dt>
<dd>
<p>
Tor will attempt to keep at least one open, unused circuit available for
this amount of time. This option governs how long idle circuits are kept
open, as well as the amount of time Tor will keep a circuit open to each
of the recently used ports. This way when the Tor client is entirely
idle, it can expire all of its circuits, and then expire its TLS
connections. Note that the actual timeout value is uniformly randomized
from the specified value to twice that amount. (Default: 30 minutes;
Max: 24 hours)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="LearnCircuitBuildTimeout"></a> <strong>LearnCircuitBuildTimeout</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If 0, CircuitBuildTimeout adaptive learning is disabled. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="CircuitBuildTimeout"></a> <strong>CircuitBuildTimeout</strong> <em>NUM</em>
</dt>
<dd>
<p>
Try for at most NUM seconds when building circuits. If the circuit isn’t
open in that time, give up on it. If LearnCircuitBuildTimeout is 1, this
value serves as the initial value to use before a timeout is learned. If
LearnCircuitBuildTimeout is 0, this value is the only value used.
(Default: 60 seconds)
</p>
</dd>
<dt class="hdlist1">
<a id="CircuitStreamTimeout"></a> <strong>CircuitStreamTimeout</strong> <em>NUM</em>
</dt>
<dd>
<p>
If non-zero, this option overrides our internal timeout schedule for how
many seconds until we detach a stream from a circuit and try a new circuit.
If your network is particularly slow, you might want to set this to a
number like 60. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="SocksTimeout"></a> <strong>SocksTimeout</strong> <em>NUM</em>
</dt>
<dd>
<p>
Let a socks connection wait NUM seconds handshaking, and NUM seconds
unattached waiting for an appropriate circuit, before we fail it. (Default:
2 minutes)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_dormant_mode_options">DORMANT MODE OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tor can enter dormant mode to conserve power and network bandwidth.
The following options control when Tor enters and leaves dormant mode:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="DormantCanceledByStartup"></a> <strong>DormantCanceledByStartup</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
By default, Tor starts in active mode if it was active the last time
it was shut down, and in dormant mode if it was dormant. But if
this option is true, Tor treats every startup event as user
activity, and Tor will never start in Dormant mode, even if it has
been unused for a long time on previous runs. (Default: 0)
<br />
Note: Packagers and application developers should change the value of
this option only with great caution: it has the potential to
create spurious traffic on the network. This option should only
be used if Tor is started by an affirmative user activity (like
clicking on an application or running a command), and not if Tor
is launched for some other reason (for example, by a startup
process, or by an application that launches itself on every login.)
</p>
</dd>
<dt class="hdlist1">
<a id="DormantClientTimeout"></a> <strong>DormantClientTimeout</strong> <em>N</em> <strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
If Tor spends this much time without any client activity,
enter a dormant state where automatic circuits are not built, and
directory information is not fetched.
Does not affect servers or onion services. Must be at least 10 minutes.
(Default: 24 hours)
</p>
</dd>
<dt class="hdlist1">
<a id="DormantOnFirstStartup"></a> <strong>DormantOnFirstStartup</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If true, then the first time Tor starts up with a fresh DataDirectory,
it starts in dormant mode, and takes no actions until the user has made
a request. (This mode is recommended if installing a Tor client for a
user who might not actually use it.) If false, Tor bootstraps the first
time it is started, whether it sees a user request or not.
<br />
After the first time Tor starts, it begins in dormant mode if it was
dormant before, and not otherwise. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DormantTimeoutDisabledByIdleStreams"></a> <strong>DormantTimeoutDisabledByIdleStreams</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If true, then any open client stream (even one not reading or writing)
counts as client activity for the purpose of DormantClientTimeout.
If false, then only network activity counts. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="DormantTimeoutEnabled"></a> <strong>DormantTimeoutEnabled</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If false, then no amount of time without activity is sufficient to
make Tor go dormant. Setting this option to zero is only recommended for
special-purpose applications that need to use the Tor binary for
something other than sending or receiving Tor traffic. (Default: 1)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_node_selection_options">NODE SELECTION OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options restrict the nodes that a tor client
(or onion service) can use while building a circuit.
These options can weaken your anonymity by making your client behavior
different from other Tor clients:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="EntryNodes"></a> <strong>EntryNodes</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints and country codes of nodes
to use for the first hop in your normal circuits.
Normal circuits include all
circuits except for direct connections to directory servers. The Bridge
option overrides this option; if you have configured bridges and
UseBridges is 1, the Bridges are used as your entry nodes.<br />
<br />
This option can appear multiple times: the values from multiple lines are
spliced together.<br />
<br />
The ExcludeNodes option overrides this option: any node listed in both
EntryNodes and ExcludeNodes is treated as excluded. See
<a href="#ExcludeNodes">ExcludeNodes</a> for more information on how to specify nodes.
</p>
</dd>
<dt class="hdlist1">
<a id="ExcludeNodes"></a> <strong>ExcludeNodes</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints, country codes, and address
patterns of nodes to avoid when building a circuit. Country codes are
2-letter ISO3166 codes, and must
be wrapped in braces; fingerprints may be preceded by a dollar sign.
(Example:
ExcludeNodes ABCD1234CDEF5678ABCD1234CDEF5678ABCD1234, {cc}, 255.254.0.0/8)<br />
<br />
This option can appear multiple times: the values from multiple lines are
spliced together.<br />
<br />
By default, this option is treated as a preference that Tor is allowed
to override in order to keep working.
For example, if you try to connect to a hidden service,
but you have excluded all of the hidden service’s introduction points,
Tor will connect to one of them anyway. If you do not want this
behavior, set the StrictNodes option (documented below). <br />
<br />
Note also that if you are a relay, this (and the other node selection
options below) only affects your own circuits that Tor builds for you.
Clients can still build circuits through you to any node. Controllers
can tell Tor to build circuits through any node.<br />
<br />
Country codes are case-insensitive. The code "{??}" refers to nodes whose
country can’t be identified. No country code, including {??}, works if
no GeoIPFile can be loaded. See also the <a href="#GeoIPExcludeUnknown">GeoIPExcludeUnknown</a> option below.
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="ExcludeExitNodes"></a> <strong>ExcludeExitNodes</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints, country codes, and address
patterns of nodes to never use when picking an exit node---that is, a
node that delivers traffic for you <strong>outside</strong> the Tor network. Note that any
node listed in ExcludeNodes is automatically considered to be part of this
list too. See
<a href="#ExcludeNodes">ExcludeNodes</a> for more information on how to specify
nodes. See also the caveats on the <a href="#ExitNodes">ExitNodes</a> option below.
<br />
This option can appear multiple times: the values from multiple lines are
spliced together.<br />
<br />
</p>
</dd>
<dt class="hdlist1">
<a id="ExitNodes"></a> <strong>ExitNodes</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints, country codes, and address
patterns of nodes to use as exit node---that is, a
node that delivers traffic for you <strong>outside</strong> the Tor network. See
<a href="#ExcludeNodes">ExcludeNodes</a> for more information on how to specify nodes.<br />
<br />
This option can appear multiple times: the values from multiple lines are
spliced together.<br />
<br />
Note that if you list too few nodes here, or if you exclude too many exit
nodes with ExcludeExitNodes, you can degrade functionality. For example,
if none of the exits you list allows traffic on port 80 or 443, you won’t
be able to browse the web.<br />
<br />
Note also that not every circuit is used to deliver traffic <strong>outside</strong> of
the Tor network. It is normal to see non-exit circuits (such as those
used to connect to hidden services, those that do directory fetches,
those used for relay reachability self-tests, and so on) that end
at a non-exit node. To
keep a node from being used entirely, see <a href="#ExcludeNodes">ExcludeNodes</a> and <a href="#StrictNodes">StrictNodes</a>.<br />
<br />
The ExcludeNodes option overrides this option: any node listed in both
ExitNodes and ExcludeNodes is treated as excluded.<br />
<br />
The .exit address notation, if enabled via MapAddress, overrides
this option.
</p>
</dd>
<dt class="hdlist1">
<a id="GeoIPExcludeUnknown"></a> <strong>GeoIPExcludeUnknown</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
If this option is set to <em>auto</em>, then whenever any country code is set in
ExcludeNodes or ExcludeExitNodes, all nodes with unknown country ({??} and
possibly {A1}) are treated as excluded as well. If this option is set to
<em>1</em>, then all unknown countries are treated as excluded in ExcludeNodes
and ExcludeExitNodes. This option has no effect when a GeoIP file isn’t
configured or can’t be found. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="HSLayer2Nodes"></a> <strong>HSLayer2Nodes</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints, nicknames, country codes, and
address patterns of nodes that are allowed to be used as the
second hop in all client or service-side Onion Service circuits.
This option mitigates attacks where the adversary runs middle nodes
and induces your client or service to create many circuits, in order
to discover your primary guard node.
(Default: Any node in the network may be used in the second hop.)
<br />
(Example:
HSLayer2Nodes ABCD1234CDEF5678ABCD1234CDEF5678ABCD1234, {cc}, 255.254.0.0/8)<br />
<br />
This option can appear multiple times: the values from multiple lines are
spliced together.<br />
<br />
When this is set, the resulting hidden service paths will
look like:
<br />
C - G - L2 - M - Rend<br />
C - G - L2 - M - HSDir<br />
C - G - L2 - M - Intro<br />
S - G - L2 - M - Rend<br />
S - G - L2 - M - HSDir<br />
S - G - L2 - M - Intro<br />
<br />
where C is this client, S is the service, G is the Guard node,
L2 is a node from this option, and M is a random middle node.
Rend, HSDir, and Intro point selection is not affected by this
option.
<br />
This option may be combined with HSLayer3Nodes to create
paths of the form:
<br />
C - G - L2 - L3 - Rend<br />
C - G - L2 - L3 - M - HSDir<br />
C - G - L2 - L3 - M - Intro<br />
S - G - L2 - L3 - M - Rend<br />
S - G - L2 - L3 - HSDir<br />
S - G - L2 - L3 - Intro<br />
<br />
ExcludeNodes have higher priority than HSLayer2Nodes,
which means that nodes specified in ExcludeNodes will not be
picked.
<br />
When either this option or HSLayer3Nodes are set, the /16 subnet
and node family restrictions are removed for hidden service
circuits. Additionally, we allow the guard node to be present
as the Rend, HSDir, and IP node, and as the hop before it. This
is done to prevent the adversary from inferring information
about our guard, layer2, and layer3 node choices at later points
in the path.
<br />
This option is meant to be managed by a Tor controller such as
<a href="https://github.com/mikeperry-tor/vanguards">https://github.com/mikeperry-tor/vanguards</a> that selects and
updates this set of nodes for you. Hence it does not do load
balancing if fewer than 20 nodes are selected, and if no nodes in
HSLayer2Nodes are currently available for use, Tor will not work.
Please use extreme care if you are setting this option manually.
</p>
</dd>
<dt class="hdlist1">
<a id="HSLayer3Nodes"></a> <strong>HSLayer3Nodes</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints, nicknames, country codes, and
address patterns of nodes that are allowed to be used as the
third hop in all client and service-side Onion Service circuits.
This option mitigates attacks where the adversary runs middle nodes
and induces your client or service to create many circuits, in order
to discover your primary or Layer2 guard nodes.
(Default: Any node in the network may be used in the third hop.)
<br />
(Example:
HSLayer3Nodes ABCD1234CDEF5678ABCD1234CDEF5678ABCD1234, {cc}, 255.254.0.0/8)<br />
<br />
This option can appear multiple times: the values from multiple lines are
spliced together.<br />
<br />
When this is set by itself, the resulting hidden service paths
will look like:<br />
C - G - M - L3 - Rend<br />
C - G - M - L3 - M - HSDir<br />
C - G - M - L3 - M - Intro<br />
S - G - M - L3 - M - Rend<br />
S - G - M - L3 - HSDir<br />
S - G - M - L3 - Intro<br />
where C is this client, S is the service, G is the Guard node,
L2 is a node from this option, and M is a random middle node.
Rend, HSDir, and Intro point selection is not affected by this
option.
<br />
While it is possible to use this option by itself, it should be
combined with HSLayer2Nodes to create paths of the form:
<br />
C - G - L2 - L3 - Rend<br />
C - G - L2 - L3 - M - HSDir<br />
C - G - L2 - L3 - M - Intro<br />
S - G - L2 - L3 - M - Rend<br />
S - G - L2 - L3 - HSDir<br />
S - G - L2 - L3 - Intro<br />
<br />
ExcludeNodes have higher priority than HSLayer3Nodes,
which means that nodes specified in ExcludeNodes will not be
picked.
<br />
When either this option or HSLayer2Nodes are set, the /16 subnet
and node family restrictions are removed for hidden service
circuits. Additionally, we allow the guard node to be present
as the Rend, HSDir, and IP node, and as the hop before it. This
is done to prevent the adversary from inferring information
about our guard, layer2, and layer3 node choices at later points
in the path.
<br />
This option is meant to be managed by a Tor controller such as
<a href="https://github.com/mikeperry-tor/vanguards">https://github.com/mikeperry-tor/vanguards</a> that selects and
updates this set of nodes for you. Hence it does not do load
balancing if fewer than 20 nodes are selected, and if no nodes in
HSLayer3Nodes are currently available for use, Tor will not work.
Please use extreme care if you are setting this option manually.
</p>
</dd>
<dt class="hdlist1">
<a id="MiddleNodes"></a> <strong>MiddleNodes</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints and country codes of nodes
to use for "middle" hops in your normal circuits.
Normal circuits include all circuits except for direct connections
to directory servers. Middle hops are all hops other than exit and entry.
<br />
This option can appear multiple times: the values from multiple lines are
spliced together.<br />
<br />
This is an <strong>experimental</strong> feature that is meant to be used by researchers
and developers to test new features in the Tor network safely. Using it
without care will strongly influence your anonymity. Other tor features may
not work with MiddleNodes. This feature might get removed in the future.
</p>
<div class="literalblock">
<div class="content">
<pre><code>The HSLayer2Node and HSLayer3Node options override this option for onion
service circuits, if they are set. The vanguards addon will read this
option, and if set, it will set HSLayer2Nodes and HSLayer3Nodes to nodes
from this set.</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>The ExcludeNodes option overrides this option: any node listed in both
MiddleNodes and ExcludeNodes is treated as excluded. See
the <<ExcludeNodes,ExcludeNodes>> for more information on how to specify nodes.</code></pre>
</div></div>
</dd>
<dt class="hdlist1">
<a id="NodeFamily"></a> <strong>NodeFamily</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
The Tor servers, defined by their identity fingerprints,
constitute a "family" of similar or co-administered servers, so never use
any two of them in the same circuit. Defining a NodeFamily is only needed
when a server doesn’t list the family itself (with MyFamily). This option
can be used multiple times; each instance defines a separate family. In
addition to nodes, you can also list IP address and ranges and country
codes in {curly braces}. See <a href="#ExcludeNodes">ExcludeNodes</a> for more
information on how to specify nodes.
</p>
</dd>
<dt class="hdlist1">
<a id="StrictNodes"></a> <strong>StrictNodes</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If StrictNodes is set to 1, Tor will treat solely the ExcludeNodes option
as a requirement to follow for all the circuits you generate, even if
doing so will break functionality for you (StrictNodes does not apply to
ExcludeExitNodes, ExitNodes, MiddleNodes, or MapAddress). If StrictNodes
is set to 0, Tor will still try to avoid nodes in the ExcludeNodes list,
but it will err on the side of avoiding unexpected errors.
Specifically, StrictNodes 0 tells Tor that it is okay to use an excluded
node when it is <strong>necessary</strong> to perform relay reachability self-tests,
connect to a hidden service, provide a hidden service to a client,
fulfill a .exit request, upload directory information, or download
directory information. (Default: 0)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="server-options">SERVER OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options are useful only for servers (that is, if ORPort
is non-zero):</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="AccountingMax"></a> <strong>AccountingMax</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
Limits the max number of bytes sent and received within a set time period
using a given calculation rule (see <a href="#AccountingStart">AccountingStart</a> and <a href="#AccountingRule">AccountingRule</a>).
Useful if you need to stay under a specific bandwidth. By default, the
number used for calculation is the max of either the bytes sent or
received. For example, with AccountingMax set to 1 TByte, a server
could send 900 GBytes and receive 800 GBytes and continue running.
It will only hibernate once one of the two reaches 1 TByte. This can
be changed to use the sum of the both bytes received and sent by setting
the AccountingRule option to "sum" (total bandwidth in/out). When the
number of bytes remaining gets low, Tor will stop accepting new connections
and circuits. When the number of bytes is exhausted, Tor will hibernate
until some time in the next accounting period. To prevent all servers
from waking at the same time, Tor will also wait until a random point
in each period before waking up. If you have bandwidth cost issues,
enabling hibernation is preferable to setting a low bandwidth, since
it provides users with a collection of fast servers that are up some
of the time, which is more useful than a set of slow servers that are
always "available".<br />
<br />
Note that (as also described in the Bandwidth section) Tor uses
powers of two, not powers of ten: 1 GByte is 1024*1024*1024, not
one billion. Be careful: some internet service providers might count
GBytes differently.
</p>
</dd>
<dt class="hdlist1">
<a id="AccountingRule"></a> <strong>AccountingRule</strong> <strong>sum</strong>|<strong>max</strong>|<strong>in</strong>|<strong>out</strong>
</dt>
<dd>
<p>
How we determine when our AccountingMax has been reached (when we
should hibernate) during a time interval. Set to "max" to calculate
using the higher of either the sent or received bytes (this is the
default functionality). Set to "sum" to calculate using the sent
plus received bytes. Set to "in" to calculate using only the
received bytes. Set to "out" to calculate using only the sent bytes.
(Default: max)
</p>
</dd>
<dt class="hdlist1">
<a id="AccountingStart"></a> <strong>AccountingStart</strong> <strong>day</strong>|<strong>week</strong>|<strong>month</strong> [<em>day</em>] <em>HH:MM</em>
</dt>
<dd>
<p>
Specify how long accounting periods last. If <strong>month</strong> is given,
each accounting period runs from the time <em>HH:MM</em> on the <em>dayth</em> day of one
month to the same day and time of the next. The relay will go at full speed,
use all the quota you specify, then hibernate for the rest of the period. (The
day must be between 1 and 28.) If <strong>week</strong> is given, each accounting period
runs from the time <em>HH:MM</em> of the <em>dayth</em> day of one week to the same day
and time of the next week, with Monday as day 1 and Sunday as day 7. If <strong>day</strong>
is given, each accounting period runs from the time <em>HH:MM</em> each day to the
same time on the next day. All times are local, and given in 24-hour time.
(Default: "month 1 0:00")
</p>
</dd>
<dt class="hdlist1">
<a id="Address"></a> <strong>Address</strong> <em>address</em>
</dt>
<dd>
<p>
The address of this server, or a fully qualified domain name of this server
that resolves to an address. You can leave this unset, and Tor will try to
guess your address. If a domain name is provided, Tor will attempt to
resolve it and use the underlying IPv4/IPv6 address as its publish address
(taking precedence over the ORPort configuration). The publish address is
the one used to tell clients and other servers where to find your Tor
server; it doesn’t affect the address that your server binds to. To bind
to a different address, use the ORPort and OutboundBindAddress options.
</p>
</dd>
<dt class="hdlist1">
<a id="AddressDisableIPv6"></a> <strong>AddressDisableIPv6</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
By default, Tor will attempt to find the IPv6 of the relay if there is no
IPv4Only ORPort. If set, this option disables IPv6 auto discovery. This
disables IPv6 address resolution, IPv6 ORPorts, and IPv6 reachability
checks. Also, the relay won’t publish an IPv6 ORPort in its
descriptor. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="AssumeReachable"></a> <strong>AssumeReachable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
This option is used when bootstrapping a new Tor network. If set to 1,
don’t do self-reachability testing; just upload your server descriptor
immediately. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="AssumeReachableIPv6"></a> <strong>AssumeReachableIPv6</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Like <strong>AssumeReachable</strong>, but affects only the relay’s own IPv6 ORPort.
If this value is set to "auto", then Tor will look at <strong>AssumeReachable</strong>
instead. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="BridgeRelay"></a> <strong>BridgeRelay</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Sets the relay to act as a "bridge" with respect to relaying connections
from bridge users to the Tor network. It mainly causes Tor to publish a
server descriptor to the bridge database, rather than
to the public directory authorities.<br />
<br />
Note: make sure that no MyFamily lines are present in your torrc when
relay is configured in bridge mode.
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="BridgeDistribution"></a> <strong>BridgeDistribution</strong> <em>string</em>
</dt>
<dd>
<p>
If set along with BridgeRelay, Tor will include a new line in its
bridge descriptor which indicates to the BridgeDB service how it
would like its bridge address to be given out. Set it to "none" if
you want BridgeDB to avoid distributing your bridge address, or "any" to
let BridgeDB decide. See <a href="https://bridges.torproject.org/info">https://bridges.torproject.org/info</a> for a more
up-to-date list of options. (Default: any)
</p>
</dd>
<dt class="hdlist1">
<a id="ContactInfo"></a> <strong>ContactInfo</strong> <em>email_address</em>
</dt>
<dd>
<p>
Administrative contact information for this relay or bridge. This line
can be used to contact you if your relay or bridge is misconfigured or
something else goes wrong. Note that we archive and publish all
descriptors containing these lines and that Google indexes them, so
spammers might also collect them. You may want to obscure the fact
that it’s an email address and/or generate a new address for this
purpose.<br />
<br />
ContactInfo <strong>must</strong> be set to a working address if you run more than one
relay or bridge. (Really, everybody running a relay or bridge should set
it.)
</p>
</dd>
<dt class="hdlist1">
<a id="DisableOOSCheck"></a> <strong>DisableOOSCheck</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
This option disables the code that closes connections when Tor notices
that it is running low on sockets. Right now, it is on by default,
since the existing out-of-sockets mechanism tends to kill OR connections
more than it should. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ExitPolicy"></a> <strong>ExitPolicy</strong> <em>policy</em>,<em>policy</em>,<em>…</em>
</dt>
<dd>
<p>
Set an exit policy for this server. Each policy is of the form
"<strong>accept[6]</strong>|<strong>reject[6]</strong> <em>ADDR</em>[/<em>MASK</em>][:<em>PORT</em>]". If /<em>MASK</em> is
omitted then this policy just applies to the host given. Instead of giving
a host or network you can also use "*" to denote the universe (0.0.0.0/0
and ::/0), or *4 to denote all IPv4 addresses, and *6 to denote all IPv6
addresses.
<em>PORT</em> can be a single port number, an interval of ports
"<em>FROM_PORT</em>-<em>TO_PORT</em>", or "*". If <em>PORT</em> is omitted, that means
"*".<br />
<br />
For example, "accept 18.7.22.69:*,reject 18.0.0.0/8:*,accept *:*" would
reject any IPv4 traffic destined for MIT except for web.mit.edu, and accept
any other IPv4 or IPv6 traffic.<br />
<br />
Tor also allows IPv6 exit policy entries. For instance, "reject6 [FC00::]/7:*"
rejects all destinations that share 7 most significant bit prefix with
address FC00::. Respectively, "accept6 [C000::]/3:*" accepts all destinations
that share 3 most significant bit prefix with address C000::.<br />
<br />
accept6 and reject6 only produce IPv6 exit policy entries. Using an IPv4
address with accept6 or reject6 is ignored and generates a warning.
accept/reject allows either IPv4 or IPv6 addresses. Use *4 as an IPv4
wildcard address, and *6 as an IPv6 wildcard address. accept/reject *
expands to matching IPv4 and IPv6 wildcard address rules.<br />
<br />
To specify all IPv4 and IPv6 internal and link-local networks (including
0.0.0.0/8, 169.254.0.0/16, 127.0.0.0/8, 192.168.0.0/16, 10.0.0.0/8,
172.16.0.0/12, [::]/8, [FC00::]/7, [FE80::]/10, [FEC0::]/10, [FF00::]/8,
and [::]/127), you can use the "private" alias instead of an address.
("private" always produces rules for IPv4 and IPv6 addresses, even when
used with accept6/reject6.)<br />
<br />
Private addresses are rejected by default (at the beginning of your exit
policy), along with any configured primary public IPv4 and IPv6 addresses.
These private addresses are rejected unless you set the
ExitPolicyRejectPrivate config option to 0. For example, once you’ve done
that, you could allow HTTP to 127.0.0.1 and block all other connections to
internal networks with "accept 127.0.0.1:80,reject private:*", though that
may also allow connections to your own computer that are addressed to its
public (external) IP address. See RFC 1918 and RFC 3330 for more details
about internal and reserved IP address space. See
<a href="#ExitPolicyRejectLocalInterfaces">ExitPolicyRejectLocalInterfaces</a> if you want to block every address on the
relay, even those that aren’t advertised in the descriptor.<br />
<br />
This directive can be specified multiple times so you don’t have to put it
all on one line.<br />
<br />
Policies are considered first to last, and the first match wins. If you
want to allow the same ports on IPv4 and IPv6, write your rules using
accept/reject *. If you want to allow different ports on IPv4 and IPv6,
write your IPv6 rules using accept6/reject6 *6, and your IPv4 rules using
accept/reject *4. If you want to _replace_ the default exit policy, end
your exit policy with either a reject *:* or an accept *:*. Otherwise,
you’re _augmenting_ (prepending to) the default exit policy.<br />
<br />
If you want to use a reduced exit policy rather than the default exit
policy, set "ReducedExitPolicy 1". If you want to <em>replace</em> the default
exit policy with your custom exit policy, end your exit policy with either
a reject <strong>:</strong> or an accept <strong>:</strong>. Otherwise, you’re <em>augmenting</em> (prepending
to) the default or reduced exit policy.<br />
<br />
The default exit policy is:
</p>
<div class="literalblock">
<div class="content">
<pre><code>reject *:25
reject *:119
reject *:135-139
reject *:445
reject *:563
reject *:1214
reject *:4661-4666
reject *:6346-6429
reject *:6699
reject *:6881-6999
accept *:*</code></pre>
</div></div>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="ExitPolicyDefault"></a>
</dt>
<dd>
<p>
Since the default exit policy uses accept/reject *, it applies to both
IPv4 and IPv6 addresses.
</p>
</dd>
<dt class="hdlist1">
<a id="ExitPolicyRejectLocalInterfaces"></a> <strong>ExitPolicyRejectLocalInterfaces</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Reject all IPv4 and IPv6 addresses that the relay knows about, at the
beginning of your exit policy. This includes any OutboundBindAddress, the
bind addresses of any port options, such as ControlPort or DNSPort, and any
public IPv4 and IPv6 addresses on any interface on the relay. (If IPv6Exit
is not set, all IPv6 addresses will be rejected anyway.)
See above entry on <a href="#ExitPolicy">ExitPolicy</a>.
This option is off by default, because it lists all public relay IP
addresses in the ExitPolicy, even those relay operators might prefer not
to disclose.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ExitPolicyRejectPrivate"></a> <strong>ExitPolicyRejectPrivate</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Reject all private (local) networks, along with the relay’s advertised
public IPv4 and IPv6 addresses, at the beginning of your exit policy.
See above entry on <a href="#ExitPolicy">ExitPolicy</a>.
(Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ExitRelay"></a> <strong>ExitRelay</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Tells Tor whether to run as an exit relay. If Tor is running as a
non-bridge server, and ExitRelay is set to 1, then Tor allows traffic to
exit according to the ExitPolicy option, the ReducedExitPolicy option,
or the default ExitPolicy (if no other exit policy option is specified).<br />
<br />
If ExitRelay is set to 0, no traffic is allowed to exit, and the
ExitPolicy, ReducedExitPolicy, and IPv6Exit options are ignored.<br />
<br />
If ExitRelay is set to "auto", then Tor checks the ExitPolicy,
ReducedExitPolicy, and IPv6Exit options. If at least one of these options
is set, Tor behaves as if ExitRelay were set to 1. If none of these exit
policy options are set, Tor behaves as if ExitRelay were set to 0.
(Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="ReevaluateExitPolicy"></a> <strong>ReevaluateExitPolicy</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set, reevaluate the exit policy on existing connections when reloading
configuration.<br />
<br />
When the exit policy of an exit node change while reloading configuration,
connections made prior to this change could violate the new policy. By
setting this to 1, Tor will check if such connections exist, and mark them
for termination.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ExtendAllowPrivateAddresses"></a> <strong>ExtendAllowPrivateAddresses</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is enabled, Tor will connect to relays on localhost,
RFC1918 addresses, and so on. In particular, Tor will make direct OR
connections, and Tor routers allow EXTEND requests, to these private
addresses. (Tor will always allow connections to bridges, proxies, and
pluggable transports configured on private addresses.) Enabling this
option can create security issues; you should probably leave it off.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="GeoIPFile"></a> <strong>GeoIPFile</strong> <em>filename</em>
</dt>
<dd>
<p>
A filename containing IPv4 GeoIP data, for use with by-country statistics.
</p>
</dd>
<dt class="hdlist1">
<a id="GeoIPv6File"></a> <strong>GeoIPv6File</strong> <em>filename</em>
</dt>
<dd>
<p>
A filename containing IPv6 GeoIP data, for use with by-country statistics.
</p>
</dd>
<dt class="hdlist1">
<a id="HeartbeatPeriod"></a> <strong>HeartbeatPeriod</strong> <em>N</em> <strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
Log a heartbeat message every <strong>HeartbeatPeriod</strong> seconds. This is
a log level <em>notice</em> message, designed to let you know your Tor
server is still alive and doing useful things. Settings this
to 0 will disable the heartbeat. Otherwise, it must be at least 30
minutes. (Default: 6 hours)
</p>
</dd>
<dt class="hdlist1">
<a id="IPv6Exit"></a> <strong>IPv6Exit</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set, and we are an exit node, allow clients to use us for IPv6 traffic.
When this option is set and ExitRelay is auto, we act as if ExitRelay
is 1. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="KeyDirectory"></a> <strong>KeyDirectory</strong> <em>DIR</em>
</dt>
<dd>
<p>
Store secret keys in DIR. Can not be changed while tor is
running.
(Default: the "keys" subdirectory of DataDirectory.)
</p>
</dd>
<dt class="hdlist1">
<a id="KeyDirectoryGroupReadable"></a> <strong>KeyDirectoryGroupReadable</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
If this option is set to 0, don’t allow the filesystem group to read the
KeyDirectory. If the option is set to 1, make the KeyDirectory readable
by the default GID. If the option is "auto", then we use the
setting for DataDirectoryGroupReadable when the KeyDirectory is the
same as the DataDirectory, and 0 otherwise. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="MainloopStats"></a> <strong>MainloopStats</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Log main loop statistics every <strong>HeartbeatPeriod</strong> seconds. This is a log
level <em>notice</em> message designed to help developers instrumenting Tor’s
main event loop. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="MaxHSDirCacheBytes"></a> <strong>MaxHSDirCacheBytes</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>
</dt>
<dd>
<p>
This option configures a threshold of Hidden Service Directory memory
consumption above which your Tor relay will begin to prune the least-frequently
accessed hidden service descriptors from the relay’s HSDir cache.
If set to 0, this will default to 20% of MaxMemInQueues. (Default: 0)<br />
<br />
This pruning used to be done as part of MaxMemInQueues, but it has been
decoupled to allow more fine-grained control of descriptor cache size under
DDoS conditions.
</p>
</dd>
<dt class="hdlist1">
<a id="MaxMemInQueues"></a> <strong>MaxMemInQueues</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>
</dt>
<dd>
<p>
This option configures a threshold above which Tor will assume that it
needs to stop queueing or buffering data because it’s about to run out of
memory. If it hits this threshold, it will begin killing circuits until
it has recovered at least 10% of this memory. Do not set this option too
low, or your relay may be unreliable under load. This option only
affects some queues, so the actual process size will be larger than
this. If this option is set to 0, Tor will try to pick a reasonable
default based on your system’s physical memory. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="MaxOnionQueueDelay"></a> <strong>MaxOnionQueueDelay</strong> <em>NUM</em> [<strong>msec</strong>|<strong>second</strong>]
</dt>
<dd>
<p>
If we have more onionskins queued for processing than we can process in
this amount of time, reject new ones. (Default: 1750 msec)
</p>
</dd>
<dt class="hdlist1">
<a id="MyFamily"></a> <strong>MyFamily</strong> <em>fingerprint</em>,<em>fingerprint</em>,…
</dt>
<dd>
<p>
Declare that this Tor relay is controlled or administered by a group or
organization identical or similar to that of the other relays, defined by
their (possibly $-prefixed) identity fingerprints.
This option can be repeated many times, for
convenience in defining large families: all fingerprints in all MyFamily
lines are merged into one list.
When two relays both declare that they are in the
same 'family', Tor clients will not use them in the same circuit. (Each
relay only needs to list the other servers in its family; it doesn’t need to
list itself, but it won’t hurt if it does.) Do not list any bridge relay as it would
compromise its concealment.<br />
<br />
If you run more than one relay, the MyFamily option on each relay
<strong>must</strong> list all other relays, as described above.<br />
<br />
Note: do not use MyFamily when configuring your Tor instance as a
bridge.
</p>
</dd>
<dt class="hdlist1">
<a id="FamilyId"></a> <strong>FamilyId</strong> <em>ident</em>
</dt>
<dd>
<p>
Configure this relay to be part of a family
identified by a shared secret family key with the given key identity.
A corresponding family key must be stored in the relay’s key directory,
with a filename ending with ".secret_family_key".
This option can appear multiple times.
Family keys are generated with "--keygen-family";
this also generates the value you should use in the <em>ident</em> field
in a file ending with ".public_family_id".
For information on generating and installing a family
key, see <a href="https://community.torproject.org/relay/setup/post-install/family-ids/">https://community.torproject.org/relay/setup/post-install/family-ids/</a>
<br />
In the future, this will be the preferred way for relays
to advertise family membership.
But for now, relay families should configure
both this option <em>and</em> MyFamily, so older clients
will still recognize the relays' family membership.
<br />
(Note that if the seccomp2 Sandbox feature is enabled,
it is not possible to change the key filenames while Tor is running.)
</p>
</dd>
<dt class="hdlist1">
<a id="FamilyIdStar"></a> <strong>FamilyId</strong> <strong> * </strong>
</dt>
<dd>
<p>
Configure this relay to be part of <em>every</em> family
identified by any family ID key found in the family key directory.
Only filenames ending with ".secret\_family\_key" are considered.
Specifying family IDs in this way makes it unnecessary to adjust the
configuration file if the family key is rotated,
but it increases the likelihood of accidentally using a different
set of family keys than the ones you had expected.
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="FamilyKeyDirectory"></a> <strong>FamilyKeyDirectory</strong> <em>directory</em>:
Configure a directory to use, in place of the key directory,
when searching for family ID keys.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="Nickname"></a> <strong>Nickname</strong> <em>name</em>
</dt>
<dd>
<p>
Set the server’s nickname to 'name'. Nicknames must be between 1 and 19
characters inclusive, and must contain only the characters [a-zA-Z0-9].
If not set, <strong>Unnamed</strong> will be used. Relays can always be uniquely identified
by their identity fingerprints.
</p>
</dd>
<dt class="hdlist1">
<a id="NumCPUs"></a> <strong>NumCPUs</strong> <em>num</em>
</dt>
<dd>
<p>
How many processes to use at once for decrypting onionskins and other
parallelizable operations. If this is set to 0, Tor will try to detect
how many CPUs you have, defaulting to 1 if it can’t tell. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="OfflineMasterKey"></a> <strong>OfflineMasterKey</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If non-zero, the Tor relay will never generate or load its master secret
key. Instead, you’ll have to use "tor --keygen" to manage the permanent
ed25519 master identity key, as well as the corresponding temporary
signing keys and certificates. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ORPort"></a> <strong>ORPort</strong> [<em>address</em><strong>:</strong>]<em>PORT</em>|<strong>auto</strong> [<em>flags</em>]
</dt>
<dd>
<p>
Advertise this port to listen for connections from Tor clients and
servers. This option is required to be a Tor server.
Set it to "auto" to have Tor pick a port for you. Set it to 0 to not
run an ORPort at all. This option can occur more than once. (Default: 0)<br />
<br />
Tor recognizes these flags on each ORPort:
</p>
<div class="dlist"><dl>
<dt class="hdlist1">
<strong>NoAdvertise</strong>
</dt>
<dd>
<p>
By default, we bind to a port and tell our users about it. If
NoAdvertise is specified, we don’t advertise, but listen anyway. This
can be useful if the port everybody will be connecting to (for
example, one that’s opened on our firewall) is somewhere else.
</p>
</dd>
<dt class="hdlist1">
<strong>NoListen</strong>
</dt>
<dd>
<p>
By default, we bind to a port and tell our users about it. If
NoListen is specified, we don’t bind, but advertise anyway. This
can be useful if something else (for example, a firewall’s port
forwarding configuration) is causing connections to reach us.
</p>
</dd>
<dt class="hdlist1">
<strong>IPv4Only</strong>
</dt>
<dd>
<p>
If the address is absent, or resolves to both an IPv4 and an IPv6
address, only listen to the IPv4 address.
</p>
</dd>
<dt class="hdlist1">
<strong>IPv6Only</strong>
</dt>
<dd>
<p>
If the address is absent, or resolves to both an IPv4 and an IPv6
address, only listen to the IPv6 address.
</p>
</dd>
</dl></div>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="ORPortFlagsExclusive"></a>
</dt>
<dd>
<p>
For obvious reasons, NoAdvertise and NoListen are mutually exclusive, and
IPv4Only and IPv6Only are mutually exclusive.
</p>
</dd>
<dt class="hdlist1">
<a id="PublishServerDescriptor"></a> <strong>PublishServerDescriptor</strong> <strong>0</strong>|<strong>1</strong>|<strong>v3</strong>|<strong>bridge</strong>,<strong>…</strong>
</dt>
<dd>
<p>
This option specifies which descriptors Tor will publish when acting as
a relay. You can
choose multiple arguments, separated by commas.<br />
<br />
If this option is set to 0, Tor will not publish its
descriptors to any directories. (This is useful if you’re testing
out your server, or if you’re using a Tor controller that handles
directory publishing for you.) Otherwise, Tor will publish its
descriptors of all type(s) specified. The default is "1", which
means "if running as a relay or bridge, publish descriptors to the
appropriate authorities". Other possibilities are "v3", meaning
"publish as if you’re a relay", and "bridge", meaning "publish as
if you’re a bridge".
</p>
</dd>
<dt class="hdlist1">
<a id="ReducedExitPolicy"></a> <strong>ReducedExitPolicy</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set, use a reduced exit policy rather than the default one.<br />
<br />
The reduced exit policy is an alternative to the default exit policy. It
allows as many Internet services as possible while still blocking the
majority of TCP ports. Currently, the policy allows approximately 65 ports.
This reduces the odds that your node will be used for peer-to-peer
applications.<br />
<br />
The reduced exit policy is:
</p>
<div class="literalblock">
<div class="content">
<pre><code>accept *:20-21
accept *:22
accept *:23
accept *:43
accept *:53
accept *:79
accept *:80-81
accept *:88
accept *:110
accept *:143
accept *:194
accept *:220
accept *:389
accept *:443
accept *:464
accept *:465
accept *:531
accept *:543-544
accept *:554
accept *:563
accept *:587
accept *:636
accept *:706
accept *:749
accept *:873
accept *:902-904
accept *:981
accept *:989-990
accept *:991
accept *:992
accept *:993
accept *:994
accept *:995
accept *:1194
accept *:1220
accept *:1293
accept *:1500
accept *:1533
accept *:1677
accept *:1723
accept *:1755
accept *:1863
accept *:2082
accept *:2083
accept *:2086-2087
accept *:2095-2096
accept *:2102-2104
accept *:3128
accept *:3389
accept *:3690
accept *:4321
accept *:4643
accept *:5050
accept *:5190
accept *:5222-5223
accept *:5228
accept *:5900
accept *:6660-6669
accept *:6679
accept *:6697
accept *:8000
accept *:8008
accept *:8074
accept *:8080
accept *:8082
accept *:8087-8088
accept *:8232-8233
accept *:8332-8333
accept *:8443
accept *:8888
accept *:9418
accept *:9999
accept *:10000
accept *:11371
accept *:19294
accept *:19638
accept *:50002
accept *:64738
reject *:*</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>(Default: 0)</code></pre>
</div></div>
</dd>
<dt class="hdlist1">
<a id="RefuseUnknownExits"></a> <strong>RefuseUnknownExits</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Prevent nodes that don’t appear in the consensus from exiting using this
relay. If the option is 1, we always block exit attempts from such
nodes; if it’s 0, we never do, and if the option is "auto", then we do
whatever the authorities suggest in the consensus (and block if the consensus
is quiet on the issue). (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerDNSAllowBrokenConfig"></a> <strong>ServerDNSAllowBrokenConfig</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is false, Tor exits immediately if there are problems
parsing the system DNS configuration or connecting to nameservers.
Otherwise, Tor continues to periodically retry the system nameservers until
it eventually succeeds. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerDNSAllowNonRFC953Hostnames"></a> <strong>ServerDNSAllowNonRFC953Hostnames</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is disabled, Tor does not try to resolve hostnames
containing illegal characters (like @ and :) rather than sending them to an
exit node to be resolved. This helps trap accidental attempts to resolve
URLs and so on. This option only affects name lookups that your server does
on behalf of clients. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerDNSDetectHijacking"></a> <strong>ServerDNSDetectHijacking</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set to 1, we will test periodically to determine
whether our local nameservers have been configured to hijack failing DNS
requests (usually to an advertising site). If they are, we will attempt to
correct this. This option only affects name lookups that your server does
on behalf of clients. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerDNSRandomizeCase"></a> <strong>ServerDNSRandomizeCase</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set, Tor sets the case of each character randomly in
outgoing DNS requests, and makes sure that the case matches in DNS replies.
This so-called "0x20 hack" helps resist some types of DNS poisoning attack.
For more information, see "Increased DNS Forgery Resistance through
0x20-Bit Encoding". This option only affects name lookups that your server
does on behalf of clients. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerDNSResolvConfFile"></a> <strong>ServerDNSResolvConfFile</strong> <em>filename</em>
</dt>
<dd>
<p>
Overrides the default DNS configuration with the configuration in
<em>filename</em>. The file format is the same as the standard Unix
"<strong>resolv.conf</strong>" file (7). This option, like all other ServerDNS options,
only affects name lookups that your server does on behalf of clients.
(Defaults to use the system DNS configuration or a localhost DNS service
in case no nameservers are found in a given configuration.)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerDNSSearchDomains"></a> <strong>ServerDNSSearchDomains</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, then we will search for addresses in the local search domain.
For example, if this system is configured to believe it is in
"example.com", and a client tries to connect to "www", the client will be
connected to "www.example.com". This option only affects name lookups that
your server does on behalf of clients. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerDNSTestAddresses"></a> <strong>ServerDNSTestAddresses</strong> <em>hostname</em>,<em>hostname</em>,<em>…</em>
</dt>
<dd>
<p>
When we’re detecting DNS hijacking, make sure that these <em>valid</em> addresses
aren’t getting redirected. If they are, then our DNS is completely useless,
and we’ll reset our exit policy to "reject *:*". This option only affects
name lookups that your server does on behalf of clients. (Default:
"www.google.com, www.mit.edu, www.yahoo.com, www.slashdot.org")
</p>
</dd>
<dt class="hdlist1">
<a id="ServerTransportListenAddr"></a> <strong>ServerTransportListenAddr</strong> <em>transport</em> <em>IP</em>:<em>PORT</em>
</dt>
<dd>
<p>
When this option is set, Tor will suggest <em>IP</em>:<em>PORT</em> as the
listening address of any pluggable transport proxy that tries to
launch <em>transport</em>. (IPv4 addresses should written as-is; IPv6
addresses should be wrapped in square brackets.) (Default: none)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerTransportOptions"></a> <strong>ServerTransportOptions</strong> <em>transport</em> <em>k=v</em> <em>k=v</em> …
</dt>
<dd>
<p>
When this option is set, Tor will pass the <em>k=v</em> parameters to
any pluggable transport proxy that tries to launch <em>transport</em>.<br />
(Example: ServerTransportOptions obfs45 shared-secret=bridgepasswd cache=/var/lib/tor/cache) (Default: none)
</p>
</dd>
<dt class="hdlist1">
<a id="ServerTransportPlugin"></a> <strong>ServerTransportPlugin</strong> <em>transport</em> exec <em>path-to-binary</em> [options]
</dt>
<dd>
<p>
The Tor relay launches the pluggable transport proxy in <em>path-to-binary</em>
using <em>options</em> as its command-line options, and expects to receive
proxied client traffic from it. (Default: none)
</p>
</dd>
<dt class="hdlist1">
<a id="ShutdownWaitLength"></a> <strong>ShutdownWaitLength</strong> <em>NUM</em>
</dt>
<dd>
<p>
When we get a SIGINT and we’re a server, we begin shutting down:
we close listeners and start refusing new circuits. After <strong>NUM</strong>
seconds, we exit. If we get a second SIGINT, we exit immediately.
(Default: 30 seconds)
</p>
</dd>
<dt class="hdlist1">
<a id="SigningKeyLifetime"></a> <strong>SigningKeyLifetime</strong> <em>N</em> <strong>days</strong>|<strong>weeks</strong>|<strong>months</strong>
</dt>
<dd>
<p>
For how long should each Ed25519 signing key be valid? Tor uses a
permanent master identity key that can be kept offline, and periodically
generates new "signing" keys that it uses online. This option
configures their lifetime.
(Default: 30 days)
</p>
</dd>
<dt class="hdlist1">
<a id="SSLKeyLifetime"></a> <strong>SSLKeyLifetime</strong> <em>N</em> <strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
When creating a link certificate for our outermost SSL handshake,
set its lifetime to this amount of time. If set to 0, Tor will choose
some reasonable random defaults. (Default: 0)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_statistics_options">STATISTICS OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>Relays publish most statistics in a document called the
extra-info document. The following options affect the different
types of statistics that Tor relays collect and publish:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="BridgeRecordUsageByCountry"></a> <strong>BridgeRecordUsageByCountry</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is enabled and BridgeRelay is also enabled, and we have
GeoIP data, Tor keeps a per-country count of how many client
addresses have contacted it so that it can help the bridge authority guess
which countries have blocked access to it. If ExtraInfoStatistics is
enabled, it will be published as part of the extra-info document.
(Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="CellStatistics"></a> <strong>CellStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Relays only.
When this option is enabled, Tor collects statistics about cell
processing (i.e. mean time a cell is spending in a queue, mean
number of cells in a queue and mean number of processed cells per
circuit) and writes them into disk every 24 hours. Onion router
operators may use the statistics for performance monitoring.
If ExtraInfoStatistics is enabled, it will published as part of
the extra-info document. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ConnDirectionStatistics"></a> <strong>ConnDirectionStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Relays only.
When this option is enabled, Tor writes statistics on the amounts of
traffic it passes between itself and other relays to disk every 24
hours. Enables relay operators to monitor how much their relay is
being used as middle node in the circuit. If ExtraInfoStatistics is
enabled, it will be published as part of the extra-info document.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DirReqStatistics"></a> <strong>DirReqStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Relays and bridges only.
When this option is enabled, a Tor directory writes statistics on the
number and response time of network status requests to disk every 24
hours. Enables relay and bridge operators to monitor how much their
server is being used by clients to learn about Tor network.
If ExtraInfoStatistics is enabled, it will published as part of
the extra-info document. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="EntryStatistics"></a> <strong>EntryStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Relays only.
When this option is enabled, Tor writes statistics on the number of
directly connecting clients to disk every 24 hours. Enables relay
operators to monitor how much inbound traffic that originates from
Tor clients passes through their server to go further down the
Tor network. If ExtraInfoStatistics is enabled, it will be published
as part of the extra-info document. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ExitPortStatistics"></a> <strong>ExitPortStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Exit relays only.
When this option is enabled, Tor writes statistics on the number of
relayed bytes and opened stream per exit port to disk every 24 hours.
Enables exit relay operators to measure and monitor amounts of traffic
that leaves Tor network through their exit node. If ExtraInfoStatistics
is enabled, it will be published as part of the extra-info document.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="ExtraInfoStatistics"></a> <strong>ExtraInfoStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is enabled, Tor includes previously gathered statistics in
its extra-info documents that it uploads to the directory authorities.
Disabling this option also removes bandwidth usage statistics, and
GeoIPFile and GeoIPv6File hashes from the extra-info file. Bridge
ServerTransportPlugin lines are always included in the extra-info file,
because they are required by BridgeDB.
(Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceStatistics"></a> <strong>HiddenServiceStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Relays and bridges only.
When this option is enabled, a Tor relay writes obfuscated
statistics on its role as hidden-service directory, introduction
point, or rendezvous point to disk every 24 hours. If ExtraInfoStatistics
is enabled, it will be published as part of the extra-info document.
(Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="OverloadStatistics"></a> <strong>OverloadStatistics</strong> <strong>0<strong>|</strong>1</strong>*
</dt>
<dd>
<p>
Relays and bridges only.
When this option is enabled, a Tor relay will write an overload general
line in the server descriptor if the relay is considered overloaded.
(Default: 1)
<br />
A relay is considered overloaded if at least one of these conditions is
met:
</p>
<div class="ulist"><ul>
<li>
<p>
A certain ratio of ntor onionskins are dropped.
</p>
</li>
<li>
<p>
The OOM was invoked.
</p>
</li>
<li>
<p>
TCP Port exhaustion.
</p>
<div class="literalblock">
<div class="content">
<pre><code> +
If ExtraInfoStatistics is enabled, it can also put two more specific
overload lines in the extra-info document if at least one of these
conditions is met:
- Connection rate limits have been reached (read and write side).
- File descriptors are exhausted.</code></pre>
</div></div>
</li>
</ul></div>
</dd>
<dt class="hdlist1">
<a id="PaddingStatistics"></a> <strong>PaddingStatistics</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Relays and bridges only.
When this option is enabled, Tor collects statistics for padding cells
sent and received by this relay, in addition to total cell counts.
These statistics are rounded, and omitted if traffic is low. This
information is important for load balancing decisions related to padding.
If ExtraInfoStatistics is enabled, it will be published
as a part of the extra-info document. (Default: 1)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_directory_server_options">DIRECTORY SERVER OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options are useful only for directory servers. (Relays with
enough bandwidth automatically become directory servers; see <a href="#DirCache">DirCache</a> for
details.)</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="DirCache"></a> <strong>DirCache</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set, Tor caches all current directory documents except
extra info documents, and accepts client requests for them. If
<strong>DownloadExtraInfo</strong> is set, cached extra info documents are also cached.
Setting <strong>DirPort</strong> is not required for <strong>DirCache</strong>, because clients
connect via the ORPort by default. Setting either DirPort or BridgeRelay
and setting DirCache to 0 is not supported. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="DirPolicy"></a> <strong>DirPolicy</strong> <em>policy</em>,<em>policy</em>,<em>…</em>
</dt>
<dd>
<p>
Set an entrance policy for this server, to limit who can connect to the
directory ports. The policies have the same form as exit policies above,
except that port specifiers are ignored. Any address not matched by
some entry in the policy is accepted.
</p>
</dd>
<dt class="hdlist1">
<a id="DirPort"></a> <strong>DirPort</strong> [<em>address</em><strong>:</strong>]<em>PORT</em>|<strong>auto</strong> [<em>flags</em>]
</dt>
<dd>
<p>
If this option is nonzero, advertise the directory service on this port.
Set it to "auto" to have Tor pick a port for you. This option can occur
more than once, but only one advertised DirPort is supported: all
but one DirPort must have the <strong>NoAdvertise</strong> flag set. (Default: 0)<br />
<br />
The same flags are supported here as are supported by ORPort. This port can
only be IPv4.
<br />
As of Tor 0.4.6.1-alpha, non-authoritative relays (see
AuthoritativeDirectory) will not publish the DirPort but will still listen
on it. Clients don’t use the DirPorts on relays, so it is safe for you
to remove the DirPort from your torrc configuration.
</p>
</dd>
<dt class="hdlist1">
<a id="DirPortFrontPage"></a> <strong>DirPortFrontPage</strong> <em>FILENAME</em>
</dt>
<dd>
<p>
When this option is set, it takes an HTML file and publishes it as "/" on
the DirPort. Now relay operators can provide a disclaimer without needing
to set up a separate webserver. There’s a sample disclaimer in
contrib/operator-tools/tor-exit-notice.html.
</p>
</dd>
<dt class="hdlist1">
<a id="MaxConsensusAgeForDiffs"></a> <strong>MaxConsensusAgeForDiffs</strong> <em>N</em> <strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
When this option is nonzero, Tor caches will not try to generate
consensus diffs for any consensus older than this amount of time.
If this option is set to zero, Tor will pick a reasonable default from
the current networkstatus document. You should not set this
option unless your cache is severely low on disk space or CPU.
If you need to set it, keeping it above 3 or 4 hours will help clients
much more than setting it to zero.
(Default: 0)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_denial_of_service_mitigation_options">DENIAL OF SERVICE MITIGATION OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tor has a series of built-in denial of service mitigation options that can be
individually enabled/disabled and fine-tuned, but by default Tor directory
authorities will define reasonable values for the network and no explicit
configuration is required to make use of these protections.</p></div>
<div class="paragraph"><p>The following is a series of configuration options for relays and then options
for onion services and how they work.</p></div>
<div class="paragraph"><p>The mitigations take place at relays, and are as follows:</p></div>
<div class="olist arabic"><ol class="arabic">
<li>
<p>
If a single client address makes too many concurrent connections (this is
configurable via DoSConnectionMaxConcurrentCount), hang up on further
connections.
<br />
</p>
</li>
<li>
<p>
If a single client IP address (v4 or v6) makes circuits too quickly
(default values are more than 3 per second, with an allowed burst of 90,
see <a href="#DoSCircuitCreationRate">DoSCircuitCreationRate</a> and
<a href="#DoSCircuitCreationBurst">DoSCircuitCreationBurst</a>) while also having
too many connections open (default is 3, see
<a href="#DoSCircuitCreationMinConnections">DoSCircuitCreationMinConnections</a>),
tor will refuse any new circuit (CREATE
cells) for the next while (random value between 1 and 2 hours).
<br />
</p>
</li>
<li>
<p>
If a client asks to establish a rendezvous point to you directly (ex:
Tor2Web client), ignore the request.
</p>
</li>
</ol></div>
<div class="paragraph"><p>These defenses can be manually controlled by torrc options, but relays will
also take guidance from consensus parameters using these same names, so there’s
no need to configure anything manually. In doubt, do not change those values.</p></div>
<div class="paragraph"><p>The values set by the consensus, if any, can be found here:
<a href="https://consensus-health.torproject.org/#consensusparams">https://consensus-health.torproject.org/#consensusparams</a></p></div>
<div class="paragraph"><p>If any of the DoS mitigations are enabled, a heartbeat message will appear in
your log at NOTICE level which looks like:</p></div>
<div class="literalblock">
<div class="content">
<pre><code>DoS mitigation since startup: 429042 circuits rejected, 17 marked addresses.
2238 connections closed. 8052 single hop clients refused.</code></pre>
</div></div>
<div class="paragraph"><p>The following options are useful only for a public relay. They control the
Denial of Service mitigation subsystem described above.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="DoSCircuitCreationEnabled"></a> <strong>DoSCircuitCreationEnabled</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Enable circuit creation DoS mitigation. If set to 1 (enabled), tor will
cache client IPs along with statistics in order to detect circuit DoS
attacks. If an address is positively identified, tor will activate
defenses against the address. See <a href="#DoSCircuitCreationDefenseType">DoSCircuitCreationDefenseType</a>
option for more details. This is a client to relay detection only. "auto" means
use the consensus parameter. If not defined in the consensus, the value is 0.
(Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSCircuitCreationBurst"></a> <strong>DoSCircuitCreationBurst</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed circuit creation burst per client IP address. If the circuit
rate and the burst are reached, a client is marked as executing a circuit
creation DoS. "0" means use the consensus parameter. If not defined in the
consensus, the value is 90.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSCircuitCreationDefenseTimePeriod"></a> <strong>DoSCircuitCreationDefenseTimePeriod</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
The base time period in seconds that the DoS defense is activated for. The
actual value is selected randomly for each activation from N+1 to 3/2 * N.
"0" means use the consensus parameter. If not defined in the consensus,
the value is 3600 seconds (1 hour).
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSCircuitCreationDefenseType"></a> <strong>DoSCircuitCreationDefenseType</strong> <em>NUM</em>
</dt>
<dd>
<p>
This is the type of defense applied to a detected client address. The
possible values are:
<br />
1: No defense.
<br />
2: Refuse circuit creation for the DoSCircuitCreationDefenseTimePeriod period of time.
<br />
"0" means use the consensus parameter. If not defined in the consensus, the value is 2.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSCircuitCreationMinConnections"></a> <strong>DoSCircuitCreationMinConnections</strong> <em>NUM</em>
</dt>
<dd>
<p>
Minimum threshold of concurrent connections before a client address can be
flagged as executing a circuit creation DoS. In other words, once a client
address reaches the circuit rate and has a minimum of NUM concurrent
connections, a detection is positive. "0" means use the consensus
parameter. If not defined in the consensus, the value is 3.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSCircuitCreationRate"></a> <strong>DoSCircuitCreationRate</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed circuit creation rate per second applied per client IP
address. If this option is 0, it obeys a consensus parameter. If not
defined in the consensus, the value is 3.
(Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="DoSConnectionEnabled"></a> <strong>DoSConnectionEnabled</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Enable the connection DoS mitigation. If set to 1 (enabled), for client
address only, this allows tor to mitigate against large number of
concurrent connections made by a single IP address. "auto" means use the
consensus parameter. If not defined in the consensus, the value is 0.
(Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSConnectionDefenseType"></a> <strong>DoSConnectionDefenseType</strong> <em>NUM</em>
</dt>
<dd>
<p>
This is the type of defense applied to a detected client address for the
connection mitigation. The possible values are:
<br />
1: No defense.
<br />
2: Immediately close new connections.
<br />
"0" means use the consensus parameter. If not defined in the consensus, the value is 2.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSConnectionMaxConcurrentCount"></a> <strong>DoSConnectionMaxConcurrentCount</strong> <em>NUM</em>
</dt>
<dd>
<p>
The maximum threshold of concurrent connection from a client IP address.
Above this limit, a defense selected by DoSConnectionDefenseType is
applied. "0" means use the consensus parameter. If not defined in the
consensus, the value is 100.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSConnectionConnectRate"></a> <strong>DoSConnectionConnectRate</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed rate of client connection from a single address per second.
Coupled with the burst (see below), if the limit is reached, the address
is marked and a defense is applied (DoSConnectionDefenseType) for a period
of time defined by DoSConnectionConnectDefenseTimePeriod. If not defined
or set to 0, it is controlled by a consensus parameter.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSConnectionConnectBurst"></a> <strong>DoSConnectionConnectBurst</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed burst of client connection from a single address per second.
See the DoSConnectionConnectRate for more details on this detection. If
not defined or set to 0, it is controlled by a consensus parameter.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSConnectionConnectDefenseTimePeriod"></a> <strong>DoSConnectionConnectDefenseTimePeriod</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
The base time period in seconds that the client connection defense is
activated for. The actual value is selected randomly for each activation
from N+1 to 3/2 * N. If not defined or set to 0, it is controlled by a
consensus parameter.
(Default: 24 hours)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSRefuseSingleHopClientRendezvous"></a> <strong>DoSRefuseSingleHopClientRendezvous</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Refuse establishment of rendezvous points for single hop clients. In other
words, if a client directly connects to the relay and sends an
ESTABLISH_RENDEZVOUS cell, it is silently dropped. "auto" means use the
consensus parameter. If not defined in the consensus, the value is 0.
(Default: auto)
</p>
</dd>
</dl></div>
<div class="paragraph"><p>The following options are useful only for a exit relay.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="DoSStreamCreationEnabled"></a> <strong>DoSStreamCreationEnabled</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
Enable the stream DoS mitigation. If set to 1 (enabled), tor will apply
rate limit on the creation of new streams and dns requests per circuit.
"auto" means use the consensus parameter. If not defined in the consensus,
the value is 0. (Default: auto)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSStreamCreationDefenseType"></a> <strong>DoSStreamCreationDefenseType</strong> <em>NUM</em>
</dt>
<dd>
<p>
This is the type of defense applied to a detected circuit or stream for the
stream mitigation. The possible values are:
<br />
1: No defense.
<br />
2: Reject the stream or resolve request.
<br />
3: Close the circuit creating too many streams.
<br />
"0" means use the consensus parameter. If not defined in the consensus, the value is 2.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSStreamCreationRate"></a> <strong>DoSStreamCreationRate</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed rate of stream creation from a single circuit per second. Coupled
with the burst (see below), if the limit is reached, actions can be taken
against the stream or circuit (DoSStreamCreationDefenseType). If not defined or
set to 0, it is controlled by a consensus parameter. If not defined in the
consensus, the value is 100. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="DoSStreamCreationBurst"></a> <strong>DoSStreamCreationBurst</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed burst of stream creation from a circuit per second.
See the DoSStreamCreationRate for more details on this detection. If
not defined or set to 0, it is controlled by a consensus parameter. If not
defined in the consensus, the value is 300. (Default: 0)
</p>
</dd>
</dl></div>
<div class="paragraph"><p>For onion services, mitigations are a work in progress and multiple options
are currently available.</p></div>
<div class="paragraph"><p>The introduction point defense is a rate limit on the number of introduction
requests that will be forwarded to a service by each of its honest
introduction point routers. This can prevent some types of overwhelming floods
from reaching the service, but it will also prevent legitimate clients from
establishing new connections.</p></div>
<div class="paragraph"><p>The following options are per onion service:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="HiddenServiceEnableIntroDoSDefense"></a> <strong>HiddenServiceEnableIntroDoSDefense</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Enable DoS defense at the intropoint level. When this is enabled, the
rate and burst parameter (see below) will be sent to the intro point which
will then use them to apply rate limiting for introduction request to this
service.
<br />
The introduction point honors the consensus parameters except if this is
specifically set by the service operator using this option. The service
never looks at the consensus parameters in order to enable or disable this
defense. (Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="HiddenServiceEnableIntroDoSBurstPerSec"></a> <strong>HiddenServiceEnableIntroDoSBurstPerSec</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed client introduction burst per second at the introduction
point. If this option is 0, it is considered infinite and thus if
<strong>HiddenServiceEnableIntroDoSDefense</strong> is set, it then effectively
disables the defenses. (Default: 200)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceEnableIntroDoSRatePerSec"></a> <strong>HiddenServiceEnableIntroDoSRatePerSec</strong> <em>NUM</em>
</dt>
<dd>
<p>
The allowed client introduction rate per second at the introduction
point. If this option is 0, it is considered infinite and thus if
<strong>HiddenServiceEnableIntroDoSDefense</strong> is set, it then effectively
disables the defenses. (Default: 25)
</p>
</dd>
</dl></div>
<div class="paragraph"><p>The rate is the maximum number of clients a service will ask its introduction
points to allow every seconds. And the burst is a parameter that allows that
many within one second.</p></div>
<div class="paragraph"><p>For example, the default values of 25 and 200 respectively means that for every
introduction points a service has (default 3 but can be configured with
<strong>HiddenServiceNumIntroductionPoints</strong>), 25 clients per seconds will be allowed
to reach the service and 200 at most within 1 second as a burst. This means
that if 200 clients are seen within 1 second, it will take 8 seconds (200/25)
for another client to be able to be allowed to introduce due to the rate of 25
per second.</p></div>
<div class="paragraph"><p>This might be too much for your use case or not, fine tuning these values is
hard and are likely different for each service operator.</p></div>
<div class="paragraph"><p>Why is this not helping reachability of the service? Because the defenses are
at the introduction point, an attacker can easily flood all introduction point
rendering the service unavailable due to no client being able to pass through.
But, the service itself is not overwhelmed with connections allowing it to
function properly for the few clients that were able to go through or other any
services running on the same tor instance.</p></div>
<div class="paragraph"><p>The bottom line is that this protects the network by preventing an onion
service to flood the network with new rendezvous circuits that is reducing load
on the network.</p></div>
<div class="paragraph"><p>A secondary mitigation is available, based on prioritized dispatch of rendezvous
circuits for new connections. The queue is ordered based on effort a client
chooses to spend at computing a proof-of-work function.</p></div>
<div class="paragraph"><p>The following options are per onion service:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="HiddenServicePoWDefensesEnabled"></a> <strong>HiddenServicePoWDefensesEnabled</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Enable proof-of-work based service DoS mitigation. If set to 1 (enabled),
tor will include parameters for an optional client puzzle in the encrypted
portion of this hidden service’s descriptor. Incoming rendezvous requests
will be prioritized based on the amount of effort a client chooses to make
when computing a solution to the puzzle. The service will periodically update
a suggested amount of effort, based on attack load, and disable the puzzle
entirely when the service is not overloaded.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServicePoWQueueRate"></a> <strong>HiddenServicePoWQueueRate</strong> <em>NUM</em>
</dt>
<dd>
<p>
The sustained rate of rendezvous requests to dispatch per second from
the priority queue. Has no effect when proof-of-work is disabled.
If this is set to 0 there’s no explicit limit and we will process
requests as quickly as possible.
(Default: 250)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServicePoWQueueBurst"></a> <strong>HiddenServicePoWQueueBurst</strong> <em>NUM</em>
</dt>
<dd>
<p>
The maximum burst size for rendezvous requests handled from the
priority queue at once. (Default: 2500)
</p>
</dd>
</dl></div>
<div class="paragraph"><p>These options are applicable to both onion services and their clients:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="CompiledProofOfWorkHash"></a> <strong>CompiledProofOfWorkHash</strong> <strong>0</strong>|<strong>1</strong>|<strong>auto</strong>
</dt>
<dd>
<p>
When proof-of-work DoS mitigation is active, both the services themselves
and the clients which connect will use a dynamically generated hash
function as part of the puzzle computation.
<br />
If this option is set to 1, puzzles will only be solved and verified using
the compiled implementation (about 20x faster) and we choose to fail rather
than using a slower fallback. If it’s 0, the compiler will never be used.
By default, the compiler is always tried if possible but the interpreter is
available as a fallback. (Default: auto)
</p>
</dd>
</dl></div>
<div class="paragraph"><p>See also <a href="#opt-list-modules"><code>--list-modules</code></a>, these proof of work options
have no effect unless the "<code>pow</code>" module is enabled at compile time.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_directory_authority_server_options">DIRECTORY AUTHORITY SERVER OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options enable operation as a directory authority, and
control how Tor behaves as a directory authority. You should not need
to adjust any of them if you’re running a regular relay or exit server
on the public Tor network.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="AuthoritativeDirectory"></a> <strong>AuthoritativeDirectory</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set to 1, Tor operates as an authoritative directory
server. Instead of caching the directory, it generates its own list of
good servers, signs it, and sends that to the clients. Unless the clients
already have you listed as a trusted directory, you probably do not want
to set this option.
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="BridgeAuthoritativeDir"></a> <strong>BridgeAuthoritativeDir</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set in addition to <strong>AuthoritativeDirectory</strong>, Tor
accepts and serves server descriptors, but it caches and serves the main
networkstatus documents rather than generating its own. (Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="V3AuthoritativeDirectory"></a> <strong>V3AuthoritativeDirectory</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set in addition to <strong>AuthoritativeDirectory</strong>, Tor
generates version 3 network statuses and serves descriptors, etc as
described in dir-spec.txt file of <a href="https://spec.torproject.org/">torspec</a>
(for Tor clients and servers running at least 0.2.0.x).
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirBadExit"></a> <strong>AuthDirBadExit</strong> <em>AddressPattern…</em>
</dt>
<dd>
<p>
Authoritative directories only. A set of address patterns for servers that
will be listed as bad exits in any network status document this authority
publishes, if <strong>AuthDirListBadExits</strong> is set.<br />
<br />
(The address pattern syntax here and in the options below
is the same as for exit policies, except that you don’t need to say
"accept" or "reject", and ports are not needed.)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirMiddleOnly"></a> <strong>AuthDirMiddleOnly</strong> <em>AddressPattern…</em>
</dt>
<dd>
<p>
Authoritative directories only. A set of address patterns for servers that
will be listed as middle-only in any network status document this authority
publishes, if <strong>AuthDirListMiddleOnly</strong> is set.<br />
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirFastGuarantee"></a> <strong>AuthDirFastGuarantee</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
Authoritative directories only. If non-zero, always vote the
Fast flag for any relay advertising this amount of capacity or
more. (Default: 100 KBytes)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirGuardBWGuarantee"></a> <strong>AuthDirGuardBWGuarantee</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
Authoritative directories only. If non-zero, this advertised capacity
or more is always sufficient to satisfy the bandwidth requirement
for the Guard flag. (Default: 2 MBytes)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirHasIPv6Connectivity"></a> <strong>AuthDirHasIPv6Connectivity</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Authoritative directories only. When set to 0, OR ports with an
IPv6 address are not included in the authority’s votes. When set to 1,
IPv6 OR ports are tested for reachability like IPv4 OR ports. If the
reachability test succeeds, the authority votes for the IPv6 ORPort, and
votes Running for the relay. If the reachability test fails, the authority
does not vote for the IPv6 ORPort, and does not vote Running (Default: 0) <br />
</p>
<div class="literalblock">
<div class="content">
<pre><code>The content of the consensus depends on the number of voting authorities
that set AuthDirHasIPv6Connectivity:</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>If no authorities set AuthDirHasIPv6Connectivity 1, there will be no
IPv6 ORPorts in the consensus.</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>If a minority of authorities set AuthDirHasIPv6Connectivity 1,
unreachable IPv6 ORPorts will be removed from the consensus. But the
majority of IPv4-only authorities will still vote the relay as Running.
Reachable IPv6 ORPort lines will be included in the consensus</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>If a majority of voting authorities set AuthDirHasIPv6Connectivity 1,
relays with unreachable IPv6 ORPorts will not be listed as Running.
Reachable IPv6 ORPort lines will be included in the consensus
(To ensure that any valid majority will vote relays with unreachable
IPv6 ORPorts not Running, 75% of authorities must set
AuthDirHasIPv6Connectivity 1.)</code></pre>
</div></div>
</dd>
<dt class="hdlist1">
<a id="AuthDirInvalid"></a> <strong>AuthDirInvalid</strong> <em>AddressPattern…</em>
</dt>
<dd>
<p>
Authoritative directories only. A set of address patterns for servers that
will never be listed as "valid" in any network status document that this
authority publishes.
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirListBadExits"></a> <strong>AuthDirListBadExits</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Authoritative directories only. If set to 1, this directory has some
opinion about which nodes are unsuitable as exit nodes. (Do not set this to
1 unless you plan to list non-functioning exits as bad; otherwise, you are
effectively voting in favor of every declared exit as an exit.)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirListMiddleOnly"></a> <strong>AuthDirListMiddleOnly</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Authoritative directories only. If set to 1, this directory has some
opinion about which nodes should only be used in the middle position.
(Do not set this to 1 unless you plan to list questionable relays
as "middle only"; otherwise, you are effectively voting <em>against</em>
middle-only status for every relay.)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirMaxServersPerAddr"></a> <strong>AuthDirMaxServersPerAddr</strong> <em>NUM</em>
</dt>
<dd>
<p>
Authoritative directories only. The maximum number of servers that we will
list as acceptable on a single IP address. Set this to "0" for "no limit".
(Default: 2)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirPinKeys"></a> <strong>AuthDirPinKeys</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Authoritative directories only. If non-zero, do not allow any relay to
publish a descriptor if any other relay has reserved its <Ed25519,RSA>
identity keypair. In all cases, Tor records every keypair it accepts
in a journal if it is new, or if it differs from the most recently
accepted pinning for one of the keys it contains. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirReject"></a> <strong>AuthDirReject</strong> <em>AddressPattern</em>…
</dt>
<dd>
<p>
Authoritative directories only. A set of address patterns for servers that
will never be listed at all in any network status document that this
authority publishes, or accepted as an OR address in any descriptor
submitted for publication by this authority.
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirRejectRequestsUnderLoad"></a> <strong>AuthDirRejectRequestsUnderLoad</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set, the directory authority will start rejecting directory requests
from non relay connections by sending a 503 error code if it is under
bandwidth pressure (reaching the configured limit if any). Relays will
always be answered even if this is on. (Default: 1)
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="AuthDirBadExitCCs"></a> <strong>AuthDirBadExitCCs</strong> <em>CC</em>,…<br /></p></div>
<div class="paragraph"><p><a id="AuthDirInvalidCCs"></a> <strong>AuthDirInvalidCCs</strong> <em>CC</em>,…<br /></p></div>
<div class="paragraph"><p><a id="AuthDirMiddleOnlytCCs"></a> <strong>AuthDirMiddleOnlyCCs</strong> <em>CC</em>,…<br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="AuthDirRejectCCs"></a> <strong>AuthDirRejectCCs</strong> <em>CC</em>,…
</dt>
<dd>
<p>
Authoritative directories only. These options contain a comma-separated
list of country codes such that any server in one of those country codes
will be marked as a bad exit/invalid for use, or rejected
entirely.
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirSharedRandomness"></a> <strong>AuthDirSharedRandomness</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Authoritative directories only. Switch for the shared random protocol.
If zero, the authority won’t participate in the protocol. If non-zero
(default), the flag "shared-rand-participate" is added to the authority
vote indicating participation in the protocol. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirTestEd25519LinkKeys"></a> <strong>AuthDirTestEd25519LinkKeys</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Authoritative directories only. If this option is set to 0, then we treat
relays as "Running" if their RSA key is correct when we probe them,
regardless of their Ed25519 key. We should only ever set this option to 0
if there is some major bug in Ed25519 link authentication that causes us
to label all the relays as not Running. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirTestReachability"></a> <strong>AuthDirTestReachability</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Authoritative directories only. If set to 1, then we periodically
check every relay we know about to see whether it is running.
If set to 0, we vote Running for every relay, and don’t perform
these tests. (Default: 1)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirVoteGuard"></a> <strong>AuthDirVoteGuard</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints or country codes or address patterns of
nodes to vote Guard for regardless of their uptime and bandwidth. See
<a href="#ExcludeNodes">ExcludeNodes</a> for more information on how to specify nodes.
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirVoteGuardBwThresholdFraction"></a> <strong>AuthDirVoteGuardBwThresholdFraction</strong> <em>FRACTION</em>
</dt>
<dd>
<p>
The Guard flag bandwidth performance threshold fraction that is the
fraction representing who gets the Guard flag out of all measured
bandwidth. (Default: 0.75)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirVoteGuardGuaranteeTimeKnown"></a> <strong>AuthDirVoteGuardGuaranteeTimeKnown</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
A relay with at least this much weighted time known can be considered
familiar enough to be a guard. (Default: 8 days)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirVoteGuardGuaranteeWFU"></a> <strong>AuthDirVoteGuardGuaranteeWFU</strong> <em>FRACTION</em>
</dt>
<dd>
<p>
A level of weighted fractional uptime (WFU) is that is sufficient to be a
Guard. (Default: 0.98)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirVoteStableGuaranteeMinUptime"></a> <strong>AuthDirVoteStableGuaranteeMinUptime</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
If a relay’s uptime is at least this value, then it is always considered
stable, regardless of the rest of the network. (Default: 30 days)
</p>
</dd>
<dt class="hdlist1">
<a id="AuthDirVoteStableGuaranteeMTBF"></a> <strong>AuthDirVoteStableGuaranteeMTBF</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
If a relay’s mean time between failures (MTBF) is least this value, then
it will always be considered stable. (Default: 5 days)
</p>
</dd>
<dt class="hdlist1">
<a id="BridgePassword"></a> <strong>BridgePassword</strong> <em>Password</em>
</dt>
<dd>
<p>
If set, contains an HTTP authenticator that tells a bridge authority to
serve all requested bridge information. Used by the (only partially
implemented) "bridge community" design, where a community of bridge
relay operators all use an alternate bridge directory authority,
and their target user audience can periodically fetch the list of
available community bridges to stay up-to-date. (Default: not set)
</p>
</dd>
<dt class="hdlist1">
<a id="ConsensusParams"></a> <strong>ConsensusParams</strong> <em>STRING</em>
</dt>
<dd>
<p>
STRING is a space-separated list of key=value pairs that Tor will include
in the "params" line of its networkstatus vote. This directive can be
specified multiple times so you don’t have to put it all on one line.
</p>
</dd>
<dt class="hdlist1">
<a id="DirAllowPrivateAddresses"></a> <strong>DirAllowPrivateAddresses</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor will accept server descriptors with arbitrary "Address"
elements. Otherwise, if the address is not an IP address or is a private IP
address, it will reject the server descriptor. Additionally, Tor
will allow exit policies for private networks to fulfill Exit flag
requirements. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="GuardfractionFile"></a> <strong>GuardfractionFile</strong> <em>FILENAME</em>
</dt>
<dd>
<p>
V3 authoritative directories only. Configures the location of the
guardfraction file which contains information about how long relays
have been guards. (Default: unset)
</p>
</dd>
<dt class="hdlist1">
<a id="MinMeasuredBWsForAuthToIgnoreAdvertised"></a> <strong>MinMeasuredBWsForAuthToIgnoreAdvertised</strong> <em>N</em>
</dt>
<dd>
<p>
A total value, in abstract bandwidth units, describing how much
measured total bandwidth an authority should have observed on the network
before it will treat advertised bandwidths as wholly
unreliable. (Default: 500)
</p>
</dd>
<dt class="hdlist1">
<a id="MinUptimeHidServDirectoryV2"></a> <strong>MinUptimeHidServDirectoryV2</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>
</dt>
<dd>
<p>
Minimum uptime of a relay to be accepted as a hidden service directory
by directory authorities. (Default: 96 hours)
</p>
</dd>
<dt class="hdlist1">
<a id="RecommendedClientVersions"></a> <strong>RecommendedClientVersions</strong> <em>STRING</em>
</dt>
<dd>
<p>
STRING is a comma-separated list of Tor versions currently believed to be
safe for clients to use. This information is included in version 2
directories. If this is not set then the value of <strong>RecommendedVersions</strong>
is used. When this is set then <strong>VersioningAuthoritativeDirectory</strong> should
be set too.
</p>
</dd>
<dt class="hdlist1">
<a id="RecommendedServerVersions"></a> <strong>RecommendedServerVersions</strong> <em>STRING</em>
</dt>
<dd>
<p>
STRING is a comma-separated list of Tor versions currently believed to be
safe for servers to use. This information is included in version 2
directories. If this is not set then the value of <strong>RecommendedVersions</strong>
is used. When this is set then <strong>VersioningAuthoritativeDirectory</strong> should
be set too.
</p>
</dd>
<dt class="hdlist1">
<a id="RecommendedVersions"></a> <strong>RecommendedVersions</strong> <em>STRING</em>
</dt>
<dd>
<p>
STRING is a comma-separated list of Tor versions currently believed to be
safe. The list is included in each directory, and nodes which pull down the
directory learn whether they need to upgrade. This option can appear
multiple times: the values from multiple lines are spliced together. When
this is set then <strong>VersioningAuthoritativeDirectory</strong> should be set too.
</p>
</dd>
<dt class="hdlist1">
<a id="MinimalAcceptedServerVersion"></a> <strong>MinimalAcceptedServerVersion</strong> <em>STRING</em>
</dt>
<dd>
<p>
STRING is the oldest Tor version accepted by the directory authority for
relays and bridge. Any older version will be rejected.
(Default: 0.4.7.0-alpha-dev)
</p>
</dd>
<dt class="hdlist1">
<a id="V3AuthDistDelay"></a> <strong>V3AuthDistDelay</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
V3 authoritative directories only. Configures the server’s preferred delay
between publishing its consensus and signature and assuming it has all the
signatures from all the other authorities. Note that the actual time used
is not the server’s preferred time, but the consensus of all preferences.
(Default: 5 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="V3AuthNIntervalsValid"></a> <strong>V3AuthNIntervalsValid</strong> <em>NUM</em>
</dt>
<dd>
<p>
V3 authoritative directories only. Configures the number of VotingIntervals
for which each consensus should be valid for. Choosing high numbers
increases network partitioning risks; choosing low numbers increases
directory traffic. Note that the actual number of intervals used is not the
server’s preferred number, but the consensus of all preferences. Must be at
least 2. (Default: 3)
</p>
</dd>
<dt class="hdlist1">
<a id="V3AuthUseLegacyKey"></a> <strong>V3AuthUseLegacyKey</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set, the directory authority will sign consensuses not only with its
own signing key, but also with a "legacy" key and certificate with a
different identity. This feature is used to migrate directory authority
keys in the event of a compromise. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="V3AuthVoteDelay"></a> <strong>V3AuthVoteDelay</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
V3 authoritative directories only. Configures the server’s preferred delay
between publishing its vote and assuming it has all the votes from all the
other authorities. Note that the actual time used is not the server’s
preferred time, but the consensus of all preferences. (Default: 5
minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="V3AuthVotingInterval"></a> <strong>V3AuthVotingInterval</strong> <em>N</em> <strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
V3 authoritative directories only. Configures the server’s preferred voting
interval. Note that voting will <em>actually</em> happen at an interval chosen
by consensus from all the authorities' preferred intervals. This time
SHOULD divide evenly into a day. (Default: 1 hour)
</p>
</dd>
<dt class="hdlist1">
<a id="V3BandwidthsFile"></a> <strong>V3BandwidthsFile</strong> <em>FILENAME</em>
</dt>
<dd>
<p>
V3 authoritative directories only. Configures the location of the
bandwidth-authority generated file storing information on relays' measured
bandwidth capacities. To avoid inconsistent reads, bandwidth data should
be written to temporary file, then renamed to the configured filename.
(Default: unset)
</p>
</dd>
<dt class="hdlist1">
<a id="VersioningAuthoritativeDirectory"></a> <strong>VersioningAuthoritativeDirectory</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
When this option is set to 1, Tor adds information on which versions of
Tor are still believed safe for use to the published directory. Each
version 1 authority is automatically a versioning authority; version 2
authorities provide this service optionally. See <a href="#RecommendedVersions">RecommendedVersions</a>,
<a href="#RecommendedClientVersions">RecommendedClientVersions</a>, and <a href="#RecommendedServerVersions">RecommendedServerVersions</a>.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_hidden_service_options">HIDDEN SERVICE OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options are used to configure a hidden service. Some options
apply per service and some apply for the whole tor instance.</p></div>
<div class="paragraph"><p>The next section describes the per service options that can only be set
<strong>after</strong> the <strong>HiddenServiceDir</strong> directive</p></div>
<div class="paragraph"><p><strong>PER SERVICE OPTIONS:</strong></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="HiddenServiceAllowUnknownPorts"></a> <strong>HiddenServiceAllowUnknownPorts</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, then connections to unrecognized ports do not cause the
current hidden service to close rendezvous circuits. (Setting this to 0 is
not an authorization mechanism; it is instead meant to be a mild
inconvenience to port-scanners.) (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceDir"></a> <strong>HiddenServiceDir</strong> <em>DIRECTORY</em>
</dt>
<dd>
<p>
Store data files for a hidden service in DIRECTORY. Every hidden service
must have a separate directory. You may use this option multiple times to
specify multiple services. If DIRECTORY does not exist, Tor will create it.
Please note that you cannot add new Onion Service to already running Tor
instance if <strong>Sandbox</strong> is enabled.
(Note: in current versions of Tor, if DIRECTORY is a relative path,
it will be relative to the current
working directory of Tor instance, not to its DataDirectory. Do not
rely on this behavior; it is not guaranteed to remain the same in future
versions.)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceDirGroupReadable"></a> <strong>HiddenServiceDirGroupReadable</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set to 1, allow the filesystem group to read the
hidden service directory and hostname file. If the option is set to 0,
only owner is able to read the hidden service directory. (Default: 0)
Has no effect on Windows.
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceExportCircuitID"></a> <strong>HiddenServiceExportCircuitID</strong> <em>protocol</em>
</dt>
<dd>
<p>
The onion service will use the given protocol to expose the global circuit
identifier of each inbound client circuit. The only
protocol supported right now 'haproxy'. This option is only for v3
services. (Default: none)<br />
<br />
The haproxy option works in the following way: when the feature is
enabled, the Tor process will write a header line when a client is connecting
to the onion service. The header will look like this:<br />
<br />
"PROXY TCP6 fc00:dead:beef:4dad::ffff:ffff ::1 65535 42\r\n"<br />
<br />
We encode the "global circuit identifier" as the last 32-bits of the first
IPv6 address. All other values in the header can safely be ignored. You can
compute the global circuit identifier using the following formula given the
IPv6 address "fc00:dead:beef:4dad::AABB:CCDD":<br />
<br />
global_circuit_id = (0xAA << 24) + (0xBB << 16) + (0xCC << 8) + 0xDD;<br />
<br />
In the case above, where the last 32-bits are 0xffffffff, the global circuit
identifier would be 4294967295. You can use this value together with Tor’s
control port to terminate particular circuits using their global
circuit identifiers. For more information about this see control-spec.txt.<br />
<br />
The HAProxy version 1 protocol is described in detail at
<a href="https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt">https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt</a>
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceOnionBalanceInstance"></a> <strong>HiddenServiceOnionBalanceInstance</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, this onion service becomes an OnionBalance instance and will
accept client connections destined to an OnionBalance frontend. In this
case, Tor expects to find a file named "ob_config" inside the
<strong>HiddenServiceDir</strong> directory with content:
<br />
MasterOnionAddress <frontend_onion_address>
<br />
where <frontend_onion_address> is the onion address of the OnionBalance
frontend (e.g. wrxdvcaqpuzakbfww5sxs6r2uybczwijzfn2ezy2osaj7iox7kl7nhad.onion).
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceMaxStreams"></a> <strong>HiddenServiceMaxStreams</strong> <em>N</em>
</dt>
<dd>
<p>
The maximum number of simultaneous streams (connections) per rendezvous
circuit. The maximum value allowed is 65535. (Setting this to 0 will allow
an unlimited number of simultaneous streams.) (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceMaxStreamsCloseCircuit"></a> <strong>HiddenServiceMaxStreamsCloseCircuit</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, then exceeding <strong>HiddenServiceMaxStreams</strong> will cause the
offending rendezvous circuit to be torn down, as opposed to stream creation
requests that exceed the limit being silently ignored. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceNumIntroductionPoints"></a> <strong>HiddenServiceNumIntroductionPoints</strong> <em>NUM</em>
</dt>
<dd>
<p>
Number of introduction points the hidden service will have. You can’t
have more than 20. (Default: 3)
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServicePort"></a> <strong>HiddenServicePort</strong> <em>VIRTPORT</em> [<em>TARGET</em>]
</dt>
<dd>
<p>
Configure a virtual port VIRTPORT for a hidden service. You may use this
option multiple times; each time applies to the service using the most
recent HiddenServiceDir. By default, this option maps the virtual port to
the same port on 127.0.0.1 over TCP. You may override the target port,
address, or both by specifying a target of addr, port, addr:port, or
<strong>unix:</strong><em>path</em>. (You can specify an IPv6 target as [addr]:port. Unix
paths may be quoted, and may use standard C escapes.)
You may also have multiple lines with the same VIRTPORT: when a user
connects to that VIRTPORT, one of the TARGETs from those lines will be
chosen at random. Note that address-port pairs have to be comma-separated.
</p>
</dd>
<dt class="hdlist1">
<a id="HiddenServiceVersion"></a> <strong>HiddenServiceVersion</strong> <strong>3</strong>
</dt>
<dd>
<p>
A list of rendezvous service descriptor versions to publish for the hidden
service. Currently, only version 3 is supported. (Default: 3)
</p>
</dd>
</dl></div>
<div class="paragraph"><p><strong>PER INSTANCE OPTIONS:</strong></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="HiddenServiceSingleHopMode"></a> <strong>HiddenServiceSingleHopMode</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
<strong>Experimental - Non Anonymous</strong> Hidden Services on a tor instance in
HiddenServiceSingleHopMode make one-hop (direct) circuits between the onion
service server, and the introduction and rendezvous points. (Onion service
descriptors are still posted using 3-hop paths, to avoid onion service
directories blocking the service.)
This option makes every hidden service instance hosted by a tor instance a
Single Onion Service. One-hop circuits make Single Onion servers easily
locatable, but clients remain location-anonymous. However, the fact that a
client is accessing a Single Onion rather than a Hidden Service may be
statistically distinguishable.<br />
<br />
<strong>WARNING:</strong> Once a hidden service directory has been used by a tor
instance in HiddenServiceSingleHopMode, it can <strong>NEVER</strong> be used again for
a hidden service. It is best practice to create a new hidden service
directory, key, and address for each new Single Onion Service and Hidden
Service. It is not possible to run Single Onion Services and Hidden
Services from the same tor instance: they should be run on different
servers with different IP addresses.<br />
<br />
HiddenServiceSingleHopMode requires HiddenServiceNonAnonymousMode to be set
to 1. Since a Single Onion service is non-anonymous, you can not configure
a SOCKSPort on a tor instance that is running in
<strong>HiddenServiceSingleHopMode</strong>. Can not be changed while tor is running.
(Default: 0)
</p>
</dd>
</dl></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="HiddenServiceNonAnonymousMode"></a> <strong>HiddenServiceNonAnonymousMode</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
Makes hidden services non-anonymous on this tor instance. Allows the
non-anonymous HiddenServiceSingleHopMode. Enables direct connections in the
server-side hidden service protocol. If you are using this option,
you need to disable all client-side services on your Tor instance,
including setting SOCKSPort to "0". Can not be changed while tor is
running. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="PublishHidServDescriptors"></a> <strong>PublishHidServDescriptors</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 0, Tor will run any hidden services you configure, but it won’t
advertise them to the rendezvous directory. This option is only useful if
you’re using a Tor controller that handles hidserv publishing for you.
(Default: 1)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="client-authorization">CLIENT AUTHORIZATION</h2>
<div class="sectionbody">
<div class="paragraph"><p>Service side:</p></div>
<div class="literalblock">
<div class="content">
<pre><code>To configure client authorization on the service side, the
"<HiddenServiceDir>/authorized_clients/" directory needs to exist. Each file
in that directory should be suffixed with ".auth" (i.e. "alice.auth"; the
file name is irrelevant) and its content format MUST be:</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code><auth-type>:<key-type>:<base32-encoded-public-key></code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>The supported <auth-type> are: "descriptor". The supported <key-type> are:
"x25519". The <base32-encoded-public-key> is the base32 representation of
the raw key bytes only (32 bytes for x25519).</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Each file MUST contain one line only. Any malformed file will be
ignored. Client authorization will only be enabled for the service if tor
successfully loads at least one authorization file.</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Note that once you've configured client authorization, anyone else with the
address won't be able to access it from this point on. If no authorization is
configured, the service will be accessible to anyone with the onion address.</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code>Revoking a client can be done by removing their ".auth" file, however the
revocation will be in effect only after the tor process gets restarted or if
a SIGHUP takes place.</code></pre>
</div></div>
<div class="paragraph"><p>Client side:</p></div>
<div class="literalblock">
<div class="content">
<pre><code>To access a v3 onion service with client authorization as a client, make sure
you have ClientOnionAuthDir set in your torrc. Then, in the
<ClientOnionAuthDir> directory, create an .auth_private file for the onion
service corresponding to this key (i.e. 'bob_onion.auth_private'). The
contents of the <ClientOnionAuthDir>/<user>.auth_private file should look like:</code></pre>
</div></div>
<div class="literalblock">
<div class="content">
<pre><code><56-char-onion-addr-without-.onion-part>:descriptor:x25519:<x25519 private key in base32></code></pre>
</div></div>
<div class="paragraph"><p>For more information, please see <a href="https://2019.www.torproject.org/docs/tor-onion-service.html.en#ClientAuthorization">https://2019.www.torproject.org/docs/tor-onion-service.html.en#ClientAuthorization</a> .</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_testing_network_options">TESTING NETWORK OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following options are used for running a testing Tor network.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="TestingTorNetwork"></a> <strong>TestingTorNetwork</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If set to 1, Tor adjusts default values of the configuration options below,
so that it is easier to set up a testing Tor network. May only be set if
non-default set of DirAuthorities is set. Cannot be unset while Tor is
running.
(Default: 0)<br />
</p>
<div class="literalblock">
<div class="content">
<pre><code>DirAllowPrivateAddresses 1
EnforceDistinctSubnets 0
AuthDirMaxServersPerAddr 0
ClientBootstrapConsensusAuthorityDownloadInitialDelay 0
ClientBootstrapConsensusFallbackDownloadInitialDelay 0
ClientBootstrapConsensusAuthorityOnlyDownloadInitialDelay 0
ClientDNSRejectInternalAddresses 0
ClientRejectInternalAddresses 0
CountPrivateBandwidth 1
ExitPolicyRejectPrivate 0
ExtendAllowPrivateAddresses 1
V3AuthVotingInterval 5 minutes
V3AuthVoteDelay 20 seconds
V3AuthDistDelay 20 seconds
TestingV3AuthInitialVotingInterval 150 seconds
TestingV3AuthInitialVoteDelay 20 seconds
TestingV3AuthInitialDistDelay 20 seconds
TestingAuthDirTimeToLearnReachability 0 minutes
MinUptimeHidServDirectoryV2 0 minutes
TestingServerDownloadInitialDelay 0
TestingClientDownloadInitialDelay 0
TestingServerConsensusDownloadInitialDelay 0
TestingClientConsensusDownloadInitialDelay 0
TestingBridgeDownloadInitialDelay 10
TestingBridgeBootstrapDownloadInitialDelay 0
TestingClientMaxIntervalWithoutRequest 5 seconds
TestingDirConnectionMaxStall 30 seconds
TestingEnableConnBwEvent 1
TestingEnableCellStatsEvent 1</code></pre>
</div></div>
</dd>
<dt class="hdlist1">
<a id="TestingAuthDirTimeToLearnReachability"></a> <strong>TestingAuthDirTimeToLearnReachability</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
After starting as an authority, do not make claims about whether routers
are Running until this much time has passed. Changing this requires
that <strong>TestingTorNetwork</strong> is set. (Default: 30 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingAuthKeyLifetime"></a> <strong>TestingAuthKeyLifetime</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>|<strong>months</strong>
</dt>
<dd>
<p>
Overrides the default lifetime for a signing Ed25519 TLS Link authentication
key.
(Default: 2 days)
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="TestingAuthKeySlop"></a> <strong>TestingAuthKeySlop</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong><br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="TestingBridgeBootstrapDownloadInitialDelay"></a> <strong>TestingBridgeBootstrapDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for how long clients should wait before
downloading a bridge descriptor for a new bridge.
Changing this requires that <strong>TestingTorNetwork</strong> is set. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingBridgeDownloadInitialDelay"></a> <strong>TestingBridgeDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
How long to wait (in seconds) once clients have successfully
downloaded a bridge descriptor, before trying another download for
that same bridge. Changing this requires that <strong>TestingTorNetwork</strong>
is set. (Default: 10800)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingClientConsensusDownloadInitialDelay"></a> <strong>TestingClientConsensusDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for when clients should download consensuses. Changing this
requires that <strong>TestingTorNetwork</strong> is set. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingClientDownloadInitialDelay"></a> <strong>TestingClientDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for when clients should download things in general. Changing this
requires that <strong>TestingTorNetwork</strong> is set. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingClientMaxIntervalWithoutRequest"></a> <strong>TestingClientMaxIntervalWithoutRequest</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>
</dt>
<dd>
<p>
When directory clients have only a few descriptors to request, they batch
them until they have more, or until this amount of time has passed.
Changing this requires that <strong>TestingTorNetwork</strong> is set. (Default: 10
minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingDirAuthVoteExit"></a> <strong>TestingDirAuthVoteExit</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints, country codes, and
address patterns of nodes to vote Exit for regardless of their
uptime, bandwidth, or exit policy. See <a href="#ExcludeNodes">ExcludeNodes</a>
for more information on how to specify nodes.<br />
<br />
In order for this option to have any effect, <strong>TestingTorNetwork</strong>
has to be set. See <a href="#ExcludeNodes">ExcludeNodes</a> for more
information on how to specify nodes.
</p>
</dd>
<dt class="hdlist1">
<a id="TestingDirAuthVoteExitIsStrict"></a> <strong>TestingDirAuthVoteExitIsStrict</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If True (1), a node will never receive the Exit flag unless it is specified
in the <strong>TestingDirAuthVoteExit</strong> list, regardless of its uptime, bandwidth,
or exit policy.<br />
<br />
In order for this option to have any effect, <strong>TestingTorNetwork</strong>
has to be set.
</p>
</dd>
<dt class="hdlist1">
<a id="TestingDirAuthVoteGuard"></a> <strong>TestingDirAuthVoteGuard</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints and country codes and
address patterns of nodes to vote Guard for regardless of their
uptime and bandwidth. See <a href="#ExcludeNodes">ExcludeNodes</a> for more
information on how to specify nodes.<br />
<br />
In order for this option to have any effect, <strong>TestingTorNetwork</strong>
has to be set.
</p>
</dd>
<dt class="hdlist1">
<a id="TestingDirAuthVoteGuardIsStrict"></a> <strong>TestingDirAuthVoteGuardIsStrict</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If True (1), a node will never receive the Guard flag unless it is specified
in the <strong>TestingDirAuthVoteGuard</strong> list, regardless of its uptime and bandwidth.<br />
<br />
In order for this option to have any effect, <strong>TestingTorNetwork</strong>
has to be set.
</p>
</dd>
<dt class="hdlist1">
<a id="TestingDirAuthVoteHSDir"></a> <strong>TestingDirAuthVoteHSDir</strong> <em>node</em>,<em>node</em>,<em>…</em>
</dt>
<dd>
<p>
A list of identity fingerprints and country codes and
address patterns of nodes to vote HSDir for regardless of their
uptime and DirPort. See <a href="#ExcludeNodes">ExcludeNodes</a> for more
information on how to specify nodes.<br />
<br />
In order for this option to have any effect, <strong>TestingTorNetwork</strong>
must be set.
</p>
</dd>
<dt class="hdlist1">
<a id="TestingDirAuthVoteHSDirIsStrict"></a> <strong>TestingDirAuthVoteHSDirIsStrict</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If True (1), a node will never receive the HSDir flag unless it is specified
in the <strong>TestingDirAuthVoteHSDir</strong> list, regardless of its uptime and DirPort.<br />
<br />
In order for this option to have any effect, <strong>TestingTorNetwork</strong>
has to be set.
</p>
</dd>
<dt class="hdlist1">
<a id="TestingDirConnectionMaxStall"></a> <strong>TestingDirConnectionMaxStall</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>
</dt>
<dd>
<p>
Let a directory connection stall this long before expiring it.
Changing this requires that <strong>TestingTorNetwork</strong> is set. (Default:
5 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingEnableCellStatsEvent"></a> <strong>TestingEnableCellStatsEvent</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set, then Tor controllers may register for CELL_STATS
events. Changing this requires that <strong>TestingTorNetwork</strong> is set.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingEnableConnBwEvent"></a> <strong>TestingEnableConnBwEvent</strong> <strong>0</strong>|<strong>1</strong>
</dt>
<dd>
<p>
If this option is set, then Tor controllers may register for CONN_BW
events. Changing this requires that <strong>TestingTorNetwork</strong> is set.
(Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingLinkCertLifetime"></a> <strong>TestingLinkCertLifetime</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>|<strong>days</strong>|<strong>weeks</strong>|<strong>months</strong>
</dt>
<dd>
<p>
Overrides the default lifetime for the certificates used to authenticate
our X509 link cert with our ed25519 signing key.
(Default: 2 days)
</p>
</dd>
</dl></div>
<div class="paragraph"><p><a id="TestingLinkKeySlop"></a> <strong>TestingLinkKeySlop</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong><br /></p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="TestingMinExitFlagThreshold"></a> <strong>TestingMinExitFlagThreshold</strong> <em>N</em> <strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
Sets a lower-bound for assigning an exit flag when running as an
authority on a testing network. Overrides the usual default lower bound
of 4 KBytes. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingMinFastFlagThreshold"></a> <strong>TestingMinFastFlagThreshold</strong> <em>N</em> <strong>bytes</strong>|<strong>KBytes</strong>|<strong>MBytes</strong>|<strong>GBytes</strong>|<strong>TBytes</strong>|<strong>KBits</strong>|<strong>MBits</strong>|<strong>GBits</strong>|<strong>TBits</strong>
</dt>
<dd>
<p>
Minimum value for the Fast flag. Overrides the ordinary minimum taken
from the consensus when TestingTorNetwork is set. (Default: 0.)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingMinTimeToReportBandwidth"></a> <strong>TestingMinTimeToReportBandwidth</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
Do not report our measurements for our maximum observed bandwidth for any
time period that has lasted for less than this amount of time.
Values over 1 day have no effect. (Default: 1 day)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingServerConsensusDownloadInitialDelay"></a> <strong>TestingServerConsensusDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for when servers should download consensuses. Changing this
requires that <strong>TestingTorNetwork</strong> is set. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingServerDownloadInitialDelay"></a> <strong>TestingServerDownloadInitialDelay</strong> <em>N</em>
</dt>
<dd>
<p>
Initial delay in seconds for when servers should download things in general. Changing this
requires that <strong>TestingTorNetwork</strong> is set. (Default: 0)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingSigningKeySlop"></a> <strong>TestingSigningKeySlop</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
How early before the official expiration of a an Ed25519 signing key do
we replace it and issue a new key?
(Default: 3 hours for link and auth; 1 day for signing.)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingV3AuthInitialDistDelay"></a> <strong>TestingV3AuthInitialDistDelay</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
Like V3AuthDistDelay, but for initial voting interval before
the first consensus has been created. Changing this requires that
<strong>TestingTorNetwork</strong> is set. (Default: 5 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingV3AuthInitialVoteDelay"></a> <strong>TestingV3AuthInitialVoteDelay</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
Like V3AuthVoteDelay, but for initial voting interval before
the first consensus has been created. Changing this requires that
<strong>TestingTorNetwork</strong> is set. (Default: 5 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingV3AuthInitialVotingInterval"></a> <strong>TestingV3AuthInitialVotingInterval</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
Like V3AuthVotingInterval, but for initial voting interval before the first
consensus has been created. Changing this requires that
<strong>TestingTorNetwork</strong> is set. (Default: 30 minutes)
</p>
</dd>
<dt class="hdlist1">
<a id="TestingV3AuthVotingStartOffset"></a> <strong>TestingV3AuthVotingStartOffset</strong> <em>N</em> <strong>seconds</strong>|<strong>minutes</strong>|<strong>hours</strong>
</dt>
<dd>
<p>
Directory authorities offset voting start time by this much.
Changing this requires that <strong>TestingTorNetwork</strong> is set. (Default: 0)
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_non_persistent_options">NON-PERSISTENT OPTIONS</h2>
<div class="sectionbody">
<div class="paragraph"><p>These options are not saved to the torrc file by the "SAVECONF" controller
command. Other options of this type are documented in control-spec.txt,
section 5.4. End-users should mostly ignore them.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="UnderscorePorts"></a> <strong>__ControlPort</strong>, <strong>__DirPort</strong>, <strong>__DNSPort</strong>, <strong>__ExtORPort</strong>, <strong>__NATDPort</strong>, <strong>__ORPort</strong>, <strong>__SocksPort</strong>, <strong>__TransPort</strong>
</dt>
<dd>
<p>
These underscore-prefixed options are variants of the regular Port
options. They behave the same, except they are not saved to the
torrc file by the controller’s SAVECONF command.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_signals">SIGNALS</h2>
<div class="sectionbody">
<div class="paragraph"><p>Tor catches the following signals:</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
<a id="SIGTERM"></a> <strong>SIGTERM</strong>
</dt>
<dd>
<p>
Tor will catch this, clean up and sync to disk if necessary, and exit.
</p>
</dd>
<dt class="hdlist1">
<a id="SIGINT"></a> <strong>SIGINT</strong>
</dt>
<dd>
<p>
Tor clients behave as with SIGTERM; but Tor servers will do a controlled
slow shutdown, closing listeners and waiting 30 seconds before exiting.
(The delay can be configured with the ShutdownWaitLength config option.)
</p>
</dd>
<dt class="hdlist1">
<a id="SIGHUP"></a> <strong>SIGHUP</strong>
</dt>
<dd>
<p>
The signal instructs Tor to reload its configuration (including closing and
reopening logs), and kill and restart its helper processes if applicable.
</p>
</dd>
<dt class="hdlist1">
<a id="SIGUSR1"></a> <strong>SIGUSR1</strong>
</dt>
<dd>
<p>
Log statistics about current connections, past connections, and throughput.
</p>
</dd>
<dt class="hdlist1">
<a id="SIGUSR2"></a> <strong>SIGUSR2</strong>
</dt>
<dd>
<p>
Switch all logs to loglevel debug. You can go back to the old loglevels by
sending a SIGHUP.
</p>
</dd>
<dt class="hdlist1">
<a id="SIGCHLD"></a> <strong>SIGCHLD</strong>
</dt>
<dd>
<p>
Tor receives this signal when one of its helper processes has exited, so it
can clean up.
</p>
</dd>
<dt class="hdlist1">
<a id="SIGPIPE"></a> <strong>SIGPIPE</strong>
</dt>
<dd>
<p>
Tor catches this signal and ignores it.
</p>
</dd>
<dt class="hdlist1">
<a id="SIGXFSZ"></a> <strong>SIGXFSZ</strong>
</dt>
<dd>
<p>
If this signal exists on your platform, Tor catches and ignores it.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_files">FILES</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
<strong><code>@CONFDIR@/torrc</code></strong>
</dt>
<dd>
<p>
Default location of the configuration file.
</p>
</dd>
<dt class="hdlist1">
<strong><code>$HOME/.torrc</code></strong>
</dt>
<dd>
<p>
Fallback location for torrc, if @CONFDIR@/torrc is not found.
</p>
</dd>
<dt class="hdlist1">
<strong><code>@LOCALSTATEDIR@/lib/tor/</code></strong>
</dt>
<dd>
<p>
The tor process stores keys and other data here.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>cached-certs</code></strong>
</dt>
<dd>
<p>
Contains downloaded directory key certificates that are used to verify
authenticity of documents generated by the Tor directory authorities.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>cached-consensus</code></strong> and/or <strong><code>cached-microdesc-consensus</code></strong>
</dt>
<dd>
<p>
The most recent consensus network status document we’ve downloaded.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>cached-descriptors</code></strong> and <strong><code>cached-descriptors.new</code></strong>
</dt>
<dd>
<p>
These files contain the downloaded router statuses. Some routers may appear
more than once; if so, the most recently published descriptor is
used. Lines beginning with <strong><code>@</code></strong>-signs are annotations that contain more
information about a given router. The <strong><code>.new</code></strong> file is an append-only
journal; when it gets too large, all entries are merged into a new
cached-descriptors file.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>cached-extrainfo</code></strong> and <strong><code>cached-extrainfo.new</code></strong>
</dt>
<dd>
<p>
Similar to <strong>cached-descriptors</strong>, but holds optionally-downloaded
"extra-info" documents. Relays use these documents to send inessential
information about statistics, bandwidth history, and network health to the
authorities. They aren’t fetched by default. See <a href="#DownloadExtraInfo">DownloadExtraInfo</a>
for more information.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>cached-microdescs</code></strong> and <strong><code>cached-microdescs.new</code></strong>
</dt>
<dd>
<p>
These files hold downloaded microdescriptors. Lines beginning with
<strong><code>@</code></strong>-signs are annotations that contain more information about a given
router. The <strong><code>.new</code></strong> file is an append-only journal; when it gets too
large, all entries are merged into a new cached-microdescs file.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>state</code></strong>
</dt>
<dd>
<p>
Contains a set of persistent key-value mappings. These include:
</p>
<div class="ulist"><ul>
<li>
<p>
the current entry guards and their status.
</p>
</li>
<li>
<p>
the current bandwidth accounting values.
</p>
</li>
<li>
<p>
when the file was last written
</p>
</li>
<li>
<p>
what version of Tor generated the state file
</p>
</li>
<li>
<p>
a short history of bandwidth usage, as produced in the server
descriptors.
</p>
</li>
</ul></div>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>sr-state</code></strong>
</dt>
<dd>
<p>
<em>Authority only</em>. This file is used to record information about the current
status of the shared-random-value voting state.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>diff-cache</code></strong>
</dt>
<dd>
<p>
<em>Directory cache only</em>. Holds older consensuses and diffs from oldest to
the most recent consensus of each type compressed in various ways. Each
file contains a set of key-value arguments describing its contents,
followed by a single NUL byte, followed by the main file contents.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>bw_accounting</code></strong>
</dt>
<dd>
<p>
This file is obsolete and the data is now stored in the <strong><code>state</code></strong> file
instead. Used to track bandwidth accounting values (when the current period
starts and ends; how much has been read and written so far this period).
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>control_auth_cookie</code></strong>
</dt>
<dd>
<p>
This file can be used only when cookie authentication is enabled. Used for
cookie authentication with the controller. Location can be overridden by
the <code>CookieAuthFile</code> configuration option. Regenerated on startup. See
control-spec.txt in <a href="https://spec.torproject.org/">torspec</a> for details.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>lock</code></strong>
</dt>
<dd>
<p>
This file is used to prevent two Tor instances from using the same data
directory. If access to this file is locked, data directory is already in
use by Tor.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>key-pinning-journal</code></strong>
</dt>
<dd>
<p>
Used by authorities. A line-based file that records mappings between
RSA1024 and Ed25519 identity keys. Authorities enforce these mappings, so
that once a relay has picked an Ed25519 key, stealing or factoring the
RSA1024 key will no longer let an attacker impersonate the relay.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>authority_identity_key</code></strong>
</dt>
<dd>
<p>
A v3 directory authority’s master identity key, used to authenticate its
signing key. Tor doesn’t use this while it’s running. The tor-gencert
program uses this. If you’re running an authority, you should keep this key
offline, and not put it in this file.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>authority_certificate</code></strong>
</dt>
<dd>
<p>
Only directory authorities use this file. A v3 directory authority’s
certificate which authenticates the authority’s current vote- and
consensus-signing key using its master identity key.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>authority_signing_key</code></strong>
</dt>
<dd>
<p>
Only directory authorities use this file. A v3 directory authority’s
signing key that is used to sign votes and consensuses. Corresponds to the
<strong>authority_certificate</strong> cert.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>legacy_certificate</code></strong>
</dt>
<dd>
<p>
As authority_certificate; used only when <code>V3AuthUseLegacyKey</code> is set. See
documentation for <a href="#V3AuthUseLegacyKey">V3AuthUseLegacyKey</a>.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>legacy_signing_key</code></strong>
</dt>
<dd>
<p>
As authority_signing_key: used only when <code>V3AuthUseLegacyKey</code> is set. See
documentation for <a href="#V3AuthUseLegacyKey">V3AuthUseLegacyKey</a>.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>secret_id_key</code></strong>
</dt>
<dd>
<p>
A relay’s RSA1024 permanent identity key, including private and public
components. Used to sign router descriptors, and to sign other keys.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>ed25519_master_id_public_key</code></strong>
</dt>
<dd>
<p>
The public part of a relay’s Ed25519 permanent identity key.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>ed25519_master_id_secret_key</code></strong>
</dt>
<dd>
<p>
The private part of a relay’s Ed25519 permanent identity key. This key is
used to sign the medium-term ed25519 signing key. This file can be kept
offline or encrypted. If so, Tor will not be able to generate new signing
keys automatically; you’ll need to use <code>tor --keygen</code> to do so.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>ed25519_signing_secret_key</code></strong>
</dt>
<dd>
<p>
The private and public components of a relay’s medium-term Ed25519 signing
key. This key is authenticated by the Ed25519 master key, which in turn
authenticates other keys (and router descriptors).
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>ed25519_signing_cert</code></strong>
</dt>
<dd>
<p>
The certificate which authenticates "ed25519_signing_secret_key" as having
been signed by the Ed25519 master key.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>secret_onion_key</code></strong> and <strong><code>secret_onion_key.old</code></strong>
</dt>
<dd>
<p>
A relay’s RSA1024 short-term onion key. Used to decrypt old-style ("TAP")
circuit extension requests. The <strong><code>.old</code></strong> file holds the previously
generated key, which the relay uses to handle any requests that were made
by clients that didn’t have the new one.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<strong><code>secret_onion_key_ntor</code></strong> and <strong><code>secret_onion_key_ntor.old</code></strong>
</dt>
<dd>
<p>
A relay’s Curve25519 short-term onion key. Used to handle modern ("ntor")
circuit extension requests. The <strong><code>.old</code></strong> file holds the previously
generated key, which the relay uses to handle any requests that were made
by clients that didn’t have the new one.
</p>
</dd>
<dt class="hdlist1">
<em>KeyDirectory</em>/<em>keyname</em><strong><code>.secret_family_key</code></strong>
</dt>
<dd>
<p>
A relay family’s family identity key.
Used to prove membership in a relay family.
See <a href="https://community.torproject.org/relay/setup/post-install/family-ids/">https://community.torproject.org/relay/setup/post-install/family-ids/</a>
for more information.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>fingerprint</code></strong>
</dt>
<dd>
<p>
Only used by servers. Contains the fingerprint of the server’s RSA
identity key.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>fingerprint-ed25519</code></strong>
</dt>
<dd>
<p>
Only used by servers. Contains the fingerprint of the server’s ed25519
identity key.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>hashed-fingerprint</code></strong>
</dt>
<dd>
<p>
Only used by bridges. Contains the hashed fingerprint of the bridge’s
identity key. (That is, the hash of the hash of the identity key.)
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>bridgelines</code></strong>
</dt>
<dd>
<p>
Only used by bridges. Contains the bridge lines that clients can use to
connect using pluggable transports.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>approved-routers</code></strong>
</dt>
<dd>
<p>
Only used by authoritative directory servers. Each line lists a status and
an identity, separated by whitespace. Identities can be hex-encoded RSA
fingerprints, or base-64 encoded ed25519 public keys. See the
<strong>fingerprint</strong> file in a tor relay’s <em>DataDirectory</em> for an example
fingerprint line. If the status is <strong>!reject</strong>, then descriptors from the
given identity are rejected by this server. If it is <strong>!invalid</strong> then
descriptors are accepted, but marked in the vote as not valid.
If it is <strong>!badexit</strong>, then the authority will vote for it to receive a
BadExit flag, indicating that it shouldn’t be used for traffic leaving
the Tor network. If it is <strong>!middleonly</strong>, then the authority will
vote for it to only be used in the middle of circuits.
(Neither rejected nor invalid relays are included in the consensus.)
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>v3-status-votes</code></strong>
</dt>
<dd>
<p>
Only for v3 authoritative directory servers. This file contains status
votes from all the authoritative directory servers.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>unverified-consensus</code></strong>
</dt>
<dd>
<p>
Contains a network consensus document that has been downloaded, but which
we didn’t have the right certificates to check yet.
</p>
</dd>
<dt class="hdlist1">
<em>CacheDirectory</em>/<strong><code>unverified-microdesc-consensus</code></strong>
</dt>
<dd>
<p>
Contains a microdescriptor-flavored network consensus document that has
been downloaded, but which we didn’t have the right certificates to check
yet.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>unparseable-desc</code></strong>
</dt>
<dd>
<p>
Onion server descriptors that Tor was unable to parse are dumped to this
file. Only used for debugging.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>router-stability</code></strong>
</dt>
<dd>
<p>
Only used by authoritative directory servers. Tracks measurements for
router mean-time-between-failures so that authorities have a fair idea of
how to set their Stable flags.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>stats/dirreq-stats</code></strong>
</dt>
<dd>
<p>
Only used by directory caches and authorities. This file is used to
collect directory request statistics.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>stats/entry-stats</code></strong>
</dt>
<dd>
<p>
Only used by servers. This file is used to collect incoming connection
statistics by Tor entry nodes.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>stats/bridge-stats</code></strong>
</dt>
<dd>
<p>
Only used by servers. This file is used to collect incoming connection
statistics by Tor bridges.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>stats/exit-stats</code></strong>
</dt>
<dd>
<p>
Only used by servers. This file is used to collect outgoing connection
statistics by Tor exit routers.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>stats/buffer-stats</code></strong>
</dt>
<dd>
<p>
Only used by servers. This file is used to collect buffer usage
history.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>stats/conn-stats</code></strong>
</dt>
<dd>
<p>
Only used by servers. This file is used to collect approximate connection
history (number of active connections over time).
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>stats/hidserv-stats</code></strong>
</dt>
<dd>
<p>
Only used by servers. This file is used to collect approximate counts
of what fraction of the traffic is hidden service rendezvous traffic, and
approximately how many hidden services the relay has seen.
</p>
</dd>
<dt class="hdlist1">
<em>DataDirectory</em>/<strong><code>networkstatus-bridges</code></strong>
</dt>
<dd>
<p>
Only used by authoritative bridge directories. Contains information
about bridges that have self-reported themselves to the bridge
authority.
</p>
</dd>
<dt class="hdlist1">
<em>HiddenServiceDirectory</em>/<strong><code>hostname</code></strong>
</dt>
<dd>
<p>
The <base32-encoded-fingerprint>.onion domain name for this hidden service.
If the hidden service is restricted to authorized clients only, this file
also contains authorization data for all clients.
</p>
<div class="admonitionblock">
<table><tr>
<td class="icon">
<div class="title">Note</div>
</td>
<td class="content">The clients will ignore any extra subdomains prepended to a hidden
service hostname. Supposing you have "xyz.onion" as your hostname, you
can ask your clients to connect to "www.xyz.onion" or "irc.xyz.onion"
for virtual-hosting purposes.</td>
</tr></table>
</div>
</dd>
<dt class="hdlist1">
<em>HiddenServiceDirectory</em>/<strong><code>private_key</code></strong>
</dt>
<dd>
<p>
Contains the private key for this hidden service.
</p>
</dd>
<dt class="hdlist1">
<em>HiddenServiceDirectory</em>/<strong><code>client_keys</code></strong>
</dt>
<dd>
<p>
Contains authorization data for a hidden service that is only accessible by
authorized clients.
</p>
</dd>
<dt class="hdlist1">
<em>HiddenServiceDirectory</em>/<strong><code>onion_service_non_anonymous</code></strong>
</dt>
<dd>
<p>
This file is present if a hidden service key was created in
<strong>HiddenServiceNonAnonymousMode</strong>.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_see_also">SEE ALSO</h2>
<div class="sectionbody">
<div class="paragraph"><p>For more information, refer to the Tor Project website at
<a href="https://www.torproject.org/">https://www.torproject.org/</a> and the Tor specifications at
<a href="https://spec.torproject.org">https://spec.torproject.org</a>. See also <strong>torsocks</strong>(1) and <strong>torify</strong>(1).</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_bugs">BUGS</h2>
<div class="sectionbody">
<div class="paragraph"><p>Because Tor is still under development, there may be plenty of bugs. Please
report them at <a href="https://bugs.torproject.org/">https://bugs.torproject.org/</a>.</p></div>
</div>
</div>
</div>
<div id="footnotes"><hr /></div>
<div id="footer">
<div id="footer-text">
</div>
</div>
</body>
</html>
|