Advertisement
Guest User

Untitled

a guest
Aug 20th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.83 KB | None | 0 0
  1. # logfilename owner:group mode count size when flags pid_file sig_num
  2. # /var/log/i2pd/i2pd.log _i2pd:_i2pd 644 7 100 * J /var/run/i2pd/i2pd.pid 1
  3.  
  4. pidfile=/var/run/i2pd/i2pd.pid
  5.  
  6. # logging:
  7. log=file
  8. # loglevel=info # debug, info, warn, error, none, default=info
  9. loglevel=debug # debug, info, warn, error, none, default=info
  10. logclftime=true # Write full CLF-formatted date and time to log (default: write only time)
  11. logfile=/var/log/i2pd/i2pd.log
  12.  
  13. # networking:
  14. ipv6=false
  15. port=9292 # Port to listen for incoming connections (default: auto)
  16. host=10.20.9.2
  17. # ifname=vtnet1_vlan2009 # Network interface to bind to
  18. # ifname4= # Network interface to bind to for IPv4
  19. # ifname6= # Network interface to bind to for IPv6
  20.  
  21. nat=true
  22. # notransit=false
  23. # floodfill=false
  24. bandwidth=P # integer in KBps or letters: L (32), O (256), P (2048), X (>9000)
  25. # share=100 # Max % of bandwidth limit for transit. 0-100. 100 by default
  26. # ssu=true # Enable SSU transport protocol (use UDP). true by default
  27. # ntcp=true # Enable NTCP transport protocol (use TCP). true by default
  28. # ntcpproxy= # Specify proxy server for NTCP. Should be http://address:port or \
  29. # socks://address:port
  30. # family # Name of a family, router belongs to
  31. # netid # Network ID, router belongs to. Main I2P is 2.
  32.  
  33.  
  34. # proxies:
  35.  
  36. # http:
  37. httpproxy.enabled=true # default true
  38. httpproxy.address=127.0.0.1
  39. httpproxy.port=9061
  40. # httpproxy.addresshelper= # Enable address helper (jump). true by default
  41. # httpproxy.keys= # Optional keys file for HTTP proxy local destination
  42. # httpproxy.signaturetype= # Signature type for new keys if keys file is set. 7 by default
  43. # httpproxy.inbound.length= # Inbound tunnels length if keys is set. 3 by default
  44. # httpproxy.inbound.quantity= # Inbound tunnels quantity if keys is set. 5 by default
  45. # httpproxy.outbound.length= # Outbound tunnels length if keys is set. 3 by default
  46. # httpproxy.outbound.quantity= # Outbound tunnels quantity if keys is set. 5 by default
  47. # httpproxy.outproxy= # HTTP proxy upstream out proxy url (like http://false.i2p)
  48.  
  49. # socks:
  50. socksproxy.enabled=true # If SOCKS proxy is enabled. true by default
  51. socksproxy.address=127.0.0.1 # require NAT rule
  52. socksproxy.port=9060 # The port to listen on (SOCKS Proxy). 4447 by default
  53. # socksproxy.keys= # Optional keys file for SOCKS proxy local destination
  54. # socksproxy.signaturetype= # Signature type for new keys if keys file is set. 7 by default
  55. # socksproxy.inbound.length= # Inbound tunnels length if keys is set. 3 by default
  56. # socksproxy.inbound.quantity= # Inbound tunnels quantity if keys is set. 5 by default
  57. # socksproxy.outbound.length= # Outbound tunnels length if keys is set. 3 by default
  58. # socksproxy.outbound.quantity= # Outbound tunnels quantity if keys is set. 5 by default
  59. # socksproxy.outproxy= # Address of outproxy. requests outside I2P will go there
  60. # socksproxy.outproxyport= # Outproxy remote port
  61.  
  62. # control interfaces:
  63. # sam:
  64. # https://geti2p.net/en/docs/api/sam
  65. sam.address=127.0.0.1 # The address to listen on (SAM bridge)
  66. sam.port=7656 # Port of SAM bridge. Usually 7656. SAM is off if not specified
  67. # sam.enabled=true # If SAM is enabled. true by default
  68.  
  69. # bob:
  70. # bob.address= # The address to listen on (BOB command channel)
  71. # bob.port=2827 # Port of BOB comman channel. Usually 2827. BOB is off if not specified
  72. # bob.enabled= # If BOB is enabled. false by default
  73.  
  74. # I2CP:
  75. i2cp.address=127.0.0.1 # The address to listen on or an abstract address for Android LocalSocket
  76. i2cp.port=7654 # Port of I2CP server. Usually 7654. Ignored for Andorid
  77. i2cp.enabled=true # If I2CP is enabled. false by default. Other services don't require I2CP
  78.  
  79. # I2PControl:
  80. i2pcontrol.address=127.0.0.1 # The address to listen on (I2P control service)
  81. i2pcontrol.port=7650 # Port of I2P control service. Usually 7650. I2PControl is \
  82. # off if not specified
  83. i2pcontrol.enabled= # If I2P control is enabled. false by default
  84. # i2pcontrol.password= # I2P control authentication password. itoopie by default
  85. # i2pcontrol.cert= # I2P control HTTPS certificate file name. i2pcontrol.crt.pem by default
  86. # i2pcontrol.key= # I2P control HTTPS certificate key file name. def: i2pcontrol.key.pem
  87.  
  88. [http]
  89. ## Web Console settings
  90. ## Uncomment and set to 'false' to disable Web Console
  91. # enabled = true
  92. ## Address and port service will listen on
  93. address = 127.0.0.1
  94. #address = l0.6.68.2
  95. hostname=oppan.lzon
  96. port=8080
  97. ## Uncomment following lines to enable Web Console authentication
  98. auth=true
  99. user=i2pdadm
  100. pass=
  101.  
  102. [exploratory]
  103. #inbound.length = 4 #def 2
  104. inbound.length = 3
  105. inbound.quantity = 9 #def 3
  106. #outbound.length = 4 #def 2
  107. outbound.length = 3
  108. outbound.quantity = 9 #def 3
  109.  
  110. [reseed]
  111. verify = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement