Date: Tue, 15 Oct 2002 00:15:22 -0400 From: parv <parv_fm@emailgroups.net> To: f-stable <freebsd-stable@freebsd.org> Subject: sudden ppp error -- "Change route failed: errno: Disc quota exceeded" Message-ID: <20021015041522.GA719@moo.holy.cow>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021015041522.GA719>
