Search found 59 matches

by hugleo
16 Nov 2016, 19:29
Forum: General
Topic: IRQ process using 60% CPU
Replies: 12
Views: 3986

IRQ process using 60% CPU

Is that normal for accel-ppp?
by hugleo
19 Jul 2016, 14:08
Forum: Free for all
Topic: ixgbe intel 10 GB tx hang
Replies: 2
Views: 6788

Re: ixgbe intel 10 GB tx hang

Tried stable debian kernel 3.16 and and Intel ixgbe driver from sourceforge.
No problem until now.
by hugleo
19 Jul 2016, 12:54
Forum: Installation
Topic: последняя версия с гит не собралась
Replies: 3
Views: 1717

Re: последняя версия с гит не собралась

I think glibc is to old in debian wheezy. Maybe a patch like that for accel: +/* + * Use raw setns syscall for versions of glibc that don't include it (namely + * glibc-2.12) + */ +#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 14 +#ifdef SYS_setns +int setns(int fd, int nstype) +{ + return syscall...
by hugleo
19 Jul 2016, 12:33
Forum: General
Topic: cli netcat
Replies: 15
Views: 5380

Re: cli netcat

cd /root/accel-ppp.git
mkdir build
cd build
cmake -DKDIR=/usr/src/linux-headers-`uname -r` -DBUILD_DRIVER=FALSE -DRADIUS=TRUE -DNETSNMP=FALSE -DSHAPER=FALSE -DLOG_PGSQL=FALSE -DLUA=TRUE -DBUILD_IPOE_DRIVER=TRUE ..
by hugleo
18 Jul 2016, 21:05
Forum: General
Topic: cli netcat
Replies: 15
Views: 5380

Re: cli netcat

nc is port 2001
try like that:
echo 'show sessions' | nc -q10 127.0.0.1 2001
by hugleo
18 Jul 2016, 12:17
Forum: Bugs
Topic: Kernel panic :(
Replies: 19
Views: 14944

Re: Kernel panic :(

I think I managed to solve the problem with the lines: iptables -t mangle -A FORWARD -o ppp+ -p tcp -m tcp --tcp-flags SYN,RST SYN -m tcpmss --mss 1453:65535 -j TCPMSS --set-mss 1452 iptables -t mangle -A FORWARD -i ppp+ -p tcp -m tcp --tcp-flags SYN,RST SYN -m tcpmss --mss 1373:65535 -j TCPMSS --se...
by hugleo
16 Jul 2016, 16:35
Forum: Bugs
Topic: Kernel panic :(
Replies: 19
Views: 14944

Re: Kernel panic :(

I've tried again and put the lines: iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN -m tcpmss --mss 1400:1536 -j TCPMSS --clamp-mss-to-pmtu I configure it in two different servers. After few hours got kernel panic on...
by hugleo
10 Jul 2016, 14:48
Forum: PPPoE
Topic: accel-ppp locking, 200% cpu and fills logs until there's no space left.
Replies: 22
Views: 7690

Re: accel-ppp locking, 200% cpu and fills logs until there's no space left.

I just figured out now that the stasn77 message was a patch and not reporting a error.
:D

Maybe is safe that you put the line:

if (ppp->buf_size == 0)
break;

before "ppp_chan_read: short read" too?

Dmitry, can you check that patch?
by hugleo
10 Jul 2016, 14:20
Forum: PPPoE
Topic: accel-ppp locking, 200% cpu and fills logs until there's no space left.
Replies: 22
Views: 7690

Re: accel-ppp locking, 200% cpu and fills logs until there's no space left.

I think you have applied the patch in the wrong line: Looking at the git the line modified is before log_ppp_error(" ppp_unit_read: short read %i\n", ppp->buf_size) not before log_ppp_error( "ppp_chan_read :... yours: ~ Line 373: if (ppp->buf_size == 0) break; if (ppp->buf_size < 2) {...
by hugleo
10 Jul 2016, 00:06
Forum: PPPoE
Topic: accel-ppp locking, 200% cpu and fills logs until there's no space left.
Replies: 22
Views: 7690

Re: accel-ppp locking, 200% cpu and fills logs until there's no space left.

[2016-07-09 11:54:58]: msg: accel-ppp version 2de5323e832b0eaa3aaea748f60d4d481f0e3e87 (LATEST from git repository) Kernel 4.4.0-24-generic Problem still remains - the log goes >2GB, I have to manually kill accel-ppp - it won't stop from the init script. Maybe this time the log message is different...