Hello all,
Is there a way to generate an IPv6 ULA /64 subnet subnet?
I’ve been looking in the docs but nowhere can I find how to do this.
Some Google-fu gave me this command, which works locally, but not when ran through ansible using ansible.builtin.shell:
printf “fd%x:%x:%x:%x::/64” “$(( $RANDOM/256 ))” “$RANDOM” “$RANDOM” “$RANDOM”
Anybody who has a solution or workaround for this?