Python : Convert IPv6 address to decimal and back to IPv6
Problem :
Need to convert IPv6 address to decimal number and convert back to IPv6. How to do that?
Solution :
Use the netaddr.IPAddress()
function to convert IPv6 to decimal and back to IPv6.
For example :
// convert decimal number to IPv6 address
import netaddr
print str(netaddr.IPAddress(338288524927261089654163772891438416681))
Output :
fe80::202:b3ff:fe1e:8329
// convert IPv6 address to decimal number
import netaddr
print int(netaddr.IPAddress('fe80::202:b3ff:fe1e:8329'))
Output :
338288524927261089654163772891438416681
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.4k Convert JSON to CSV in Golang
+7k Golang : Of hash table and hash map
+12.6k Golang : Convert int(year) to time.Time type
+8.3k Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
+15.4k Golang : How to login and logout with JWT example
+17.9k Golang : How to remove certain lines from a file
+39.7k Golang : Convert to io.ReadSeeker type
+4.7k JQuery : Calling a function inside Jquery(document) block
+8.8k Golang : How to use Gorilla webtoolkit context package properly
+40.7k Golang : How to check if a string contains another sub-string?
+8.6k Golang : Accept any number of function arguments with three dots(...)
+8.6k Yum Error: no such table: packages