Re: PPPoE and Radius on 6.0RC1

From: <fooler_at_skyinet.net>
Date: Fri, 21 Oct 2005 19:45:52 +0800
----- Original Message ----- 
From: "Marcin Jessa" <lists_at_yazzy.org>
To: <fooler_at_skyinet.net>
Cc: <glebius_at_FreeBSD.org>; <current_at_FreeBSD.org>; <net_at_FreeBSD.org>
Sent: Friday, October 21, 2005 5:29 PM
Subject: Re: PPPoE and Radius on 6.0RC1


> The problem seems to be ppp is never started by pppoe.

here is a sample configuration for your pppoe server.... assuming you have 
two intel nics named fxp0 and fxp1... fxp0 is facing the net and fxp1 is 
facing the pppoe clients... fxp1 is ip less...

please do the following...

1. in your kernel config file, add the following options and compile the 
kernel

options    NETGRAPH
options    NETGRAPH_ETHER
options    NETGRAPH_PPPOE
options    NETGRAPH_SOCKET

2. in your /etc/rc.conf

gateway_enable="YES"
ifconfig_fxp0="inet 192.168.2.8 netmask 255.255.255.0"
ifconfig_fxp1="up"
pppoed_enable="YES"
pppoed_flags="-l PPPoE -P /var/run/pppoed.pid"
pppoed_interface="fxp1"

3. in your /etc/ppp/ppp.conf

default:
    set log Phase Chat LCP IPCP CCP tun command Debug Radius
    ident user-ppp VERSION (built COMPILATIONDATE)

PPPoE:
    set ifaddr 192.168.2.8 192.168.2.100-192.168.2.120 255.255.255.255
    set radius /etc/ppp/radius.conf
    set dns 192.168.2.45
    deny deflate
    disable deflate
    accept dns
    enable lqr
    enable echo
    deny pap
    deny chap
    deny LANMan
    deny MSChap
    enable MSChapV2
    disable pred1
    disable utmp
    disable ipv6cp
    set callback
    set cbcp
    set cd 5!
    set nbns
    set speed sync
    set timeout 0

4. in your /etc/ppp/radius.conf

auth 127.0.0.1:1812 secret_key 3 3
acct 127.0.0.1:1813 secret_key 3 3

try to remark "set radius /etc/ppp/radius.conf" first in /etc/ppp/ppp.conf 
to make sure that your pppoe authentication is working without using a 
radius server... if all went well, then make sure your radius server is 
working properly by binding to ip address 127.0.0.1 only for security 
purposes...

fooler.
Received on Fri Oct 21 2005 - 09:45:45 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:38:46 UTC