.TH "LIGHTNING-CONNECT" "7" "" "" "lightning-connect" .SH NAME lightning-connect - Command for connecting to another lightning node .SH SYNOPSIS \fBconnect\fR \fIid\fR [\fIhost\fR \fIport\fR] .SH DESCRIPTION The \fBconnect\fR RPC command establishes a new connection with another node in the Lightning Network\. \fIid\fR represents the target node’s public key\. As a convenience, \fIid\fR may be of the form \fIid@host\fR or \fIid@host:port\fR\. In this case, the \fIhost\fR and \fIport\fR parameters must be omitted\. \fIhost\fR is the peer’s hostname or IP address\. If not specified, the \fIport\fR defaults to 9735\. If \fIhost\fR is not specified, the connection will be attempted to an IP belonging to \fIid\fR obtained through gossip with other already connected peers\. If \fIhost\fR begins with a \fI/\fR it is interpreted as a local path, and the connection will be made to that local socket (see \fBbind-addr\fR in \fBlightningd-config\fR(5))\. 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 \fBlightning-fundchannel\fR(7)\. .SH RETURN VALUE On success the peer \fIid\fR is returned\. .SH ERRORS On failure, one of the following errors will be returned: .nf .RS { "code" : 400, "message" : "Unable to connect, no address known for peer" } .RE .fi If some addresses are known but connecting to all of them failed, the message will contain details about the failures: .nf .RS { "code" : 401, "message" : "..." } .RE .fi If the given parameters are wrong: .nf .RS { "code" : -32602, "message" : "..." } .RE .fi .SH AUTHOR Rusty Russell \fI is mainly responsible\. Felix \fI is the original author of this manpage\. .SH SEE ALSO \fBlightning-fundchannel\fR(7), \fBlightning-listpeers\fR(7), \fBlightning-listchannels\fR(7), \fBlightning-disconnect\fR(7) .SH RESOURCES Main web site: \fIhttps://github.com/ElementsProject/lightning\fR