8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-21 08:34:06 +00:00
re2o/freeradius_utils/auth.py

508 lines
19 KiB
Python
Raw Normal View History

2018-04-13 20:11:55 +00:00
# -*- mode: python; coding: utf-8 -*-
2021-05-13 17:28:56 +00:00
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
2017-01-15 23:01:18 +00:00
# se veut agnostique au réseau considéré, de manière à être installable en
# quelques clics.
#
# Copyirght © 2017 Daniel Stan
2017-01-15 23:01:18 +00:00
# Copyright © 2017 Gabriel Détraz
# Copyright © 2017 Lara Kermarec
2017-01-15 23:01:18 +00:00
# Copyright © 2017 Augustin Lemesle
2021-05-13 17:28:56 +00:00
# Copyright © 2020 Corentin Canebier
2017-01-15 23:01:18 +00:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2016-12-08 14:13:41 +00:00
"""
2020-05-16 01:57:29 +00:00
Python backend for freeradius.
2016-12-08 14:13:41 +00:00
2020-05-16 10:56:09 +00:00
This file contains definition of some functions called by freeradius backend
2020-05-16 01:57:29 +00:00
during auth for wifi, wired device and nas.
2016-12-08 14:13:41 +00:00
2020-05-16 01:57:29 +00:00
Other examples can be found here :
2016-12-08 14:13:41 +00:00
https://github.com/FreeRADIUS/freeradius-server/blob/master/src/modules/rlm_python/
2020-05-16 01:57:29 +00:00
Inspired by Daniel Stan in Crans
2016-12-08 14:13:41 +00:00
"""
2021-02-10 10:06:09 +00:00
import logging
2018-04-13 20:11:55 +00:00
import os
import sys
2019-01-23 20:30:17 +00:00
import traceback
2018-04-13 20:11:55 +00:00
2021-02-10 10:06:09 +00:00
import radiusd # Magic module freeradius (radiusd.py is dummy)
2018-04-14 15:30:14 +00:00
from django.core.wsgi import get_wsgi_application
2018-04-13 20:11:55 +00:00
from django.db.models import Q
2018-04-14 15:30:14 +00:00
proj_path = "/var/www/re2o/"
# This is so Django knows where to find stuff.
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "re2o.settings")
sys.path.append(proj_path)
# This is so my local_settings.py gets loaded.
os.chdir(proj_path)
# This is so models get loaded.
application = get_wsgi_application()
2021-02-10 10:06:09 +00:00
from machines.models import Domain, Interface, IpList, Nas
from preferences.models import RadiusOption
2018-04-26 07:19:10 +00:00
from topologie.models import Port, Switch
from users.models import User
2016-12-08 14:13:41 +00:00
class RadiusdHandler(logging.Handler):
2021-05-13 17:28:56 +00:00
"""Handler de logs pour freeradius"""
2016-12-08 14:13:41 +00:00
def emit(self, record):
2021-05-13 17:28:56 +00:00
"""Process un message de log, en convertissant les niveaux"""
2016-12-08 14:13:41 +00:00
if record.levelno >= logging.WARN:
rad_sig = radiusd.L_ERR
elif record.levelno >= logging.INFO:
rad_sig = radiusd.L_INFO
else:
rad_sig = radiusd.L_DBG
2021-05-13 17:28:56 +00:00
radiusd.radlog(rad_sig, record.msg.encode("utf-8"))
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2021-02-10 10:06:09 +00:00
# Init for logging
logger = logging.getLogger("auth.py")
2016-12-08 14:13:41 +00:00
logger.setLevel(logging.DEBUG)
formatter = logging.Formatter("%(name)s: [%(levelname)s] %(message)s")
2016-12-08 14:13:41 +00:00
handler = RadiusdHandler()
handler.setFormatter(formatter)
logger.addHandler(handler)
2018-04-13 20:11:55 +00:00
2016-12-08 14:13:41 +00:00
def radius_event(fun):
2021-05-13 17:28:56 +00:00
"""Décorateur pour les fonctions d'interfaces avec radius.
Une telle fonction prend un uniquement argument, qui est une liste de
tuples (clé, valeur) et renvoie un triplet dont les composantes sont :
* le code de retour (voir radiusd.RLM_MODULE_* )
* un tuple de couples (clé, valeur) pour les valeurs de réponse (accès ok
et autres trucs du genre)
* un tuple de couples (clé, valeur) pour les valeurs internes à mettre à
jour (mot de passe par exemple)
On se contente avec ce décorateur (pour l'instant) de convertir la liste de
tuples en entrée en un dictionnaire."""
2016-12-08 14:13:41 +00:00
def new_f(auth_data):
2018-04-14 15:30:14 +00:00
""" The function transforming the tuples as dict """
if isinstance(auth_data, dict):
2016-12-08 14:13:41 +00:00
data = auth_data
else:
data = dict()
for (key, value) in auth_data or []:
# Beware: les valeurs scalaires sont entre guillemets
# Ex: Calling-Station-Id: "une_adresse_mac"
data[key] = value.replace('"', "")
2016-12-08 14:13:41 +00:00
try:
2021-05-13 17:28:56 +00:00
# TODO s'assurer ici que les tuples renvoy s sont bien des
# (str,str) : rlm_python ne dig re PAS les unicodes
2016-12-08 14:13:41 +00:00
return fun(data)
except Exception as err:
2019-09-10 17:11:14 +00:00
exc_type, exc_instance, exc_traceback = sys.exc_info()
formatted_traceback = "".join(traceback.format_tb(exc_traceback))
logger.error("Failed %r on data %r" % (err, auth_data))
2021-05-13 17:28:56 +00:00
logger.error("Function %r, Traceback : %r" %
(fun, formatted_traceback))
return radiusd.RLM_MODULE_FAIL
2016-12-08 14:13:41 +00:00
return new_f
2016-12-08 14:13:41 +00:00
@radius_event
def instantiate(*_):
2020-05-16 01:57:29 +00:00
"""Usefull for instantiate ldap connexions otherwise,
do nothing"""
logger.info("Instantiation")
2021-05-13 17:28:56 +00:00
path = (os.path.dirname(os.path.abspath(__file__)))
config = ConfigParser()
config.read(path+'/config.ini')
api_hostname = config.get('Re2o', 'hostname')
api_password = config.get('Re2o', 'password')
api_username = config.get('Re2o', 'username')
global api_client
api_client = Re2oAPIClient(
api_hostname, api_username, api_password, use_tls=True)
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2016-12-08 14:13:41 +00:00
@radius_event
def authorize(data):
2020-05-16 01:57:29 +00:00
"""Here, we test if the Nas is known.
- If the nas is unknown, we assume that it is a 802.1X request,
- If the nas is known, we apply the 802.1X if enabled,
- It the nas is known AND nas auth is enabled with mac address, returns
accept here"""
2021-02-10 10:06:09 +00:00
# For proxified request, split
nas = data.get("NAS-IP-Address", data.get("NAS-Identifier", None))
nas_instance = find_nas_from_request(nas)
2021-02-10 10:06:09 +00:00
# For none proxified requests
2017-11-19 20:17:17 +00:00
nas_type = None
if nas_instance:
nas_type = Nas.objects.filter(nas_type=nas_instance.machine_type).first()
if not nas_type or nas_type.port_access_mode == "802.1X":
2020-05-16 01:57:29 +00:00
user = data.get("User-Name", "")
user = user.split("@", 1)[0]
mac = data.get("Calling-Station-Id", "")
result, log, password = check_user_machine_and_register(nas_type, user, mac)
2020-05-16 01:57:29 +00:00
logger.info(str(log))
logger.info(str(user))
if not result:
return radiusd.RLM_MODULE_REJECT
else:
2018-04-13 20:11:55 +00:00
return (
radiusd.RLM_MODULE_UPDATED,
(),
((str("NT-Password"), str(password)),),
)
2016-12-08 14:13:41 +00:00
else:
return (radiusd.RLM_MODULE_UPDATED, (), (("Auth-Type", "Accept"),))
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2016-12-08 14:13:41 +00:00
@radius_event
def post_auth(data):
2021-02-10 10:06:09 +00:00
"""Function called after the user is authenticated"""
2018-04-14 15:30:14 +00:00
nas = data.get("NAS-IP-Address", data.get("NAS-Identifier", None))
2017-09-13 01:53:06 +00:00
nas_instance = find_nas_from_request(nas)
2021-02-10 10:06:09 +00:00
# All non proxified requests
if not nas_instance:
2020-05-16 01:57:29 +00:00
logger.info("Proxified request, nas unknown")
2017-09-14 15:24:12 +00:00
return radiusd.RLM_MODULE_OK
nas_type = Nas.objects.filter(nas_type=nas_instance.machine_type).first()
2017-09-14 15:24:12 +00:00
if not nas_type:
2021-05-13 17:28:56 +00:00
logger.info("Proxified request, nas unknown")
2017-09-14 15:24:12 +00:00
return radiusd.RLM_MODULE_OK
2021-05-13 17:28:56 +00:00
# If it is a switch
if switch:
sw_name = switch["name"] or "?"
room = "Unknown port"
if port:
room = port.room or "Unknown room"
out = decide_vlan_switch(data_from_api, mac, nas_port)
reason, vlan_id, decision, attributes = out
2018-08-30 00:11:14 +00:00
if decision:
2020-05-16 01:57:29 +00:00
log_message = "(wired) %s -> %s [%s%s]" % (
sw_name + ":" + port + "/" + str(room),
2018-08-30 00:11:14 +00:00
mac,
vlan_id,
2020-05-16 01:57:29 +00:00
(reason and ": " + reason),
2018-08-30 00:11:14 +00:00
)
logger.info(log_message)
2020-05-16 01:57:29 +00:00
# Wired connexion
2018-08-30 00:11:14 +00:00
return (
radiusd.RLM_MODULE_UPDATED,
(
("Tunnel-Type", "VLAN"),
("Tunnel-Medium-Type", "IEEE-802"),
("Tunnel-Private-Group-Id", "%d" % int(vlan_id)),
)
+ tuple(attributes),
(),
2018-08-30 00:11:14 +00:00
)
else:
2020-05-16 01:57:29 +00:00
log_message = "(fil) %s -> %s [Reject %s]" % (
sw_name + ":" + port + "/" + str(room),
2018-08-30 00:11:14 +00:00
mac,
2020-05-16 01:57:29 +00:00
(reason and ": " + reason),
2018-08-30 00:11:14 +00:00
)
logger.info(log_message)
return (radiusd.RLM_MODULE_REJECT, tuple(attributes), ())
2016-12-08 14:13:41 +00:00
else:
return radiusd.RLM_MODULE_OK
2016-12-08 14:13:41 +00:00
2018-04-13 20:11:55 +00:00
2021-05-13 17:28:56 +00:00
def check_user_machine_and_register(nas_type, user, user_interface):
2020-05-16 01:57:29 +00:00
"""Check if username and mac are registered. Register it if unknown.
Return the user ntlm password if everything is ok.
Used for 802.1X auth"""
if not user:
2020-05-16 01:57:29 +00:00
return (False, "User unknown", "")
2021-05-13 17:28:56 +00:00
if not user["access"]:
2020-05-16 01:57:29 +00:00
return (False, "Invalid connexion (non-contributing user)", "")
2021-05-13 17:28:56 +00:00
if user_interface:
if user_interface["user_pk"] != user["pk"]:
return (
False,
2020-05-16 01:57:29 +00:00
"Mac address registered on another user account",
"",
)
2021-05-13 17:28:56 +00:00
elif not user_interface["active"]:
2020-05-16 01:57:29 +00:00
return (False, "Interface/Machine disabled", "")
2021-05-13 17:28:56 +00:00
elif not user_interface["ipv4"]:
# interface.assign_ipv4()
return (True, "Ok, new ipv4 assignement...", user.get("pwd_ntlm", ""))
else:
2021-05-13 17:28:56 +00:00
return (True, "Access ok", user.get("pwd_ntlm", ""))
elif nas_type:
2021-05-13 17:28:56 +00:00
if nas_type["autocapture_mac"]:
# result, reason = user.autoregister_machine(mac_address, nas_type)
# if result:
# return (True, "Access Ok, Registering mac...", user.pwd_ntlm)
# else:
# return (False, "Error during mac register %s" % reason, "")
return (False, "L'auto capture est désactivée", "")
2017-10-04 11:50:12 +00:00
else:
2020-05-16 01:57:29 +00:00
return (False, "Unknown interface/machine", "")
else:
2020-05-16 01:57:29 +00:00
return (False, "Unknown interface/machine", "")
2021-05-13 17:28:56 +00:00
def set_radius_attributes_values(attributes, values):
return (
(str(attribute.attribute), str(attribute.value % values))
for attribute in attributes
)
def decide_vlan_switch(data_from_api, user_mac, nas_port):
2020-05-16 01:57:29 +00:00
"""Function for selecting vlan for a switch with wired mac auth radius.
Several modes are available :
- all modes:
- unknown NAS : VLAN_OK,
- unknown port : Decision set in Re2o RadiusOption
- No radius on this port : VLAN_OK
- force : returns vlan provided by the database
2018-12-04 19:00:18 +00:00
- mode strict:
2020-05-16 01:57:29 +00:00
- no room : Decision set in Re2o RadiusOption,
- no user in this room : Reject,
- user of this room is banned or disable : Reject,
2021-02-10 10:06:09 +00:00
- user of this room non-contributor and not whitelisted:
2020-05-16 01:57:29 +00:00
Decision set in Re2o RadiusOption
2018-12-04 19:00:18 +00:00
- mode common :
2020-05-16 01:57:29 +00:00
- mac-address already registered:
- related user non contributor / interface disabled:
Decision set in Re2o RadiusOption
- related user is banned:
Decision set in Re2o RadiusOption
- user contributing : VLAN_OK (can assign ipv4 if needed)
- unknown interface :
- register mac disabled : Decision set in Re2o RadiusOption
- register mac enabled : redirect to webauth
2018-12-04 19:00:18 +00:00
Returns:
2020-05-16 01:57:29 +00:00
tuple with :
- Switch name (str)
- Room (str)
- Reason of the decision (str)
2018-12-04 19:00:18 +00:00
- vlan_id (int)
- decision (bool)
2020-05-16 01:57:29 +00:00
- Other Attributs (attribut:str, operator:str, value:str)
"""
2021-05-13 17:28:56 +00:00
nas_type = data_from_api["nas"]
room_users = data_from_api["room_users"]
port = data_from_api["port"]
port_profile = data_from_api["port_profile"]
switch = data_from_api["switch"]
user_interface = data_from_api["user_interface"]
radius_option = data_from_api["radius_option"]
EMAIL_STATE_UNVERIFIED = data_from_api["EMAIL_STATE_UNVERIFIED"]
RADIUS_OPTION_REJECT = data_from_api["RADIUS_OPTION_REJECT"]
USER_STATE_ACTIVE = data_from_api["USER_STATE_ACTIVE"]
2019-09-10 17:11:14 +00:00
attributes_kwargs = {
2021-05-13 17:28:56 +00:00
"client_mac": str(user_mac),
"switch_port": str(nas_port.split(".")[0].split("/")[-1][-2:]),
"switch_ip": str(switch.ipv4)
2019-09-10 17:11:14 +00:00
}
2021-05-13 17:28:56 +00:00
# Get port from switch and port number
extra_log = ""
2021-02-10 10:06:09 +00:00
# If NAS is unknown, go to default vlan
if not nas_machine:
2019-09-09 15:59:43 +00:00
return (
"?",
2020-05-16 01:57:29 +00:00
"Unknown room",
"Unknown NAS",
RadiusOption.get_cached_value("vlan_decision_ok").vlan_id,
2019-09-09 15:59:43 +00:00
True,
RadiusOption.get_attributes("ok_attributes", attributes_kwargs),
2019-09-09 15:59:43 +00:00
)
sw_name = str(getattr(nas_machine, "short_name", str(nas_machine)))
2019-09-10 17:11:14 +00:00
switch = Switch.objects.filter(machine_ptr=nas_machine).first()
attributes_kwargs["switch_ip"] = str(switch.ipv4)
port = Port.objects.filter(switch=switch, port=port_number).first()
2018-07-11 17:37:22 +00:00
2020-05-16 01:57:29 +00:00
# If the port is unknwon, go to default vlan
# We don't have enought information to make a better decision
2021-05-13 17:28:56 +00:00
if not port or not port_profile:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Unknown port",
2021-05-13 17:28:56 +00:00
radius_option["unknown_port_vlan"] and radius_option["unknown_port_vlan"]["vlan_id"] or None,
radius_option["unknown_port"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["unknown_port_attributes"], attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2021-02-10 10:06:09 +00:00
2020-05-16 01:57:29 +00:00
# Retrieve port profile
2018-07-11 17:37:22 +00:00
port_profile = port.get_port_profile
2020-05-16 01:57:29 +00:00
# If a vlan is precised in port config, we use it
2021-05-13 17:28:56 +00:00
if port_profile["vlan_untagged"]:
DECISION_VLAN = int(port_profile["vlan_untagged"]["vlan_id"])
2020-05-16 01:57:29 +00:00
extra_log = "Force sur vlan " + str(DECISION_VLAN)
2019-09-09 15:59:43 +00:00
attributes = ()
else:
2021-05-13 17:28:56 +00:00
DECISION_VLAN = radius_option["vlan_decision_ok"]["vlan_id"]
attributes = set_radius_attributes_values(
radius_option["ok_attributes"], attributes_kwargs)
2020-05-16 01:57:29 +00:00
# If the port is disabled in re2o, REJECT
2021-05-13 17:28:56 +00:00
if not port["state"]:
return ("Port disabled", None, False, ())
2020-05-16 01:57:29 +00:00
# If radius is disabled, decision is OK
2021-05-13 17:28:56 +00:00
if port_profile["radius_type"] == "NO":
return (
2020-05-16 01:57:29 +00:00
"No Radius auth enabled on this port" + extra_log,
DECISION_VLAN,
True,
attributes,
)
2020-05-16 01:57:29 +00:00
# If 802.1X is enabled, people has been previously accepted.
# Go to the decision vlan
2021-05-13 17:28:56 +00:00
if (nas_type["port_access_mode"], port_profile["radius_type"]) == ("802.1X", "802.1X"):
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Accept authentication 802.1X",
2018-12-04 19:00:18 +00:00
DECISION_VLAN,
2019-09-09 15:59:43 +00:00
True,
attributes,
2018-12-04 19:00:18 +00:00
)
2018-06-30 22:17:24 +00:00
2020-05-16 01:57:29 +00:00
# Otherwise, we are in mac radius.
# If strict mode is enabled, we check every user related with this port. If
# one user or more is not enabled, we reject to prevent from sharing or
# spoofing mac.
2021-05-13 17:28:56 +00:00
if port_profile["radius_mode"] == "STRICT":
if not port["room"]:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Unkwown room",
2021-05-13 17:28:56 +00:00
radius_option["unknown_room_vlan"] and radius_option["unknown_room_vlan"]["vlan_id"] or None,
radius_option["unknown_room"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["unknown_room_attributes"], attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2021-05-13 17:28:56 +00:00
if not room_users:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Non-contributing room",
2021-05-13 17:28:56 +00:00
radius_option["non_member_vlan"] and radius_option["non_member_vlan"]["vlan_id"] or None,
radius_option["non_member"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["non_member_attributes"], attributes_kwargs),
)
all_user_ban = True
at_least_one_active_user = False
for user in room_users:
if not user["is_ban"] and user["state"] == USER_STATE_ACTIVE:
all_user_ban = False
elif user["email_state"] != EMAIL_STATE_UNVERIFIED and (user["is_connected"] or user["is_whitelisted"]):
at_least_one_active_user = True
if all_user_ban:
return (
"User is banned or disabled",
radius_option["banned_vlan"] and radius_option["banned_vlan"]["vlan_id"] or None,
radius_option["banned"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["banned_attributes"], attributes_kwargs),
)
if not at_least_one_active_user:
return (
"Non-contributing member or unconfirmed mail",
radius_option["non_member_vlan"] and radius_option["non_member_vlan"]["vlan_id"] or None,
radius_option["non_member"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["non_member_attributes"], attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# else: user OK, so we check MAC now
2020-05-16 01:57:29 +00:00
# If we are authenticating with mac, we look for the interfaces and its mac address
if port_profile.radius_mode == "COMMON" or port_profile.radius_mode == "STRICT":
2020-05-16 01:57:29 +00:00
# If mac is unknown,
2021-05-13 17:28:56 +00:00
if not user_interface:
2020-05-16 01:57:29 +00:00
# We try to register mac, if autocapture is enabled
# Final decision depend on RADIUSOption set in re2o
2021-05-13 17:28:56 +00:00
if nas_type["autocapture_mac"]:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Unknown mac/interface",
2021-05-13 17:28:56 +00:00
radius_option["unknown_machine_vlan"] and radius_option["unknown_machine_vlan"]["vlan_id"] or None,
radius_option["unknown_machine"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["unknown_machine_attributes"], attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# Otherwise, if autocapture mac is not enabled,
else:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Unknown mac/interface",
2021-05-13 17:28:56 +00:00
radius_option["unknown_machine_vlan"] and radius_option["unknown_machine_vlan"]["vlan_id"] or None,
radius_option["unknown_machine"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["unknown_machine_attributes"], attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# Mac/Interface is found, check if related user is contributing and ok
# If needed, set ipv4 to it
else:
2021-05-13 17:28:56 +00:00
if user_interface["is_ban"]:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Banned user",
2021-05-13 17:28:56 +00:00
radius_option["banned_vlan"] and radius_option["banned_vlan"]["vlan_id"] or None,
radius_option["banned"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["banned_attributes"], attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2021-05-13 17:28:56 +00:00
if not user_interface["active"]:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Disabled interface / non-contributing member",
2021-05-13 17:28:56 +00:00
radius_option["non_member_vlan"] and radius_option["non_member_vlan"]["vlan_id"] or None,
radius_option["non_member"] != RADIUS_OPTION_REJECT,
set_radius_attributes_values(
radius_option["non_member_attributes"], attributes_kwargs),
2018-12-04 19:00:18 +00:00
)
2020-05-16 01:57:29 +00:00
# If settings is set to related interface vlan policy based on interface type:
2021-05-13 17:28:56 +00:00
if radius_option["radius_general_policy"] == "MACHINE":
DECISION_VLAN = user_interface["vlan_id"]
if not user_interface["ipv4"]:
# interface.assign_ipv4()
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Ok, assigning new ipv4" + extra_log,
2018-12-04 19:00:18 +00:00
DECISION_VLAN,
2019-09-09 15:59:43 +00:00
True,
attributes,
2018-12-04 19:00:18 +00:00
)
else:
2018-12-04 19:00:18 +00:00
return (
2020-05-16 01:57:29 +00:00
"Interface OK" + extra_log,
2018-12-04 19:00:18 +00:00
DECISION_VLAN,
2019-09-09 15:59:43 +00:00
True,
attributes,
2018-12-04 19:00:18 +00:00
)