Openstack: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 June 2026

  • curprev 10:5510:55, 17 June 2026Chubbard talk contribs 559 bytes +559 Created page with "== Openstack Notes and Examples == Find the subnets of the Floating IP addresses via loop * chatGPT derived * Note the sed to strip out the python style list result <pre> for NET in $(openstack network list --external -f value -c ID); do echo "Network: $(openstack network show "$NET" -f value -c name)" openstack network show "$NET" -f value -c subnets | sed "s/[][]//g; s/'//g; s/, /\n/g" | while read -r SUBNET; do openstack subnet show "$SUBNET" -f va..."