Portal Community
What bootstrap peers are: the well-known peers a Kubo daemon dials on startup to join the wider IPFS network before it has discovered anyone else. This list is persistent daemon config, not a live connection state — compare with Swarm Operations, which reports actual current connections.

add

FieldTypeRequiredDescription
peerAddresstext✓ YesPeer multiaddr to add to the persistent bootstrap list.

Missing → CFG_MISSING_PEER_ADDRESS.

list

FieldTypeRequiredDefaultDescription
expandAutoboolNofalseResolve "auto"-flavored bootstrap entries to their concrete addresses before returning.

List-shaped response: array of { peer } entries plus count.

remove

FieldTypeRequiredDefaultDescription
peerAddresstextConditionalPeer multiaddr to remove — required unless all=true.
allboolNofalseRemove every configured bootstrap peer. Destructive.
confirmDestructiveboolConditionalfalseMust be true before an all=true removal is executed.
Safety guard on all=true: if all is true and confirmDestructive is not also true, the call fails before any network request with CFG_CONFIRM_DESTRUCTIVE_REQUIRED ("Removing all bootstrap peers requires confirmDestructive=true."). Removing a single named peer (all=false, a specific peerAddress) needs no confirmation — only clearing the entire list is treated as destructive. A missing peerAddress without all=true fails with CFG_MISSING_PEER_ADDRESS.