Freeradius rlm_python getaggte Attribute

Freeradius rlm_python getaggte Attribute

Ich habe ein Python-Authentifizierungsmodul erstellt. Beim Versuch, Tests mit Radtest durchzuführen, lautet die Antwort:

    User-Password = "testing123"
    NAS-IP-Address = 127.0.1.1
    NAS-Port = 0
    Message-Authenticator = 0x00
    Cleartext-Password = "testing123"
Received Access-Accept Id 188 from 127.0.0.1:1812 to 0.0.0.0:0 length 48
    ERX-Service-Activate:0 = "srs-local-ipoe"

Wie Sie sehen, hat ERX-Service-Activate nur ein mit Null markiertes Attribut.

Aber radiusd -X zeigt mir eine andere Ausgabe:

authorize - 'reply:ERX-Service-Activate:1' = 'srs-local-ipoe'
authorize - 'reply:ERX-Service-Activate:2' = 'srs-localnet-ipoe(110000)'
authorize - 'reply:ERX-Service-Activate:3' = 'srs-foreignnet-ipoe(110000,110000)'
authorize - 'config:Auth-Type' = 'Accept'
authorize - 'config:Cleartext-Password' = 'testing123'

So erhalten Sie alle mit ERX-Service-Activate gekennzeichneten Attribute.

Antwort der Python-Konstruktion:

reply = (('Framed-IP-Address', str(client.ipv4)),
             ('ERX-Service-Activate:1', 'srs-local-ipoe'),
             ('ERX-Service-Activate:2',
              'srs-localnet-ipoe(%s)' % str(client.s_localnet)),
             ('ERX-Service-Activate:3',
              'srs-foreign-ipoe(%s,%s)' % (str(client.s_foreign),
                                          str(client.s_localnet))),)

PS: Die Antwort in Wireshark hat auch nur ein ERX-Service-Activate-Attribut.

Antwort1

Problem behoben in Freeradius Version 3.0.17

Außerdem sollte die Antwort ein wenig modifiziert werden:

  reply = (('Framed-IP-Address', str(client.ipv4)),
         ('ERX-Service-Activate:1', 'srs-local-ipoe'),
         ('ERX-Service-Activate:2', '+=',
          'srs-localnet-ipoe(%s)' % str(client.s_localnet)),
         ('ERX-Service-Activate:3', '+=',
          'srs-foreign-ipoe(%s,%s)' % (str(client.s_foreign),
                                      str(client.s_localnet))),)

verwandte Informationen