github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/docs/source/markdown/podman-network-ls.1.md (about) 1 % podman-network-ls(1) 2 3 ## NAME 4 podman\-network\-ls - Display a summary of CNI networks 5 6 ## SYNOPSIS 7 **podman network ls** [*options*] 8 9 ## DESCRIPTION 10 Displays a list of existing podman networks. 11 12 ## OPTIONS 13 #### **--quiet**, **-q** 14 15 The `quiet` option will restrict the output to only the network names. 16 17 #### **--format**, **-f** 18 19 Pretty-print networks to JSON or using a Go template. 20 21 #### **--filter** 22 23 Provide filter values (e.g. 'name=podman'). 24 25 ## EXAMPLE 26 27 Display networks 28 29 ``` 30 # podman network ls 31 NAME VERSION PLUGINS 32 podman 0.3.0 bridge,portmap 33 podman2 0.3.0 bridge,portmap 34 outside 0.3.0 bridge 35 podman9 0.3.0 bridge,portmap 36 ``` 37 38 Display only network names 39 ``` 40 # podman network ls -q 41 podman 42 podman2 43 outside 44 podman9 45 ``` 46 47 Display name of network which support bridge plugin 48 ``` 49 # podman network ls --filter plugin=portmap --format {{.Name}} 50 podman 51 podman2 52 podman9 53 ``` 54 55 ## SEE ALSO 56 podman(1), podman-network(1), podman-network-inspect(1) 57 58 ## HISTORY 59 August 2019, Originally compiled by Brent Baude <bbaude@redhat.com>