mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
3e4a3bafc3
also fixed grammar and consistency with other manpages. The names are now the same as what json_connect() expects. Signed-off-by: Mark Beckwith <wythe@intrig.com>
63 lines
1.5 KiB
Plaintext
63 lines
1.5 KiB
Plaintext
LIGHTNING-CONNECT(7)
|
|
====================
|
|
:doctype: manpage
|
|
|
|
NAME
|
|
----
|
|
lightning-connect - Command for connecting to another
|
|
lightning node.
|
|
|
|
SYNOPSIS
|
|
--------
|
|
*connect* 'id' ['host' 'port']
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
The *connect* RPC command establishes a new connection
|
|
with another node in the Lightning Network.
|
|
|
|
'id' represents the target node's public key.
|
|
As a convenience, 'id' may be of the form 'id@host' or 'id@host:port'.
|
|
In this case, the 'host' and 'port' parameters must be omitted.
|
|
|
|
'host' is the peer's hostname or IP address.
|
|
|
|
If not specified, the 'port' defaults to 9375.
|
|
|
|
If 'host' is not specified, the
|
|
connection will be attempted to an IP belonging to
|
|
'id' obtained through gossip with other already
|
|
connected peers.
|
|
|
|
Connecting to a node is just the first step in opening
|
|
a channel with another node.
|
|
Once the peer is connected a channel can be opened with
|
|
lightning-fundchannel(7).
|
|
|
|
|
|
RETURN VALUE
|
|
------------
|
|
On success the peer 'id' is returned.
|
|
|
|
The following error codes may occur:
|
|
|
|
* -1. Catchall nonspecific error.
|
|
This may occur if the host is not valid or there are problems
|
|
communicating with the peer.
|
|
*connect* will make up to 10 attempts to connect to the peer before
|
|
giving up.
|
|
|
|
AUTHOR
|
|
------
|
|
Rusty Russell <rusty@rustcorp.com.au> is mainly responsible.
|
|
Felix <fixone@gmail.com> is the original author of this manpage.
|
|
|
|
SEE ALSO
|
|
--------
|
|
lightning-fundchannel(7), lightning-listpeers(7),
|
|
lightning-listchannels(7), lightning-disconnect(7)
|
|
|
|
RESOURCES
|
|
---------
|
|
Main web site: https://github.com/ElementsProject/lightning
|