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?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted
import random   
M = 16**4
"2001:cafe:" + ":".join(("%x" % random.randint(0, M) for i in range(6)))
link|improve this answer
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:

import random
from netaddr.ip import IPNetwork, IPAddress

random.seed()
ip_a = IPAddress('2001::cafe:0') + random.getrandbits(16)
ip_n = IPNetwork(ip_a)
ip_n.prefixlen = 64

print ip_a
print ip_n

Sample output:

2001::cafe:c935
2001::cafe:c935/64

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.

link|improve this answer
feedback

Just using string formatting:

import random

random.seed()
print '2001::cafe:%x/64' % random.getrandbits(16)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.