flowtable and 100% load core

Hello. I've got a VPN server on FreeBSD 8.2 + MPD 5.5 and about 400 connections. I rebuilt my kernel without option FLOWTABLE because I had frozen system after 2 or 3 working days. It's a known bug with flowtable. And today I cvsup'ed kernel sources and I saw a new version net/flowtable.c from Jan/27/2011. I guessed the bug was fixed. Did anybody know about this? Maybe this bug really was fixed. Thanks for your answers.
 
aleksuss said:
Hello. I've got a VPN server on FreeBSD 8.2 + MPD 5.5 and about 400 connections. I rebuilt my kernel without option FLOWTABLE because I had frozen system after 2 or 3 working days. It's a known bug with flowtable. And today I cvsup'ed kernel sources and I saw a new version net/flowtable.c from Jan/27/2011. I guessed the bug was fixed. Did anybody know about this? Maybe this bug really was fixed. Thanks for your answers.

By the way, I've never managed to get more than 30 users with MPD on our corporate servers. How do you manage to do that? Would you mind sharing your mpd.conf file ? :-)
 
Gulfstream said:
By the way, I've never managed to get more than 30 users with MPD on our corporate servers. How do you manage to do that? Would you mind sharing your mpd.conf file ? :-)

Sure :)
Code:
[root@vpn2 /home/admin]# cat /usr/local/etc/mpd5/mpd.conf
startup:
	set user admin PASSWORD admin
	set console self 127.0.0.1 5005
	set console open
	set web self 192.168.100.105 5006
	set web open

default:
        load pptp_server

pptp_server:
	set ippool add pool1 10.10.11.2 10.10.254.254
        create bundle template B
        set iface enable proxy-arp
        set iface idle 1800
        set iface enable tcpmssfix
        set iface up-script "/usr/local/etc/mpd5/shaping/up.sh"
        set iface down-script "/usr/local/etc/mpd5/shaping/down.sh"
        set ipcp yes vjcomp
        set ipcp ranges 11.11.11.1/32 ippool pool1
        set ipcp dns 192.168.100.105
        create link template L pptp
        set link action bundle B
        set link enable multilink
        set link yes acfcomp protocomp
        set link no pap chap
        set link enable chap
        set link keep-alive 10 60
        set link mtu 1460
        set pptp self 192.168.100.105
	set pptp disable windowing
        set link enable incoming
	# Radius
	load radius
radius:
        set radius server 127.0.0.1 PASSWORD 1812 1813
        set radius retries 3
	set radius config /usr/local/etc/mpd5/radius.conf
        set auth acct-update 300
        set auth enable radius-auth
        set auth enable radius-acct
        set radius enable message-authentic
 
Back
Top