github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/markdown/podman-system-connection-list.1.md (about) 1 % podman-system-connection-list(1) 2 3 ## NAME 4 podman\-system\-connection\-list - List the destination for the Podman service(s) 5 6 ## SYNOPSIS 7 **podman system connection list** [*options*] 8 9 **podman system connection ls** [*options*] 10 11 ## DESCRIPTION 12 List ssh destination(s) for podman service(s). 13 14 ## OPTIONS 15 16 #### **--format**=*format* 17 18 Change the default output format. This can be of a supported type like 'json' or a Go template. 19 Valid placeholders for the Go template listed below: 20 21 | **Placeholder** | **Description** | 22 | --------------- | ----------------------------------------------------------------------------- | 23 | .Name | Connection Name/Identifier | 24 | .Identity | Path to file containing SSH identity | 25 | .URI | URI to podman service. Valid schemes are ssh://[user@]*host*[:port]*Unix domain socket*[?secure=True], unix://*Unix domain socket*, and tcp://localhost[:*port*] | 26 | .Default | Indicates whether connection is the default | 27 28 ## EXAMPLE 29 ``` 30 $ podman system connection list 31 Name URI Identity Default 32 devl ssh://root@example.com:/run/podman/podman.sock ~/.ssh/id_rsa True 33 devl ssh://user@example.com:/run/user/1000/podman/podman.sock ~/.ssh/id_rsa False 34 ``` 35 ## SEE ALSO 36 **[podman(1)](podman.1.md)**, **[podman-system(1)](podman-system.1.md)**, **[podman-system-connection(1)](podman-system-connection.1.md)** 37 38 ## HISTORY 39 July 2020, Originally compiled by Jhon Honce (jhonce at redhat dot com)