All systems use an IP of the host on the desired physical interface:

    1. const socket = dgram.createSocket('udp4');
    2. socket.bind(1234, () => {
    3. socket.setMulticastInterface('10.0.0.2');
    4. });