Bitcoin Forum
May 05, 2024, 12:47:23 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bitcoin 0.12.0 Banning Node through CLI  (Read 744 times)
miguelmorales85 (OP)
Hero Member
*****
Offline Offline

Activity: 544
Merit: 506


View Profile
March 07, 2016, 08:45:56 AM
 #1

Hi, I like the new feature in 0.12.0 (Ubuntu) where I can right-click a connected peer to my node and ban it for up to 1 year.

I wonder how can I do that through CLI, It seems that is not defined in the Bitcoin Wiki and I cant find that info in forums. Huh

Can Anybody help me in this one? tia
1714870043
Hero Member
*
Offline Offline

Posts: 1714870043

View Profile Personal Message (Offline)

Ignore
1714870043
Reply with quote  #2

1714870043
Report to moderator
1714870043
Hero Member
*
Offline Offline

Posts: 1714870043

View Profile Personal Message (Offline)

Ignore
1714870043
Reply with quote  #2

1714870043
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714870043
Hero Member
*
Offline Offline

Posts: 1714870043

View Profile Personal Message (Offline)

Ignore
1714870043
Reply with quote  #2

1714870043
Report to moderator
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1499


No I dont escrow anymore.


View Profile WWW
March 07, 2016, 09:03:41 AM
 #2

Code:
setban "ip(/netmask)" "add|remove" (bantime) (absolute)

Attempts add or remove a IP/Subnet from the banned list.

Arguments:
1. "ip(/netmask)" (string, required) The IP/Subnet (see getpeerinfo for nodes ip) with a optional netmask (default is /32 = single ip)
2. "command"      (string, required) 'add' to add a IP/Subnet to the list, 'remove' to remove a IP/Subnet from the list
3. "bantime"      (numeric, optional) time in seconds how long (or until when if [absolute] is set) the ip is banned (0 or empty means using the default time of 24h which can also be overwritten by the -bantime startup argument)
4. "absolute"     (boolean, optional) If set, the bantime must be a absolute timestamp in seconds since epoch (Jan 1 1970 GMT)

Examples:
> bitcoin-cli setban "192.168.0.6" "add" 86400
> bitcoin-cli setban "192.168.0.0/24" "add"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "setban", "params": ["192.168.0.6", "add" 86400] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/

Im not really here, its just your imagination.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!