Friday, January 6, 2012

CONVERT IPV4 TO IPV6

Here, I will convert the address 192.168.25.234
First we divide each octet by 16 and write down the remainder, primary school maths! 
192 ÷ 16 = 12 remainder 0
168 ÷ 16 = 10 remainder 8
25 ÷ 16 = 1 remainder 9
234 ÷ 16 = 14 remainder 10
We also know that HEX has the following Values
A = 10
B = 11
C = 12
D = 13
E = 14
F = 15
So we can write 192.168.25.234 into HEX like so… C0A8:19EA

No comments:

Post a Comment