[Bug 411688] Re: pulseaudio floods network with multicast packets

2019-01-06 Thread Daniel van Vugt
Closed for Ubuntu since the bug is closed upstream. If you feel this is
incorrect then please comment upstream
(https://gitlab.freedesktop.org/pulseaudio/pulseaudio/issues/505) and
then here.

** Changed in: pulseaudio (Ubuntu)
   Status: Confirmed => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688] Re: pulseaudio floods network with multicast packets

2019-01-02 Thread Bug Watch Updater
** Changed in: pulseaudio (Arch Linux)
   Status: Confirmed => Unknown

** Changed in: pulseaudio
   Status: Confirmed => Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Gitlab-migration
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has
been closed from further activity.

You can subscribe and participate further through the new bug through
this link to our GitLab instance:
https://gitlab.freedesktop.org/pulseaudio/pulseaudio/issues/505.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Freedesktop-u
Sure mp3 would be way better. I just dont know how rtp works. I think
its reasonable to use mp3 here. However I dont know how that works for
streams and with pulse.

Fixing the compression method would be the better fix, however a
specific ip/hostname would not hurt neither.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Tanu Kaskinen
Sending a wav file means a TCP connection between two computers. TCP
connections are the most common type of traffic, and the hardware is
optimized accordingly. UDP multicast is different, and apparently
network hardware is not necessarily as efficient with processing that
protocol. Comment #9 seems to suggest that the wifi specification itself
forces multicast to be inefficient, so it's not necessarily just the
hardware's fault.

Starting from PA version 5.0, module-rtp-send should not generate
traffic when nothing is playing (it can still be configured to play
silence, but paprefs doesn't configure the module that way). If you
observe different behaviour, please file a new bug and attach the output
of "pactl list".

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Tanu Kaskinen
(In reply to freedesktop from comment #17)
> Lowering the rate is possibly not a good idea as it results in worse
> quality. The format is by default "s16be" about which I have no idea what a
> different format would help. I do not know if the data can somehow be
> compress further, because this would definitely be an idea, but I dont know
> the procols internal.

The data can certainly be compressed. I don't know if you've ever
compared the sizes of mp3 and wav files. Typical compressed audio, when
using a lossy codec, requires perhaps one tenth of the bandwidth that
uncompressed audio requires, without too much effect on the audio
quality.

> So the only left option is to solve the routing. For my personal setup there
> is no way to fix this on the router side, so the sender pulse module needs
> to take care of it. Using an ip as destination works perfectly and would be
> an option to use (which should be added to paprefs). However I tried that
> the last days and due to dhcp my receiver always gets a new IP and using
> hostnames would be a better idea.
> 
> But the module does not seem to support hostnames. So I am wondering if this
> could be fixed quite simple or needs a whole more work to do.

Changing module-rtp-send to support hostnames doesn't sound terribly
complicated.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Freedesktop-u
You are right that this feature needs to be enabled first to make the
bug rise. However I do not think that documentating this bug/behavior
solves the problem. I do want to use music streaming, but I cannot do
this as my router routes the traffic into the WLAN.

Lowering the rate is possibly not a good idea as it results in worse
quality. The format is by default "s16be" about which I have no idea
what a different format would help. I do not know if the data can
somehow be compress further, because this would definitely be an idea,
but I dont know the procols internal.

So the only left option is to solve the routing. For my personal setup
there is no way to fix this on the router side, so the sender pulse
module needs to take care of it. Using an ip as destination works
perfectly and would be an option to use (which should be added to
paprefs). However I tried that the last days and due to dhcp my receiver
always gets a new IP and using hostnames would be a better idea.

But the module does not seem to support hostnames. So I am wondering if
this could be fixed quite simple or needs a whole more work to do.

Another option would be to possibly create a port on the localhost and
route that to the destination ip/name. And the kernel itself can do the
name resolution. However I have no idea about that, but this could at
least be a workaround to solve this issue.

Other opinions?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Tanu Kaskinen
To my knowledge RTP can carry pretty much any format. You said on the
mailing list that you want to use Kodi to receive the stream, and I
don't know what Kodi supports, but I would guess that it supports many
formats.

Don't get too excited about compressed audio, though. I'm not
volunteering to implement it, and it's probably pretty complicated to
integrate to PulseAudio.

In case someone is willing to take this task, the current "plan" (if you
can call it a plan - it's all very fuzzy at the moment) is to use
gstreamer to deal with the codecs, but in any case, please bring this
topic up on the mailing list before spending too much time implementing
it, so that there's an agreement about the design.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Tanu Kaskinen
*** Bug 98649 has been marked as a duplicate of this bug. ***

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread TB2
I know nothing about RTP, but from a user perspective, I have two questions:
 1) Transferring a WAV file over the network goes faster than real time (in 
terms of the audio contained within). Why should the network struggle with 
uncompressed RTP audio, then?
 2) Why are packets generated when nothing is played? If there is no audio 
activity in PA, there is no need to send any packets.
Apologies if this doesn't make sense, I'm talking purely as an end-user.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Piotr Gorski
All problems with RTP module flooding network, Wifi are caused by lack
of IGMP support in rtp_send module.

When pulseaudio with rtp_recv module is started proper IGMPv2 signalling
works like it should:

root@orangepione:~# tshark -i eth0 -Y "igmp"
Capturing on 'eth0'
117 6.950723148 192.168.254.141 -> 239.255.1.56 IGMPv2 46 Membership Report 
group 239.255.1.56
177 10.430705605 192.168.254.141 -> 239.255.1.56 IGMPv2 46 Membership Report 
group 239.255.1.56
215 13.660683494 192.168.254.141 -> 239.255.1.56 IGMPv2 46 Membership Report 
group 239.255.1.56

Pulseaudio creates Multicast group (I don't use default group). As IGMP
signalling is OK - IGMP capable switches enable that multicast group
only on ports that need it.

If pulseaudio is configured with rtp_send module - there is no IGMP
signalling.

Looking at code of module-rtp-recv.c we can find:

mr4.imr_multiaddr = ((const struct sockaddr_in*) sa)->sin_addr;
r = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, , 
sizeof(mr4));

IP_ADD_MEMBERSHIP tells kernel to join multicast group.

There is no such command is module-rtp-send.c

It needs fixing ASAP

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Tanu Kaskinen
I read through the comments, and to me it looks like module-rtp-send
doesn't have any flooding bug. The data rate of PCM audio is what it is,
and the network hardware isn't always able to handle it. Multicast RTP
is not enabled by default. If the user enables it, I don't know what we
could possibly do to not "flood" the network.

Since this is a common problem for people, there is certainly room for
improvement in the UI and documentation so that users don't get so
surprised when things don't work.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Tanu Kaskinen
Adding to my previous comment: it could be argued that the bug is that
we transmit PCM audio instead of compressed audio. Adding support for
compressed audio should help with the network stress. Does anyone
volunteer to implement this?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread Freedesktop-u
I've also noticed this in the most up to data pulse versions from
archlinux. I also cannot use a ttl of 1, as the router does not decrease
the value when routing into wlan, as it has the same subnet. Neither
does destination ip 24.0.0.1 help. From my side I have no chance to
change the router config, because the internet is provided by someone
else.

What works for me though is to stream the music directly to the
destination via destination_ip=192.168.178.x

I could also add a menu in paprefs that'd also adress the ip directly,
however this is more of a struggle because of the old gtk2 (if anyone
here is following the mailing list). It would be highly appreciated to
fix this bug in the module itself and reduce the payload somehow.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688]

2019-01-02 Thread kenn
I noticed the same bug in my system ( Ubuntu 14.04.5) while I was trying to set 
up pulseaudio server in Windows 10 over the local network. In my case network 
flooding occurs whenever I launch pavucontrol, upload traffics reaches up to 
200kb/s and it reduced the local network unusable. When I close it the network 
attack diminishes.
I added `unload-module module-rtp-send` into `/etc/pulse/default.pa` to 
workaround the bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688] Re: pulseaudio floods network with multicast packets

2018-09-30 Thread Daniel van Vugt
The bug is open with upstream. If you have any comments about it then
the best place to discuss is with upstream:

https://gitlab.freedesktop.org/pulseaudio/pulseaudio/issues/505

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688] Re: pulseaudio floods network with multicast packets

2018-09-24 Thread Tecfu
This ticket was opened 9 years ago. Bug still exists in Ubuntu 16.04.05.

/etc/pulse/default.pa
```
load-module module-null-sink sink_name=rtp
load-module module-rtp-send source=rtp.monitor
set-default-sink rtp
```

This feature still floods the network with packets. Disabling it isn't a
fix, its merely opting out of a broken feature.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 411688] Re: pulseaudio floods network with multicast packets

2017-12-07 Thread elhoir
please tell me "0" rights to "others" group does not affect root
account.


De: boun...@canonical.com <boun...@canonical.com> en nombre de alex dekker 
<411...@bugs.launchpad.net>
Enviado: martes, 5 de diciembre de 2017 18:03:58
Para: jfarroy...@hotmail.com
Asunto: [Bug 411688] Re: pulseaudio floods network with multicast packets

killall pulseaudio didn't fix it, but:

# chmod 0600 /usr/lib/pulse-10.0/modules/module-rtp-send.so

followed by killall pulseaudio again did and this will doubtless work until the 
package is updated.
I have no idea why this issue popped up today. I haven't made any changes to my 
sound settings for a while and the timestamp on 
~/.gconf/system/pulseaudio/modules/rtp-send is July 2012.

--
You received this bug notification because you are subscribed to the bug
report.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

Status in PulseAudio:
  Confirmed
Status in pulseaudio package in Ubuntu:
  Confirmed
Status in pulseaudio package in Arch Linux:
  Confirmed
Status in pulseaudio package in Debian:
  Fix Released

Bug description:
  Binary package hint: pulseaudio

  Since a karmic update last week, when pulseaudio is running it floods
  the network with multicast packets, to the point where the wireless
  interface I'm using is so flooded that no other network traffic can be
  transfered.

  Here is a snippet of tcpdump -i wlan 0 -n:
  ---8<---
  01:10:36.532748 IP (tos 0x10, ttl 1, id 23823, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d0f 4000 0111 2d6d 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f9f6 800a ee8e
 0x0020:  0071 a980 ed51 a42b    
 0x0030:         
 0x0040:       
  01:10:36.53 IP (tos 0x10, ttl 1, id 23824, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d10 4000 0111 2d6c 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f8b5 800a ee8f
 0x0020:  0071 aac0 ed51 a42b    
 0x0030:         
 0x0040:       
  01:10:36.547289 IP (tos 0x10, ttl 1, id 23825, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d11 4000 0111 2d6b 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f774 800a ee90
 0x0020:  0071 ac00 ed51 a42b    
 0x0030:         
 0x0040:       
  01:10:36.556725 IP (tos 0x10, ttl 1, id 23826, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d12 4000 0111 2d6a 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f633 800a ee91
 0x0020:  0071 ad40 ed51 a42b    
 0x0030:         
 0x0040:       
  01:10:36.561680 IP (tos 0x10, ttl 1, id 23827, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d13 4000 0111 2d69 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f4f2 800a ee92
 0x0020:  0071 ae80 ed51 a42b    
 0x0030:         
 0x0040:       
  01:10:36.568984 IP (tos 0x10, ttl 1, id 23828, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d14 4000 0111 2d68 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f3b1 800a ee93
 0x0020:  0071 afc0 ed51 a42b    
 0x0030:         
 0x0040:       
  01:10:36.576212 IP (tos 0x10, ttl 1, id 23829, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d15 4000 0111 2d67 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f270 800a ee94
 0x0020:  0071 b100 ed51 a42b    
 0x0030:         
 0x0040:       
  01:10:36.588095 IP (tos 0x10, ttl 1, id 23830, offset 0, flags [DF], proto 
UDP (17), length 1320)
  10.0.0.1.45232 > 224.0.0.56.46812: UDP, length 1292
 0x:  4510 0528 5d16 4000 0111 2d66 0a00 0001
 0x0010:  e000 0038 b0b0 b6dc 0514 f12f 800a ee95
 0x0020:  0071 b240 ed51 a42b    
 0x0030:         0

[Bug 411688] Re: pulseaudio floods network with multicast packets

2017-12-05 Thread alex dekker
killall pulseaudio didn't fix it, but:

# chmod 0600 /usr/lib/pulse-10.0/modules/module-rtp-send.so

followed by killall pulseaudio again did and this will doubtless work until the 
package is updated.
I have no idea why this issue popped up today. I haven't made any changes to my 
sound settings for a while and the timestamp on 
~/.gconf/system/pulseaudio/modules/rtp-send is July 2012.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688] Re: pulseaudio floods network with multicast packets

2017-11-15 Thread Mark Stosberg
I ran into this flooding today on Ubuntu 17.10. This "fixed" it, at
least temporarily:

pactl unload-module module-rtp-send

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 411688] Re: pulseaudio floods network with multicast packets

2017-05-14 Thread Bug Watch Updater
** Changed in: pulseaudio (Arch Linux)
   Status: Unknown => Confirmed

** Changed in: pulseaudio (Arch Linux)
   Importance: Unknown => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2017-03-07 Thread dgtlmoon
same here :( had to restart pulseaudio

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2017-03-07 Thread dgtlmoon
ubuntu 16.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2017-01-30 Thread Ka-Hing Cheung
just discovered this on 16.04, pactl unload-module module-rtp-send
"fixed" it

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2016-12-06 Thread Anton Bochkarev
** Changed in: pulseaudio (Arch Linux)
   Importance: Undecided => Unknown

** Changed in: pulseaudio (Arch Linux)
   Status: New => Unknown

** Changed in: pulseaudio (Arch Linux)
 Remote watch: None => freedesktop.org Bugzilla #44777

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2016-12-05 Thread Anton Bochkarev
This are upstream bug with Flooding packages to Network.
On pulseaudio 9.0 same problem, but upstream reqired to fix it up.

Distributive: ArchLinux.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2016-12-05 Thread Anton Bochkarev
** Also affects: pulseaudio (Arch Linux)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2016-10-12 Thread kenn
I am on Ubuntu 14.04.5 platform. I came across the same bug yesterday
while trying to set up pulseaudio server on Windows to send audio from
my Ubuntu laptop in local network and it rendered the home network
unusable. It costed me hours to locate the pest. Dos attack triggered by
pavucontrol, when I close it flooding diminishes.

I implemented the following workaround `pactl unload-module module-rtp-
send`

Nobody's  patched it for 8 years, so we have to live with this bug and
no RTP server until my learning curve reaches a higher level to overcome
it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2016-06-01 Thread phonky
Confirming this bug too. I falsely blamed the provider for an unusable
internet connection until I found out that it was my pulseaudio RTP
module. BLUSH.

Well I wanted to be sending via RTP so disabling the module is just a
temporary measure which makes me use Internet again LOL. But it surely
is a bug.

Pulsaeaudio 7.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688]

2016-04-27 Thread Marek Schimara
This bug is still present in Fedora 23 x86_64 and pulseaudio-7.1-1
My machine was sending ~ 180KB/s to 224.0.0.56 until I unchecked "Enable 
Multicast/RTP sender" in paprefs.

For peace of mind, I ended up adding "unload-module module-rtp-send
source=rtp.monitor" into /etc/pulse/default.pa

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2016-02-23 Thread markackerm...@gmail.com
Wow Thanks You

3 installs later just to find it creep into my system after a couple of
days, and nothing on the web unless you know the phrase "flooded" the
network.

And indeed using System Monitor it tricked me to believing it was other things, 
then finally who would have guessed - PulseAudio, after using it for 8 years,
indeed no Airtunes here, perhaps it started after installing Audacity - I don't 
know for sure, but kinda makes sense know.

indeed paprefs - Multicast/RTP - DISable "Multicast/RTP sender"
and/or gconf editor : pulseaudio -> modules -> rtp-send -Uncheck "enabled

How is this still a problem 5 years later - WOW

Thanks again

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2016-01-16 Thread Tom Hand
1292
21:23:54.167279 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.175354 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.183321 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.183352 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.191311 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.199334 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.207369 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.215507 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.223484 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.223511 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.231457 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.239429 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.247539 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.255704 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.255761 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.263824 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.271839 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.279915 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.287905 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.296111 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.296165 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.304186 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.312234 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.320274 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.328281 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.336299 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.336355 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.344343 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.352545 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.360652 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.368697 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.376741 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.376789 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.384836 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.392882 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.401123 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.409173 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.409226 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.734183 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.742281 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.742332 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.750402 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.758497 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.766561 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.774596 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.782753 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.782792 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.790864 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.798900 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292
21:23:54.806999 IP laptop.34779 > 224.0.0.56.46176: UDP, length 1292

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2015-08-21 Thread Solaris
I launched Pulseaudio preferences   --- under the tab
multicast/RTP, disabled Multicast/RTP sender .

 problem solved!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2015-05-08 Thread Maxim Kachur
The same here on two boxes.
My desktop is running Gentoo Linux and PulseAudio 5.0
My netbook is running Debian Jessie and PulseAudio 5.0

When I enable rtp sender even if I don't send any stream to RTP Sender
sinc my Wi-Fi connection is getting flooded.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2015-04-30 Thread Florian Fainelli
I just stumbled upon this problem on an upgrade from 14.10 to 15.04 and
this is absolutely killing everything on my network, completely crazy.
Using paprefs and disabling the RTP sender did the trick though.

Would be really nice if this was not enabled by default, this completely
kills WLAN networks which are probably how most people connect
nowadadys...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2014-12-15 Thread Alessio Treglia
** Bug watch added: LibreOffice Bugzilla #44777
   https://www.libreoffice.org/bugzilla/show_bug.cgi?id=44777

** Also affects: pulseaudio via
   https://www.libreoffice.org/bugzilla/show_bug.cgi?id=44777
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2014-06-10 Thread Bug Watch Updater
** Changed in: pulseaudio (Debian)
   Status: Incomplete = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2014-04-26 Thread Anton
I just encountered this same symptoms today in my newly upgraded ubuntu
(from LTS 12.04 to LTS 14.04): 100-150kB upload to 224.0.0.56 and my
wifi down to less than 1Mb effective bandwidth.

There were a few updates today which seem to have triggered the behaviour, as I 
had no problems before the update. 
But I cant seem to find the update history so I can't tell you which packages - 
it included a kernel update  reboot. I'm now running 3.13.0-24-generic.

Disabling rtp-send as per #5 works around the problem - and I'm not
planning on streaming any audio any time soon.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2013-06-30 Thread Dakota Schneider
Confirming what appears to be this bug on 12.10. Noticed constant
network usage of 150-200 Kb/sec outgoing, which was causing substantial
slowing over wifi interface. Checked aroung and there were multiple
connections spawned by pulseaudio.

Disabling network devices using paprefs completely eliminated pulseaudio
generated connections and stopped the passive network utilization.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2013-06-30 Thread Dakota Schneider
EDIT: Appears to be limited to Apple Airfoil/AirTunes compatibility
plugin thingie. Disabled just make discoverable Apple AirTunes devices
available locally and that cut the bandwidth. Normal PulseAudio network
devices did not seem to experience the same bug.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2013-06-30 Thread Dakota Schneider
EDIT: Checked Multicast/RTP: it appears the aforementioned plugin for
Apple AirTunes forces the Multicast/RTP settings. Enabling Multicast/RTP
independently of Apple AirTunes support yields same results. My
apologies for the numerous comments.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2013-05-30 Thread elhoir
hi there,

i have hit this bug usint Ubuntu 13.04, PulseAudio 3.0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2013-03-21 Thread Boris Baelen
Hi,

I would like to say that this problem is still there and is the reason
why I am not able to stream audio using RTP.

I have all other options disbaled, discover network audio, etc...

When I turn on RTP sender this happens:
21:52:26.935440 IP 192.168.0.235.48718  224.0.0.56.46234: UDP, length 1292
21:52:26.942691 IP 192.168.0.235.48718  224.0.0.56.46234: UDP, length 1292
21:52:26.949926 IP 192.168.0.235.48718  224.0.0.56.46234: UDP, length 1292
21:52:26.957141 IP 192.168.0.235.48718  224.0.0.56.46234: UDP, length 1292
21:52:26.964376 IP 192.168.0.235.48718  224.0.0.56.46234: UDP, length 1292
21:52:26.971580 IP 192.168.0.235.48718  224.0.0.56.46234: UDP, length 1292
21:52:26.978862 IP 192.168.0.235.48718  224.0.0.56.46234: UDP, length 1292
.. NON STOP.

IT will flood my entire network!

Is there a fix already? I am running Ubuntu 12.10 64bit.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2012-12-06 Thread dwpbike
it's alive and well.  i'm here on my second day of searching.  network
sends jump to 90+kb/s whenever i play audio, regardless of location,
source, and player.  have no idea how i tripped this feature, but will
attempt above fix.

10.04 running on hp touchsmart, which is neither touch nor smart.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2012-12-06 Thread dwpbike
removed check mark from enabled.  hint:  gconf-editor in terminal,
system - pulseaudio - modules - rtp-send

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2011-09-21 Thread Mattias Millbro
Experiencing this problem with Ubuntu 10.10 and pulseaudio 0.9.21-63
-gd3efa-dirty (no AirTunes connected, enabled or in any way connected
to the network).

- Network gets flooded with multicast packets.
- Sends audio with huge latency and glitches to my Ubuntu Server 11.04

paprefs configured as:
- Disabled Multicast/RTP reciever
- Enabled Multicast/RTP sender with seperate audio device for PulseAudio 
Multicast/RTP.
- No other network settings enabled.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2011-07-10 Thread Adam Bolte
I think I just saw this issue also. I was seeing a lot of traffic over
my wireless NIC going directly to one of three Apple AirTunes devices on
my work network (the one I had connected to previously). Even though I
set Internal Audio Analog Stereo under Sound Preferences/Output tab -
so the AirPort was not selected, PulseAudio still was going nuts with
traffic to it.

Before I had a chance to look into it further, another sysadmin had
password-protected the device (apparently others were complaining that
they could no longer connect to it to play music and rebooting the
AirPort multiple times wasn't helping) and I could immediately see the
outgoing traffic on the laptop stopped.

I was so excited that I could finally play audio to these horrible
proprietary devices (purchasing them wasn't my decision), but now it's
password-protected I'm not sure PulseAudio can play to the device any
more - even though I know what the device password is.

I should point out that the laptop in question was actually running
Debian testing, so this likely needs to be dealt with upstream by the PA
guys.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/411688/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2011-04-20 Thread ronsonk
My issue survived the upgrade to Natty Beta 2.


- Acer AspireOne netbook
- only occurs (for me) on a network with an Apple device attached configured to 
receive streaming audio i.e. I don't see the behaviour when connected to other 
networks
- only occurs using WLAN0, not ETH0
- problem did not occur under prior versions (10.10 back to 9.10)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2011-04-12 Thread ronsonk
I've installed the Natty Beta and am experiencing the same thing.
Multicast/RTP is unchecked in Pulseaudio prefs, however, it's still
spewing.

I have an Airport Express on my network as an audio gateway.  All the
packets are targeted at it.  185 KIB/s.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2011-03-23 Thread Bug Watch Updater
** Changed in: pulseaudio (Debian)
   Status: Unknown = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2011-03-22 Thread Joel Wiramu Pauling (aenertia)
** Bug watch added: Debian Bug tracker #522598
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522598

** Also affects: pulseaudio (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522598
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2011-03-20 Thread Andrew Higginson
+1 here using latest natty.  Surprised this hasn't been dealt with yet
:(

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/411688

Title:
  pulseaudio floods network with multicast packets

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-09-28 Thread Tim Wright
Could you possibly explain why is this Low importance?
The bug means that anyone running Pulseaudio (which is everyone, correct?) is 
essentially committing a denial-of-service attack on all machines on their 
network (unless this only applies to certain configurations). Surely this is at 
the very least a Major bug?

I just upgraded to Karmic on my test system and hit the exact same
problem.

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 411688] Re: pulseaudio floods network with multicast packets

2009-09-28 Thread Daniel T Chen
On Mon, Sep 28, 2009 at 7:07 PM, Tim Wright t...@splhi.com wrote:
 Could you possibly explain why is this Low importance?

There's a known workaround; it's not reproducible in a default install
of Karmic; it's not reproducible in a dist-upgrade to Karmic from a
default install of Jaunty.

 The bug means that anyone running Pulseaudio (which is everyone,
correct?) is essentially committing a denial-of-service attack on all
machines on their network (unless this only applies to certain
configurations). Surely this is at the very least a Major bug?

See above - only applies to certain configurations. Upstream work is
addressing this symptom.

No, it's not anymore a major bug than running a certain bash script
without proper ulimits set would be.

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-09-28 Thread Tim Wright
Fascinating. I did an apt-get install padevchooser which was not
installed after the system updated to Karmic and that seemed to turn
rtp-send off and the system started behaving. That install pulled in
paprefs and zeroconf support.

On reboot it started spewing again, and going into paprefs, rtp-send was
enabled. However, paprefs allowed me to disable it and on rebooting
after doing so, it is still disabled. Any attempt to enable it causes
the looping behaviour. It seems to be taking its own broadcasts and
responding to them.

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-09-28 Thread Tim Wright
Thank you Daniel. That clarifies it. Is there any debug information I
can collect that would be helpful. On my test system (AMD Athlon-64,
forcedeth NIC driver), trying to enable rtp-send immediately causes the
problem, so I have a good place to repro :-)

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-09-01 Thread Pedro Villavicencio
** Changed in: pulseaudio (Ubuntu)
   Importance: Undecided = Low

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-08-23 Thread darthanubis
Same issue observed here.

** Changed in: pulseaudio (Ubuntu)
   Status: New = Confirmed

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] [NEW] pulseaudio floods network with multicast packets

2009-08-10 Thread Oded Arbel
Public bug reported:

Binary package hint: pulseaudio

Since a karmic update last week, when pulseaudio is running it floods
the network with multicast packets, to the point where the wireless
interface I'm using is so flooded that no other network traffic can be
transfered.

Here is a snippet of tcpdump -i wlan 0 -n:
---8---
01:10:36.532748 IP (tos 0x10, ttl 1, id 23823, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d0f 4000 0111 2d6d 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f9f6 800a ee8e
0x0020:  0071 a980 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.53 IP (tos 0x10, ttl 1, id 23824, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d10 4000 0111 2d6c 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f8b5 800a ee8f
0x0020:  0071 aac0 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.547289 IP (tos 0x10, ttl 1, id 23825, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d11 4000 0111 2d6b 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f774 800a ee90
0x0020:  0071 ac00 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.556725 IP (tos 0x10, ttl 1, id 23826, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d12 4000 0111 2d6a 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f633 800a ee91
0x0020:  0071 ad40 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.561680 IP (tos 0x10, ttl 1, id 23827, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d13 4000 0111 2d69 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f4f2 800a ee92
0x0020:  0071 ae80 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.568984 IP (tos 0x10, ttl 1, id 23828, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d14 4000 0111 2d68 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f3b1 800a ee93
0x0020:  0071 afc0 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.576212 IP (tos 0x10, ttl 1, id 23829, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d15 4000 0111 2d67 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f270 800a ee94
0x0020:  0071 b100 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.588095 IP (tos 0x10, ttl 1, id 23830, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d16 4000 0111 2d66 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 f12f 800a ee95
0x0020:  0071 b240 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.590645 IP (tos 0x10, ttl 1, id 23831, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d17 4000 0111 2d65 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 efee 800a ee96
0x0020:  0071 b380 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.605081 IP (tos 0x10, ttl 1, id 23832, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d18 4000 0111 2d64 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 eead 800a ee97
0x0020:  0071 b4c0 ed51 a42b    
0x0030:         
0x0040:       
01:10:36.612355 IP (tos 0x10, ttl 1, id 23833, offset 0, flags [DF], proto UDP 
(17), length 1320)
10.0.0.1.45232  224.0.0.56.46812: UDP, length 1292
0x:  4510 0528 5d19 4000 0111 2d63 0a00 0001
0x0010:  e000 0038 b0b0 b6dc 0514 ed6c 800a ee98
0x0020:  0071 b600 ed51 a42b    
0x0030:         

[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-08-10 Thread Oded Arbel

** Attachment added: Pulseaudio network preferences are active but cannot be 
disabled
   
http://launchpadlibrarian.net/30129938/Screenshot-PulseAudio%20Preferences.png

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-08-10 Thread Oded Arbel
The multicast/RTP configuration is also disabled (see screenshot) - The
only configuration accessible is the simultaneous output.

** Attachment added: Screenshot-PulseAudio Preferences-2.png
   
http://launchpadlibrarian.net/30129966/Screenshot-PulseAudio%20Preferences-2.png

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-08-10 Thread Oded Arbel
See attached file with pulseaudio log debug mode running for a couple of
minutes. It starts flooding the network immediately as it goes up, it
then later started with the alsa-sink rewind stuff, which I'm pretty
sure is not related.

** Attachment added: pa-debug.log
   http://launchpadlibrarian.net/30130383/pa-debug.log

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-08-10 Thread Oded Arbel
I get this in the syslog - though it might be relevant:
---8---
Aug 11 01:26:28 sepiroth pulseaudio[13073]: module-rtp-recv.c: Detected RTP 
packet loop!
---8---

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 411688] Re: pulseaudio floods network with multicast packets

2009-08-10 Thread Oded Arbel
If I use padevchooser to specifically choose the internal audio as both
default sink and default source, the network traffic is reduces somewhat
but not by a lot (about 10%~20%).

I can cause pulseaudio to stop flooding the network completely by
disabling the rtp-send module using gconf. I'll keep it disabled for now
(as I do not have a real need at the moment for audio over the network)
unless you want me to debug something.

-- 
pulseaudio floods network with multicast packets
https://bugs.launchpad.net/bugs/411688
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs