From owner-freebsd-stable Mon Oct 14 21:12:48 2002 Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91A6637B401 for ; Mon, 14 Oct 2002 21:12:46 -0700 (PDT) Received: from snipe.mail.pas.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 167F643E8A for ; Mon, 14 Oct 2002 21:12:46 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from sdn-ap-013dcwashp0328.dialsprint.net ([63.188.129.74] helo=moo.holy.cow) by snipe.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 181J4T-0002wL-00 for freebsd-stable@freebsd.org; Mon, 14 Oct 2002 21:12:41 -0700 Received: by moo.holy.cow (Postfix, from userid 1001) id D2D85A813; Tue, 15 Oct 2002 00:15:22 -0400 (EDT) Date: Tue, 15 Oct 2002 00:15:22 -0400 From: parv To: f-stable Subject: sudden ppp error -- "Change route failed: errno: Disc quota exceeded" Message-ID: <20021015041522.GA719@moo.holy.cow> Mail-Followup-To: f-stable Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG after upgrading to 4.7-stable (from 4.6.2), yesterday networking via ppp (over olde modem) suddenly stopped w/ this message... Oct 14 02:42:10 moo ppp[444]: tun0: Warning: 0.0.0.0/0: Change route failed: errno: Disc quota exceeded ...above message follows the breaking (when i realize that nothing is coming in or going out) of ppp connection... pppctl /var/run/internet quit; killall ppp; ifconfig tun0 down ...i can't imagine that above message could be a result of full disk/slice since there is plenty of space. my curiosity pointed to the end of src/usr.sbin/ppp/route.c starting from line line 878... 878 rtmes.m_rtm.rtm_msglen = p - (char *)&rtmes; 879 880 wb = ID0write(s, &rtmes, rtmes.m_rtm.rtm_msglen); 881 if (wb < 0) { 882 ncprange_setsa(&ncpdst, dst, mask); 883 884 log_Printf(LogTCPIP, "rt_Update failure:\n"); 885 log_Printf(LogTCPIP, "rt_Update: Dst = %s\n", ncprange_ntoa(&ncpdst)); 886 887 if (rtmes.m_rtm.rtm_errno == 0) 888 log_Printf(LogWARN, "%s: Change route failed: errno: %s\n", 889 ncprange_ntoa(&ncpdst), strerror(errno)); 890 else 891 log_Printf(LogWARN, "%s: Change route failed: %s\n", 892 ncprange_ntoa(&ncpdst), strerror(rtmes.m_rtm.rtm_errno)); ...could anybody tell me in english what is going on? i couldn't find anything on google. - parv -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message