I am thinking of implementing anycast. I have 2 network areas with ipv4 addressing schemes. IPv6 addressing scheme is used for anycast. So please give me some tips for implementing anycast mechanism in IPv4 addressing scheme.
Asked
Active
Viewed 152 times
-1
-
It depends on what you want to do with it. Do you want the devices on the same LAN, or do you want them on different networks? – Ron Maupin Feb 01 '16 at 14:58
-
I would have anycast for different networks. – Vijay Rana Feb 02 '16 at 10:12
1 Answers
1
What IPv6 can do that IPv4 doesn't is anycast (identical addresses) on the same network.
Setting up anycast for IPv4 and IPv6 when on different networks is easy. You just let the routing protocol decide which network is closest. The same network is advertised from multiple places, and the routing protocol metrics will determine to which network your traffic gets sent. Should one of the networks, or a path to one of the networks fail, all the traffic destined for addresses on that network will automatically be sent to the identical, alternate network.

Ron Maupin
- 6,180
- 4
- 29
- 36
-
Ohh yes, that explains it. Ok just out of curiosity so when in the case of set of nodes in the same network how anycast can be implemented? – Vijay Rana Feb 03 '16 at 10:07