Guest User

Untitled

a guest
Jun 20th, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. # ~/.bitmonero/bitmonero.conf
  2.  
  3. # Private Monero Node over Tor Only
  4.  
  5. # Data directory
  6. #data-dir=~/.bitmonero
  7.  
  8. # Disable automatic update checks
  9. check-updates=disabled
  10.  
  11. # Optional: recent ban list for malicious nodes
  12. #ban-list=ban_list.txt
  13.  
  14. # Logging
  15. log-file=~/.bitmonero/bitmonero.log
  16. log-level=0
  17.  
  18. # ======================
  19. # === P2P Connection ===
  20. # ======================
  21. # Listen only on localhost for P2P connections
  22. p2p-bind-ip=127.0.0.1 # STEALTH MODE
  23. #p2p-bind-port=18080 # Optional: you can keep the default
  24. p2p-use-ipv6=0 # Disable IPv6, not needed in your case
  25. #p2p-bind-ipv6-address=::1 # Only if using IPv6 localhost
  26. #no-igd=1 # Disable UPnP port mapping
  27. proxy=127.0.0.1:9050 # Use Tor SOCKS proxy
  28. hide-my-port=1 # Do not announce P2P port
  29.  
  30. # Allow ZERO incoming P2P connections
  31. in-peers=0
  32.  
  33. # Bandwidth limits (adjust as needed)
  34. out-peers=10
  35.  
  36. # Bandwidth limits (adjust as needed)
  37. limit-rate-up=1048576
  38. limit-rate-down=1048576
  39. rpc-login=Myuser:Mypass
  40. # =========================
  41. # === RPC Configuration ===
  42. # =========================
  43. # Restrict RPC to localhost only
  44. rpc-restricted-bind-ip=127.0.0.1 # STEALTH MODE
  45. rpc-restricted-bind-ipv6-address=::1 # Optional, only if using IPv6
  46. rpc-restricted-bind-port=18089
  47.  
  48. # Optional RPC authentication (recommended for additional security)
  49. # rpc-login=username:password
  50.  
  51. # Use autodetect for RPC SSL
  52. rpc-ssl=autodetect
  53.  
  54. # ===================
  55. # === ZMQ Settings ==
  56. # ===================
  57. zmq-pub=tcp://127.0.0.1:18083
  58.  
  59. # =============================
  60. # === Transaction over Tor ====
  61. # =============================
  62. tx-proxy=tor,127.0.0.1:9050,16,disable_noise
  63.  
  64. # ================================
  65. # === Tor P2P (if you want it) ===
  66. # ================================
  67. # Optional: You can leave this out if you don't want to accept incoming connections
  68. #anonymous-inbound=YourLongV3OnionAddress.onion:18084,127.0.0.1:18084
  69.  
  70. # But you likely want to **omit** this for full privacy, unless you plan to connect to your own node via onion service.
  71.  
  72. # =============================
  73. # === Additional Protections ==
  74. # =============================
  75. disable-rpc-ban=1 # Be forgiving to connecting wallets (you are the only one connecting)
  76.  
  77. #anonymous-inbound=Link.onion:18084,127.0.0.1:18084 # Tor-p2p
  78.  
Add Comment
Please, Sign In to add comment