6 lines
125 B
Python
Executable file
6 lines
125 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import random
|
|
|
|
suffix = ':'.join([random.randbytes(2).hex() for _ in range(4)])
|
|
print(f'fe80::{suffix}')
|