vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, I have an OpenBSD 3.2 box. It's an AMD K5 150Mhz, 21Mb RAM with a D-Link DFE-530TX NIC. I run a FTP on it. It can run smothly for months, until there is a lot of traffic on it. The network just dies when that happens. The machine seems tu run normal, but no traffic can go in or out. I can't even access with SSH. But when I log in locally on the machine and reboot the thing, it works again until the next time the networktraffic-load gets very high. Does anyone know what causes this? I don't even know how to troubleshoot this problem. Where do I begin? Does anyone know how to fix this? Any suggestions are welcome. |
| |||
| DJ_Farid wrote: > Hi, > I have an OpenBSD 3.2 box. It's an AMD K5 150Mhz, 21Mb RAM with a > D-Link DFE-530TX NIC. I run a FTP on it. > It can run smothly for months, until there is a lot of traffic on it. > The network just dies when that happens. The machine seems tu run > normal, but no traffic can go in or out. I can't even access with SSH. > But when I log in locally on the machine and reboot the thing, it > works again until the next time the networktraffic-load gets very > high. > Does anyone know what causes this? I don't even know how to > troubleshoot this problem. Where do I begin? Does anyone know how to > fix this? > > Any suggestions are welcome. Is the system overclocked? Does the processor fan work properly? I've seen similar faults on a system where the processor fan did not work anymore. EJ -- Remove the obvious part (including the dot) for my email address |
| |||
| erik <erik@geenspam.vanwesten.net> wrote in message news:<3eff3654$0$49112$e4fe514c@news.xs4all.nl>... > DJ_Farid wrote: > > > Hi, > > I have an OpenBSD 3.2 box. It's an AMD K5 150Mhz, 21Mb RAM with a > > D-Link DFE-530TX NIC. I run a FTP on it. > > It can run smothly for months, until there is a lot of traffic on it. > > The network just dies when that happens. The machine seems tu run > > normal, but no traffic can go in or out. I can't even access with SSH. > > But when I log in locally on the machine and reboot the thing, it > > works again until the next time the networktraffic-load gets very > > high. > > Does anyone know what causes this? I don't even know how to > > troubleshoot this problem. Where do I begin? Does anyone know how to > > fix this? > > > > Any suggestions are welcome. > > Is the system overclocked? Does the processor fan work properly? I've > seen similar faults on a system where the processor fan did not work > anymore. > > EJ The system is not overclocked. The fan works properly. Could it be a heat related problem? The machine is not hot, but it could be colder though... |
| |||
| DJ_Farid wrote: > erik <erik@geenspam.vanwesten.net> wrote in message > news:<3eff3654$0$49112$e4fe514c@news.xs4all.nl>... >> DJ_Farid wrote: >> >> > Hi, >> > I have an OpenBSD 3.2 box. It's an AMD K5 150Mhz, 21Mb RAM with a >> > D-Link DFE-530TX NIC. I run a FTP on it. >> > It can run smothly for months, until there is a lot of traffic on >> > it. The network just dies when that happens. The machine seems tu >> > run normal, but no traffic can go in or out. I can't even access >> > with SSH. But when I log in locally on the machine and reboot the >> > thing, it works again until the next time the networktraffic-load >> > gets very high. >> > Does anyone know what causes this? I don't even know how to >> > troubleshoot this problem. Where do I begin? Does anyone know how >> > to fix this? >> > >> > Any suggestions are welcome. >> >> Is the system overclocked? Does the processor fan work properly? I've >> seen similar faults on a system where the processor fan did not work >> anymore. >> >> EJ > > The system is not overclocked. The fan works properly. > Could it be a heat related problem? The machine is not hot, but it > could be colder though... Could be. Start measuring temperatures. Check the ram, maybe you have a faulty ram somewhere. EJ -- Remove the obvious part (including the dot) for my email address |
| |||
| On Sat, 05 Jul 2003 23:49:12 +1200, erik wrote: > DJ_Farid wrote: > >> erik <erik@geenspam.vanwesten.net> wrote in message >> news:<3eff3654$0$49112$e4fe514c@news.xs4all.nl>... >>> DJ_Farid wrote: >>> >>> > Hi, >>> > I have an OpenBSD 3.2 box. It's an AMD K5 150Mhz, 21Mb RAM with a >>> > D-Link DFE-530TX NIC. I run a FTP on it. It can run smothly for >>> > months, until there is a lot of traffic on it. The network just dies >>> > when that happens. The machine seems tu run normal, but no traffic >>> > can go in or out. I can't even access with SSH. But when I log in >>> > locally on the machine and reboot the thing, it works again until >>> > the next time the networktraffic-load gets very high. Does anyone >>> > know what causes this? I don't even know how to troubleshoot this >>> > problem. Where do I begin? Does anyone know how to fix this? >>> > >>> > Any suggestions are welcome. OpenBSD allocates a fixed number of network buffers and it is my experience that once that number is exceeded the whole network stack stops working. FreeBSD is basically the same. Look for errors in /var/log/messages. It would be better behaviour if the kernel would drop packets while there are no spare buffers and later recover when some become available. You can help by increasing the number of network buffers either by setting the option and recompiling the kernel or by using the config utility. See the FAQ chapter 11. RH. |
| |||
| Richard Haakma <richard@ricks2.kc.net.nz> wrote in message news:<pan.2003.07.07.20.11.57.286609.1772@ricks2.k c.net.nz>... > On Sat, 05 Jul 2003 23:49:12 +1200, erik wrote: > > > DJ_Farid wrote: > > > >> erik <erik@geenspam.vanwesten.net> wrote in message > >> news:<3eff3654$0$49112$e4fe514c@news.xs4all.nl>... > >>> DJ_Farid wrote: > >>> > >>> > Hi, > >>> > I have an OpenBSD 3.2 box. It's an AMD K5 150Mhz, 21Mb RAM with a > >>> > D-Link DFE-530TX NIC. I run a FTP on it. It can run smothly for > >>> > months, until there is a lot of traffic on it. The network just dies > >>> > when that happens. The machine seems tu run normal, but no traffic > >>> > can go in or out. I can't even access with SSH. But when I log in > >>> > locally on the machine and reboot the thing, it works again until > >>> > the next time the networktraffic-load gets very high. Does anyone > >>> > know what causes this? I don't even know how to troubleshoot this > >>> > problem. Where do I begin? Does anyone know how to fix this? > >>> > > >>> > Any suggestions are welcome. > > OpenBSD allocates a fixed number of network buffers and > it is my experience that once that number is exceeded the > whole network stack stops working. FreeBSD is basically > the same. Look for errors in /var/log/messages. It would > be better behaviour if the kernel would drop packets while > there are no spare buffers and later recover when some > become available. You can help by increasing the number > of network buffers either by setting the option and recompiling > the kernel or by using the config utility. See the FAQ > chapter 11. > > RH. I checked /var/log/messages... I know the exact point in time when it happened the last time. So it was not a big deal to trace it in the file. There is nothing there. It only says something about something that happened 6 hours before. Then the next thing is that I rebooted the server (after the problem). So it should be inbetween these two happenings. If OpenBSD runs out of network-buffers, is it recorded somewhere? Should I just increase the buffers and hope for it not to happen anymore? Thanks. |
| |||
| I have the same problem, and my compaq pentium 200 mmx is very cold and is the standard pc. If i don't work with this in 10 or 15 minutes, the ping to the ip adress is imposible, i touch the keyboard and restart automaticaly the network. Some ideas. Tx. Ferran "DJ_Farid" <dj_farid@hotmail.com> escribió en el mensaje news:88343fd0.0307031046.2d1fa38a@posting.google.c om... > erik <erik@geenspam.vanwesten.net> wrote in message news:<3eff3654$0$49112$e4fe514c@news.xs4all.nl>... > > DJ_Farid wrote: > > > > > Hi, > > > I have an OpenBSD 3.2 box. It's an AMD K5 150Mhz, 21Mb RAM with a > > > D-Link DFE-530TX NIC. I run a FTP on it. > > > It can run smothly for months, until there is a lot of traffic on it. > > > The network just dies when that happens. The machine seems tu run > > > normal, but no traffic can go in or out. I can't even access with SSH. > > > But when I log in locally on the machine and reboot the thing, it > > > works again until the next time the networktraffic-load gets very > > > high. > > > Does anyone know what causes this? I don't even know how to > > > troubleshoot this problem. Where do I begin? Does anyone know how to > > > fix this? > > > > > > Any suggestions are welcome. > > > > Is the system overclocked? Does the processor fan work properly? I've > > seen similar faults on a system where the processor fan did not work > > anymore. > > > > EJ > > The system is not overclocked. The fan works properly. > Could it be a heat related problem? The machine is not hot, but it > could be colder though... |
| |||
| Ferran Oriol wrote: > I have the same problem, and my compaq pentium 200 mmx is very cold cold? old? hm, both should be ok :-) > the standard pc. If i don't work with this in 10 or 15 minutes, the ping to > the ip adress is imposible, i touch the keyboard and restart automaticaly > the network. some weird APM setup? can you disable it at all in the BIOS? anything else but the NIC is working? does it then react on ifconfig commands still? Christian. -- BOFH excuse #277: Your Flux Capacitor has gone bad. |
| |||
| On Thu, 10 Jul 2003 18:44:17 +0200, Ferran Oriol <varios@barnamail.com> spat: > I have the same problem, and my compaq pentium 200 mmx is very cold and is > the standard pc. If i don't work with this in 10 or 15 minutes, the ping to > the ip adress is imposible, i touch the keyboard and restart automaticaly > the network. > > Some ideas. Tx. > > Ferran My Compaq does the same. You need to disable apm. Do the following: config -e -o /bsd /bsd > disable apm > quit Now reboot the box. ../ToZ |
| ||||
| Thanks for your answer. I see the irq 11 is the same for 3com and VIA VT83C572 USB. I change this and probe. Tx. Ferran Oriol Show of dmesg | grep irq xl0 at pci0 dev 4 function 0 "3Com 3c905C 100Base-TX" rev 0x30: irq 11 address 00:04:75:7f:4e:92 uhci0 at pci0 dev 7 function 2 "VIA VT83C572 USB" rev 0x02: irq 11 pckbc0: using irq 1 for kbd slot pckbc0: using irq 12 for aux slot lpt0 at isa0 port 0x378/4 irq 7 pccom0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo fdc0 at isa0 port 0x3f0/6 irq 6 drq 2 Complete dmesg: OpenBSD 3.3 (GENERIC) #44: Sat Mar 29 13:22:05 MST 2003 deraadt@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC RTC BIOS diagnostic error 2 cpu0: F00F bug workaround installed cpu0: Intel Pentium/MMX ("GenuineIntel" 586-class) 200 MHz cpu0: FPU,V86,DE,PSE,TSC,MSR,MCE,CX8,MMX real mem = 66695168 (65132K) avail mem = 56250368 (54932K) using 839 buffers containing 3436544 bytes (3356K) of memory RTC BIOS diagnostic error 2 mainbus0 (root) bios0 at mainbus0: AT/286+(ff) BIOS, date 11/18/97, BIOS32 rev. 0 @ 0xf1800 apm0 at bios0: Power Management spec V1.2 apm0: AC on, battery charge unknown pcibios0 at bios0: rev. 2.1 @ 0xf1800/0x2100 pcibios0: PCI IRQ Routing Table rev. 1.0 @ 0xf1db0/112 (5 entries) pcibios0: PCI IRQ Routing Table rev. 1.0 @ 0xf7440/112 (5 entries) pcibios0: PCI Interrupt Router at 000:07:0 ("VIA VT82C586 PCI-ISA" rev 0x00) pcibios0: PCI bus #0 is the last bus bios0: ROM list: 0xc0000/0x8000 0xc8000/0x800 pci0 at mainbus0 bus 0: configuration mode 1 (bios) pchb0 at pci0 dev 0 function 0 "VIA VT82C1595 Host-PCI" rev 0x06 xl0 at pci0 dev 4 function 0 "3Com 3c905C 100Base-TX" rev 0x30: irq 11 address 00:04:75:7f:4e:92 ukphy0 at xl0 phy 24: Generic IEEE 802.3u media interface ukphy0: OUI 0x00601d, model 0x0035, rev. 0 pcib0 at pci0 dev 7 function 0 "VIA VT82C586 PCI-ISA" rev 0x41 pciide0 at pci0 dev 7 function 1 "VIA VT82C571 IDE" rev 0x06: ATA33, channel 0 configured to compatibility, channel 1 configured to compatibility wd0 at pciide0 channel 0 drive 0: <WDC AC22100H> wd0: 16-sector PIO, LBA, 2014MB, 4092 cyl, 16 head, 63 sec, 4124736 sectors wd0(pciide0:0:0): using PIO mode 4, DMA mode 2 pciide0: channel 1 disabled (no drives) uhci0 at pci0 dev 7 function 2 "VIA VT83C572 USB" rev 0x02: irq 11 usb0 at uhci0: USB revision 1.0 uhub0 at usb0 uhub0: vendor 0x0000 UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered "VIA VT82C586 Power Mgmt" rev 0x10 at pci0 dev 7 function 3 not configured vga1 at pci0 dev 15 function 0 "S3 Trio64V2/DX" rev 0x16 wsdisplay0 at vga1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) isa0 at pcib0 isadma0 at isa0 pckbc0 at isa0 port 0x60/5 pckbd0 at pckbc0 (kbd slot) pckbc0: using irq 1 for kbd slot wskbd0 at pckbd0: console keyboard, using wsdisplay0 pmsi0 at pckbc0 (aux slot) pckbc0: using irq 12 for aux slot wsmouse0 at pmsi0 mux 0 pcppi0 at isa0 port 0x61 midi0 at pcppi0: <PC speaker> sysbeep0 at pcppi0 lpt0 at isa0 port 0x378/4 irq 7 npx0 at isa0 port 0xf0/16: using exception 16 pccom0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo fdc0 at isa0 port 0x3f0/6 irq 6 drq 2 fd0 at fdc0 drive 0: 1.44MB 80 cyl, 2 head, 18 sec biomask 4840 netmask 4840 ttymask 58c2 pctr: 586-class performance counters and user-level cycle counter enabled dkcsum: wd0 matched BIOS disk 80 root on wd0a rootdev=0x0 rrootdev=0x300 rawdev=0x302 <jallen@pobox.com> escribió en el mensaje news:3f0e71df$0$31275$afc38c87@news.optusnet.com.a u... > DJ_Farid <dj_farid@hotmail.com> wrote: > > > Does anyone know what causes this? I don't even know how to > > troubleshoot this problem. Where do I begin? Does anyone know how to > > fix this? > > > > Any suggestions are welcome. > > Look for IRQ sharing with the NIC ?? > > > Cheers, > Jason > |