aboutsummaryrefslogtreecommitdiff
path: root/package/base-files/files/etc/uci-defaults/12_network-generate-ula
blob: 060d0ef640d54238570ae6a805c8836ec692be0e (plain)
1
2
3
4
5
6
7
8
9
[ "$(uci -q get network.globals.ula_prefix)" != "auto" ] && exit 0

uci -q batch <<-EOF >/dev/null
	set network.globals.ula_prefix="$(hexdump -vn 5 -e '"fd" 1/1 "%02x:" 2/2 "%x:"' /dev/urandom):/48"
	commit network
EOF

exit 0