In my test case, I need to send out NA with random IPv6 source address and fixed prefix. For example:
fixed prefix 2001::cafe:/64. The remainder of the address should be random.
How to achieve in Python or in Scapy?
|
feedback
|
| |||
|
feedback
|
|
Not sure from the question which parts of the address you want to be random. I'm assuming the last 2 bytes. Using the python netaddr library:
Sample output:
The advantage over simple string formatting, is it would be easy to customize the starting address, random bit len. Also the netaddr classes have many useful attr, e.g. the broadcast address of the network. | ||||
|
feedback
|
|
Just using string formatting:
| |||
|
feedback
|