Unicast, Multicast, Anycast, Broadcast — four ways to deliver packets to their destinations. Understanding these is foundational to subnetting, IPv6, routing, and network troubleshooting.
Example flow:
Any valid IP destination address that belongs to a single host.
| Address | Used For |
|---|---|
| 224.0.0.1 | All hosts on segment |
| 224.0.0.2 | All routers on segment |
| 224.0.0.5 | All OSPF routers |
| 224.0.0.6 | OSPF DR/BDR routers |
| 224.0.0.9 | RIPv2 routers |
| Attribute | Unicast | Broadcast | Multicast | Anycast |
|---|---|---|---|---|
| Targets | 1 specific host | All hosts on segment | Group of subscribers | Nearest instance |
| IP Range | Any standard host IP | x.x.x.255 or 255.255.255.255 | 224.0.0.0 – 239.255.255.255 (Class D) | Same IP on multiple hosts |
| Crosses Routers? | Yes | NO | Yes (with IGMP) | Yes (via BGP) |
| IPv6 Support? | Yes | NO — eliminated | Yes | Yes (native) |
| Example | Web browsing, SSH | ARP, DHCP Discover | IPTV, OSPF updates | DNS root, CDN edge |
| Efficiency | One copy per receiver — scales poorly for groups | All devices process — high CPU on large segments | One send, network replicates — efficient | Nearest server handles load — efficient |
Read each scenario and identify the traffic type before clicking to reveal.