Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Apr 2005 13:56:01 +0800
From:      "fooler" <fooler@skyinet.net>
To:        "Bikrant Neupane" <bikrant_ml@wlink.com.np>, <freebsd-isp@freebsd.org>
Cc:        freebsd-net@freebsd.org
Subject:   Re: radius client parameters
Message-ID:  <026601c5367f$821296d0$42764eca@ilo.skyinet.net>
References:  <200503311104.57782.bikrant_ml@wlink.com.np><05af01c535b8$b4a51720$42764eca@ilo.skyinet.net> <200504011030.26312.bikrant_ml@wlink.com.np>

next in thread | previous in thread | raw e-mail | index | archive | help
----- Original Message ----- 
From: "Bikrant Neupane" <bikrant_ml@wlink.com.np>
To: <freebsd-isp@freebsd.org>
Cc: "fooler" <fooler@skyinet.net>; <freebsd-net@freebsd.org>
Sent: Friday, April 01, 2005 12:45 PM
Subject: Re: radius client parameters


> Is CALLING_STATION_ID enabled by default in the radius configuration?

since you are using freebsd 4.10 while i look the code of user ppp in
freebsd 5.3... please check at /usr/src/usr.sbin/ppp/radius.c function
radius_Authenticate() if you find this:

    if (rad_put_string(r->cx.rad, RAD_NAS_IDENTIFIER, hostname) != 0) {
      log_Printf(LogERROR, "rad_put: rad_put_string: %s\n",
                 rad_strerror(r->cx.rad));
      rad_close(r->cx.rad);
      return 0;
    }
  }

  if ((mac_addr = getenv("HISMACADDR")) != NULL &&
      rad_put_string(r->cx.rad, RAD_CALLING_STATION_ID, mac_addr) != 0) {
    log_Printf(LogERROR, "rad_put: %s\n", rad_strerror(r->cx.rad));
    rad_close(r->cx.rad);
    return;
  }

  radius_put_physical_details(r->cx.rad, authp->physical);

if you dont find RAD_CALLING_STATION_ID then fetch the latest version of
user-ppp and youll be fine...

>  However
> I don't see any Attributes in the access-request log.  I guess it is the
> client which is not sending the CALLING_STATION_ID attribute by default to
> the server. How do I configure the radius client (in Freebsd) to send this
> attribute to the radius server ?

pppoed is the one resposible assigning the mac address to environment
variable HISMACADDR while the user-ppp get and put it to CALLING_STATION_ID
radius attribute (as show above code)... therefore user-ppp automatically do
it for you to send that radius attribute..

fooler.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?026601c5367f$821296d0$42764eca>