Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multicast group join IGMP request not transmitted #35

Open
Druuka opened this issue Jul 23, 2024 · 0 comments
Open

Multicast group join IGMP request not transmitted #35

Druuka opened this issue Jul 23, 2024 · 0 comments

Comments

@Druuka
Copy link

Druuka commented Jul 23, 2024

In sketch with and sACN library or in simple sketch with no added library Native Ethernet library does not transmit the required multicast subscription packet. If the multicast transmitter is link local the sketch will receive the packets but if not it will to see any packets. Adding another controller on the same switch which properly joins the multicast group "fixes" the problem.

Replacing Native Ethernet with QNEthernet library solves the issue but would prefer to use Native Ethernet library.

IPAddress multicastIP(239, 255, 0, 7); // Multicast IP address
unsigned int multicastPort = 5568; // Multicast port
// Begin UDP and join multicast group
if (Udp.beginMulticast(multicastIP, multicastPort)) {
Serial.println("Joined multicast group successfully.");
} else {
Serial.println("Failed to join multicast group.");
}

@Druuka Druuka changed the title Multicast group join IMGP request not transmitted Multicast group join IGMP request not transmitted Jul 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant