podman-network-inspect - Man Page

Displays the network configuration for one or more networks

Synopsis

podman network inspect [options] network [network ...]

Description

Display the (JSON format) network configuration.

Options

--format, -f=format

Pretty-print networks to JSON or using a Go template.

PlaceholderDescription
.IDNetwork ID
.NameNetwork name
.DriverNetwork driver
.LabelsNetwork labels
.OptionsNetwork options
.IPAMOptionsNetwork ipam options
.CreatedTimestamp when the network was created
.InternalNetwork is internal (boolean)
.IPv6EnabledNetwork has ipv6 subnet (boolean)
.DNSEnabledNetwork has dns enabled (boolean)
.NetworkInterfaceName of the network interface on the host
.SubnetsList of subnets on this network

Example

Inspect the default podman network.

$ podman network inspect podman
[
    {
        "name": "podman",
        "id": "2f259bab93aaaaa2542ba43ef33eb990d0999ee1b9924b557b7be53c0b7a1bb9",
        "driver": "bridge",
        "network_interface": "podman0",
        "created": "2021-06-03T12:04:33.088567413+02:00",
        "subnets": [
            {
                "subnet": "10.88.0.0/16",
                "gateway": "10.88.0.1"
            }
        ],
        "ipv6_enabled": false,
        "internal": false,
        "dns_enabled": false,
        "ipam_options": {
            "driver": "host-local"
        }
    }
]

Show the subnet and gateway for a network.

$ podman network inspect podman --format "{{range .Subnets}}Subnet: {{.Subnet}} Gateway: {{.Gateway}}{{end}}"
Subnet: 10.88.0.0/16 Gateway: 10.88.0.1

See Also

podman(1), podman-network(1), podman-network-ls(1), podman-network-create(1)

History

August 2021, Updated with the new network format by Paul Holzinger pholzing@redhat.com ⟨mailto:pholzing@redhat.com⟩

August 2019, Originally compiled by Brent Baude bbaude@redhat.com ⟨mailto:bbaude@redhat.com⟩

Referenced By

podman-inspect(1), podman-network(1), podman-network-connect(1), podman-network-create(1), podman-network-ls(1), podman-network-update(1).