[Desktop-packages] [Bug 82720] Re: ping doing LOTS of useless dns request

2017-08-02 Thread David Heidelberg
Can someone confirm these days - 2016 - 2017 ?

Best with https://github.com/iputils/iputils

Thank you!

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/82720

Title:
  ping doing LOTS of useless dns request

Status in iputils package in Ubuntu:
  Confirmed

Bug description:
  Description:
  When the user is doing "ping -f myhostname.tld", ping does a ipaddr->hostname 
request at EACH packet. Which is quite a lot when used with a -f option.
  Moreover it is quite useless as when used with -f, ping doesnt display the 
result of the ipaddr->hostname, but only a single dot per packet.

  - I discovered this when implementing a nss plugin (/etc/nsswitch.conf kindof 
stuff).
  - I dunno the actual impact of this, just seems like very inefficient.
- But if the nss plugin doesn't have an request cache, this will become 
quite a
  denial of service for this service

  -gjarboni's addition--

  Actually, this can be a lot worse in certain cases. For example, try
  pinging dnstest.bigjar.com. You can't reproduce this in text but what
  happens is:

  Pinging machine sends out ICMP echo request
  Pinging machine sends out in-addr.arpa DNS query (ip address -> DNS name)
  Pinging machine receives NXDOMAIN (no such record) from DNS server
   -- 5 to 10 seconds pass --
  Pinging machine prints:
  64 bytes from 12.173.97.1: icmp_seq=1 ttl=252 time=20.9 ms

  This happens for every packet. If you interrupt ping during the 5 to
  10 second period it will print the "64 bytes from ..." bit before
  returning to the shell prompt.

  I shudder to imagine someone trying to walk a user through testing
  connectivity with this bug. It also occurs in Debian 4.0.

  I have packet traces and a much more detailed write up if anyone is
  interested. This bug doesn't happen with all IP addresses that don't
  have a hostname associated with them, just certain ones, but it
  appears to specific to certain name servers.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 500730] Re: ping6 -Q "Flowinfo is not supported"

2017-08-02 Thread David Heidelberg
PLEASE CLOSE,

should be fixed for long time.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/500730

Title:
  ping6 -Q "Flowinfo is not supported"

Status in iputils package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: iputils-ping

  The man page suggests that the -Q option should set the Traffic Class octet 
in the IPv6 header. However when -Q is used, the following error is given:
  $ ping6 -Q 0x02 ::1
  Flowinfo is not supported.

  This is probably an upstream issue, but I'm not sure how to feed this
  back to whoever they are.

  Environmental info:

  $ lsb_release -rd
  Description:  Ubuntu 9.10
  Release:  9.10
  $ sudo apt-cache search ping6
  iputils-ping - Tools to test the reachability of network hosts
  $ sudo apt-cache policy iputils-ping
  iputils-ping:
Installed: 3:20071127-1build1
Candidate: 3:20071127-1build1
Version table:
   *** 3:20071127-1build1 0
  500 http://nz.archive.ubuntu.com karmic/main Packages
  100 /var/lib/dpkg/status
  $ uname -a
  Linux boots 2.6.31-16-generic #53-Ubuntu SMP Tue Dec 8 04:02:15 UTC 2009 
x86_64 GNU/Linux

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 957449] Re: clockdiff fails if its pid is over 65535

2017-08-02 Thread David Heidelberg
THIS BUG IS FIXED in every version _AFTER_ 08.11.2012 (commit
7eef4fa8946ae7dc235d1af86e5d6ded46f21835 ).

Please CLOSE.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/957449

Title:
  clockdiff fails if its pid is over 65535

Status in iputils package in Ubuntu:
  New

Bug description:
  Clockdiff calls getpid() to get a unique id and stores it into an int
  named "id".  This id is then stored into a 16 bit field in packets it
  sends out, and when it receives replies it compares the received id
  with the int "id" to determine if the packet should be discarded or
  not.

  If getpid() returns a pid higher than 65535, all packets are
  discarded.

  I fixed it with a patch like this:

  
  diff --git a/clockdiff.c b/clockdiff.c
  index 00b8d33..8a03419 100644
  --- a/clockdiff.c
  +++ b/clockdiff.c
  @@ -95,7 +95,7 @@ int in_cksum(u_short *addr, int len)
   
   
   int interactive = 0;
  -int id;
  +u_int16_t id;
   int sock;
   int sock_raw;
   struct sockaddr_in server;

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: iputils-clockdiff 3:20100418-2ubuntu1
  ProcVersionSignature: Ubuntu 2.6.35-32.66-generic 2.6.35.14
  Uname: Linux 2.6.35-32-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Fri Mar 16 22:32:57 2012
  InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release amd64 (20101007)
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: iputils

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 447136] Re: package iputils-tracepath 3:20071127-1build1 failed to install/upgrade: underprocess installerade post-installation-skript gav felkod 2

2017-08-02 Thread David Heidelberg
Maybe you could close this bug.

so please, CLOSE BUG.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/447136

Title:
  package iputils-tracepath 3:20071127-1build1 failed to
  install/upgrade: underprocess installerade post-installation-skript
  gav felkod 2

Status in iputils package in Ubuntu:
  New

Bug description:
  error occured during upgrade from ubuntu 9.04 to 9.10

  ProblemType: Package
  Architecture: i386
  Date: Fri Oct  9 12:40:48 2009
  DistroRelease: Ubuntu 9.10
  ErrorMessage: underprocess installerade post-installation-skript gav felkod 2
  Package: iputils-tracepath 3:20071127-1build1
  ProcVersionSignature: Ubuntu 2.6.31-12.41-generic
  SourcePackage: iputils
  Title: package iputils-tracepath 3:20071127-1build1 failed to 
install/upgrade: underprocess installerade post-installation-skript gav felkod 2
  Uname: Linux 2.6.31-12-generic i686

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 483803] Re: Spelling error in rdisc.c error message

2017-08-02 Thread David Heidelberg
Time to CLOSE this bug?

It's fixed UPSTREAM, long time ago.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/483803

Title:
  Spelling error in rdisc.c error message

Status in iputils package in Ubuntu:
  Confirmed
Status in iputils package in Debian:
  Fix Released

Bug description:
  Spelling error appears in error message displayed to the user.
  diff below is difference between original file and my own fixed version.

  
  diff rdisc.c rdisc.fc
  390c390
  < (void) fprintf(stderr, "Extra paramaters\n");
  ---
  > (void) fprintf(stderr, "Extra parameters\n");

  
  Version information
  apt-cache policy iputils-ping
  iputils-ping:
Installed: 3:20071127-1
Candidate: 3:20071127-1
Version table:
   *** 3:20071127-1 0
  500 http://archive.ubuntu.com intrepid/main Packages
  100 /var/lib/dpkg/status

  Ubuntu 8.10

  ProblemType: Bug
  Architecture: i386
  Dependencies:
   libgcc1 1:4.3.2-1ubuntu12
   gcc-4.3-base 4.3.2-1ubuntu12
   findutils 4.4.0-2ubuntu3
   libc6 2.8~20080505-0ubuntu7
  DistroRelease: Ubuntu 8.10
  Package: iputils-ping 3:20071127-1
  ProcEnviron:
   
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: iputils
  Uname: Linux 2.6.27-7-generic i686

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1680541] Re: iputils-ping ping -I IPADDRESS not working in iputils-s20150815

2017-08-02 Thread David Heidelberg
With latest -git version it works for me, could you check it? [1]

[1] https://github.com/iputils/iputils

Maybe ubuntu will need some backport.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/1680541

Title:
  iputils-ping ping -I IPADDRESS not working in iputils-s20150815

Status in iputils package in Ubuntu:
  New

Bug description:
  command 
  ping -I 10.10.10.254 10.10.10.1
  ping: unknown iface 10.10.10.254

  it works though when using -I Iface name (ex. eth2)

  
  Seen on:

  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=16.10
  DISTRIB_CODENAME=yakkety
  DISTRIB_DESCRIPTION="Ubuntu 16.10"
  NAME="Ubuntu"
  VERSION="16.10 (Yakkety Yak)"
  ID=ubuntu
  ID_LIKE=debian
  PRETTY_NAME="Ubuntu 16.10"
  VERSION_ID="16.10"
  HOME_URL="http://www.ubuntu.com/;
  SUPPORT_URL="http://help.ubuntu.com/;
  BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/;
  
PRIVACY_POLICY_URL="http://www.ubuntu.com/legal/terms-and-policies/privacy-policy;
  VERSION_CODENAME=yakkety
  UBUNTU_CODENAME=yakkety
  sqa@simubu16:~/devel/iputils$ uname -a
  Linux simubu16 4.8.0-22-generic #24-Ubuntu SMP Sat Oct 8 09:15:00 UTC 2016 
x86_64 x86_64 x86_64 GNU/Linux
  sqa@simubu16:~/devel/iputils$ ping -V
  ping utility, iputils-s20150815
  sqa@simubu16:~/devel/iputils$

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1700413] Re: ping deviation report negative number if rtt reaches 8 min.

2017-08-02 Thread David Heidelberg
Could you check latest upstream version? [1]

Lastest commit in branch negative_fix should make it OK :)

Please report, thank you!
 

[1] https://github.com/iputils/iputils/commits/negative_fix

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/1700413

Title:
  ping deviation report negative number if rtt reaches 8 min.

Status in iputils package in Ubuntu:
  New

Bug description:
  On Ubuntu 16.04.2: If ping time reaches 8 min. with over 600 echo
  requests on a lossy internet access, an overflow can happen resulting
  in a negative mdev value.

  The second bug triggered by this bug shows a minus sign after the
  decimal separator.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: iputils-ping 3:20121221-5ubuntu2
  ProcVersionSignature: Ubuntu 4.4.0-81.104-generic 4.4.67
  Uname: Linux 4.4.0-81-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
  ApportVersion: 2.20.1-0ubuntu2.6
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jun 25 22:08:25 2017
  SourcePackage: iputils
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 518966] Re: Wrong pitch and crackling sound with 5.1 output on Extigy USB card

2017-02-22 Thread David Heidelberg
I can confirm 16.04. Problem seems to be somewhere in ALSA/driver.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to alsa-driver in Ubuntu.
https://bugs.launchpad.net/bugs/518966

Title:
  Wrong pitch and crackling sound with 5.1 output on Extigy USB card

Status in alsa-driver package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: pulseaudio

  Since i upgraded to Karmic, my 5.1 sound output on my creative labs extigy 
USB card is broken.
  The previous release did work with alsa, and was working fine.
  Now with Pulseaudio, the sound is only working correctly with stereo output, 
with 5.1, the sound is crackling, and the pitch is too high.

  ProblemType: Bug
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 1: Extigy [Sound Blaster Extigy], device 0: USB Audio [USB Audio]
 Subdevices: 1/1
 Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  jean-luc   2681 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'HDMI'/'HDA ATI HDMI at 0xfe9fc000 irq 29'
 Mixer name : 'ATI R6xx HDMI'
 Components : 'HDA:1002aa01,00aa0100,00100100'
 Controls  : 4
 Simple ctrls  : 1
  Card0.Amixer.values:
   Simple mixer control 'IEC958',0
 Capabilities: pswitch pswitch-joined
 Playback channels: Mono
 Mono: Playback [on]
  Card1.Amixer.info:
   Card hw:1 'Extigy'/'Creative Technology Ltd. Sound Blaster Extigy at 
usb-:00:1a.0-2, full speed'
 Mixer name : 'USB Mixer'
 Components : 'USB041e:3000'
 Controls  : 23
 Simple ctrls  : 17
  Date: Mon Feb  8 19:48:40 2010
  DistroRelease: Ubuntu 9.10
  NonfreeKernelModules: fglrx
  Package: alsa-base 1.0.20+dfsg-1ubuntu5
  PackageArchitecture: all
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-19.56-generic
  SourcePackage: alsa-driver
  Uname: Linux 2.6.31-19-generic x86_64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/518966/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1582851] [NEW] ping - integrate debian changes

2016-05-17 Thread David Heidelberg
Public bug reported:

https://packages.debian.org/search?suite=sid=names=iputils

Debian changed iputils upstream to more recent and active, also there is
available UNIFIED ping, which allow using one ping for IPV4 and IPV6
(with keeping compatibility with ping and ping6 syntax).

This fork is active, maintained by me and developing.

Thank you
David

** Affects: iputils (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to iputils in Ubuntu.
https://bugs.launchpad.net/bugs/1582851

Title:
  ping - integrate debian changes

Status in iputils package in Ubuntu:
  New

Bug description:
  https://packages.debian.org/search?suite=sid=names=iputils

  Debian changed iputils upstream to more recent and active, also there
  is available UNIFIED ping, which allow using one ping for IPV4 and
  IPV6 (with keeping compatibility with ping and ping6 syntax).

  This fork is active, maintained by me and developing.

  Thank you
  David

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp