answersLogoWhite

0

In IPv6, the same result can be achieved by sending a packet to the link-local all nodes multicast group at address ff02::1, which is analogous to IPv4 multicast to address 224.0.0.1.

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga

Add your answer:

Earn +20 pts
Q: Why broadcast method is not implement in Ipv6?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Can interface implement the other interface?

No. An interface cannot implement another interface, it can only just extend it. Because, an interface cannot implement any method as it has no method body declarations.


How do you have the tunnel interface and the IPv6 Loopback interface as the only connections running IPv6?

by unchecking the check box of IPv6 in local area network properties


What must you use to span the gap in IPv6 support and access the IPv6 Internet?

IPv6 is not a separate Internet. It is a separate type of address. Machines can have both IPv4 and IPv6 addresses simultaneously. Many web servers already do this, and nearly all of the Internet's backbone routers have both types of address. Theoretically, if you are using IPv4 or IPv6, your data will take the same path, across the same hardware, to its destination. However, you may not be able to get an IPv6 address from your Internet Service Provider, perhaps since they are not yet IPv6-ready (often the case with smaller ISPs). In this case, you can setup a 6-to-4 tunnel which connects your IPv6 network inside your home to the IPv4 network of your ISP. Presumably, that ISP will also have a 4-to-6 tunnel allowing your packets to make their way to the IPv6 destination. That being said, if you know the IPv4 address of the same server, you can just use that without the need for IPv6. Only in the rare cases where servers only have an IPv6 address do you need to ensure that your packets come from an IPv6 address, then travel to the destination somehow (directly across an IPv6 network, or using tunnels as described above).


What's a JAVA program for Euler's totient function?

Implement this method: public static int totient(int n) { int count = 0; for(int i = 1; i < n; i++) if(gcd(n,i) == 1) count++; return count; } You can implement your own gcd(int a, int b) method, or find one of the many online.


Java program to check A is divisible by B?

Implement this method: public static boolean isDivisible(int a, int b) { if(a % b == 0) { return true; } else { return false; } }