List
List all network interfaces on a target host:
$ osapi client node network interface list --target web-01
Job ID: 550e8400-e29b-41d4-a716-446655440000
NAME IPv4 IPv6 MAC MANAGED
eth0 192.168.1.100/24 52:54:00:ab:cd:ef true
lo 127.0.0.1/8 false
Target all hosts to list interfaces across the fleet:
$ osapi client node network interface list --target _all
Job ID: 550e8400-e29b-41d4-a716-446655440000
web-01
NAME IPv4 IPv6 MAC MANAGED
eth0 192.168.1.100/24 52:54:00:ab:cd:ef true
web-02
NAME IPv4 IPv6 MAC MANAGED
eth0 192.168.1.200/24 52:54:00:12:34:56 true
JSON Output
Use --json to get the full API response:
$ osapi client node network interface list --target web-01 --json
{"results":[{"hostname":"web-01","status":"ok","interfaces":[
{"name":"eth0","dhcp4":false,"dhcp6":false,
"addresses":["192.168.1.100/24"],"gateway4":"192.168.1.1",
"mac_address":"52:54:00:ab:cd:ef","managed":true,"state":"up"}
]}],"job_id":"..."}
Flags
| Flag | Description | Default |
|---|---|---|
-T, --target | Target: _any, _all, hostname, or label (group:web) | _any |
-j, --json | Output raw JSON response |