All public logs
Jump to navigation
Jump to search
Combined display of all available logs of I Will Fear No Evil. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:55, 17 June 2026 Chubbard talk contribs created page Openstack (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...")