From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Dumazet Subject: Re: regression when connecting to ipv6 localhost Date: Sun, 14 Oct 2012 22:25:14 +0200 Message-ID: <1350246314.21172.17139.camel@edumazet-glaptop> References: <1350242941.21172.17023.camel@edumazet-glaptop> <1350244485.21172.17077.camel@edumazet-glaptop> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org To: Jan Hinnerk Stosch Return-path: Received: from mail-ea0-f174.google.com ([209.85.215.174]:59095 "EHLO mail-ea0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753824Ab2JNUZT (ORCPT ); Sun, 14 Oct 2012 16:25:19 -0400 Received: by mail-ea0-f174.google.com with SMTP id c13so1002011eaa.19 for ; Sun, 14 Oct 2012 13:25:18 -0700 (PDT) In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: On Sun, 2012-10-14 at 21:57 +0200, Jan Hinnerk Stosch wrote: > 2012/10/14 Eric Dumazet : > > On Sun, 2012-10-14 at 21:48 +0200, Jan Hinnerk Stosch wrote: > > > >> ntp.conf is (without comments): > >> server fritz.box iburst > >> restrict default noquery nopeer nomodify > >> restrict 127.0.0.1 > >> restrict ::1 > >> driftfile /var/lib/ntp/ntp.drift > >> logfile /var/log/ntp.log > >> > >> "lsof -p `pidof ntpd`" gives nothing > >> > >> and "ntpq -p ::1" results in the same timeout error "::1: timed out, > >> nothing received > >> ***Request timed out". > > > > So your ntpd is not running ? > > > > ps aux | grep ntpd > > > > > > > > No, of course it is running: > ntp 368 0.0 0.0 31288 2128 ? Ss 16:51 0:00 > /usr/bin/ntpd -g -u ntp:ntp Hmm pidof ntpd should give you the pid of ntpd process : 368 So try lsof -p 368 # instead of lsof -p `pidof ntpd`