Closed prettyCoders closed 5 years ago
????????anybody there
Source: https://wiki.veriblock.org/index.php?title=NodeCore_Networking#IP_Whitelisting
IP Whitelisting For a NodeCore instance, IP Whitelisting allows explicitly adding IPs such that only remote clients on that list can connect to your VeriBlock NodeCore instance.
Note that NodeCore expects IPv4, such as: http://whatismyip.host
rpc.bind.address=0.0.0.0
rpc.whitelist.addresses = 98.213.111.91 Note that the whitelist entry is a CSV list. It can be a:
single IP address, e.g. 192.168.1.1 "wildcard" IP, e.g. 192.168.. (which would be all IP's in the 192.168 range) CIDR representation, e.g. 192.168.0.0/16
This will vary depending on your operating system. Here is an example for a RHEL-based linux distro (example is CentOS 7):
firewall-cmd --permanent --add-port=10500/tcp firewall-cmd --reload
How to set the Nodecore white list?