1podman-network-inspect(1)() podman-network-inspect(1)()
2
3
4
6 podman-network-inspect - Displays the raw CNI network configuration for
7 one or more networks
8
9
11 podman network inspect [network ...]
12
13
15 Display the raw (JSON format) network configuration. This command is
16 not available for rootless users.
17
18
20 Inspect the default podman network
21
22
23 # podman network inspect podman
24 [{
25 "cniVersion": "0.3.0",
26 "name": "podman",
27 "plugins": [
28 {
29 "type": "bridge",
30 "bridge": "cni0",
31 "isGateway": true,
32 "ipMasq": true,
33 "ipam": {
34 "type": "host-local",
35 "subnet": "10.88.1.0/24",
36 "routes": [
37 { "dst": "0.0.0.0/0" }
38 ]
39 }
40 },
41 {
42 "type": "portmap",
43 "capabilities": {
44 "portMappings": true
45 }
46 }
47 ]
48 }
49 ]
50
51
52
54 podman(1), podman-network(1), podman-network-ls(1)
55
56
58 August 2019, Originally compiled by Brent Baude bbaude@redhat.com
59 ⟨mailto:bbaude@redhat.com⟩
60
61
62
63 podman-network-inspect(1)()