Hello,

Not sure this will be the fix for your issue, but worth the try:

For docker and other stuff, the normal NIC does't work.. so you need
to enable promisc at VBOX level, and use a different nic

config.vm.provider "virtualbox" do |vb|
# vb.gui = true
vb.customize ["modifyvm", :id, "--memory", "2048"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"]
vb.customize ["modifyvm", :id, "--nictype2", "Am79C973"]
vb.customize ["modifyvm", :id, "--nicpromisc3", "allow-all"]
vb.customize ["modifyvm", :id, "--nictype3", "Am79C973"]
end

Give it a try.




On Sat, May 9, 2015 at 8:09 PM, Klaus Kobald <[email protected]> wrote:
> I have a vagrant machine in bridged mode inet addr:192.168.0.25 (eth1)
>
> config.vm.network "public_network"
>
> And a wdtv upnp player at 192.168.0.12
>
> so everything is in the same subnet.
>
>
> via php sockets I am sending a broadcast message to
>
> 239.255.255.250:1900
>
>
> what should happen now, is that all upnp devices send back their
> information. But I am getting no answer at all.
>
> So guess there has to be done some more config magic?
>
>
> (Yes, it works, when I run the same code from outside the vagrant box)
>
>
> Any idea?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Vagrant" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to