Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| radius:rad_kick [2024/02/13 04:38] – [Mikrotik] system | radius:rad_kick [2024/02/13 04:47] (current) – system | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | <nav type=" | ||
| + | * [[: | ||
| + | * [[: | ||
| + | </ | ||
| + | |||
| + | ----- | ||
| + | |||
| ====== Disconnecting Active RADIUS Users ====== | ====== Disconnecting Active RADIUS Users ====== | ||
| ===== Introduction ===== | ===== Introduction ===== | ||
| Line 54: | Line 61: | ||
| ===== Add Support for additional types ===== | ===== Add Support for additional types ===== | ||
| - | * This section is a technical section for those who wants to introduce new RADIUS | + | * This section is a technical section for those who want to introduce new RADIUS |
| - | * The list in the drop-down is specified in the following file: /// | + | * The list in the drop-down |
| <code php> | <code php> | ||
| //Define nas types | //Define nas types | ||
| Line 62: | Line 69: | ||
| $config[' | $config[' | ||
| </ | </ | ||
| - | * Then when selecting | + | * If you then select |
| - | * This all happens inside | + | * This is all done within |
| - | * Thus adding | + | * So if you want to add support for more types, you will need to add additional sections to the PHP code. |
| - | * See the snippet | + | * Take a look at the following |
| <code php> | <code php> | ||
| - | //First we try to locate | + | //First we try to find the client under dynamic_clients |
| $dc = $this-> | $dc = $this-> | ||
| -> | -> | ||
| Line 91: | Line 98: | ||
| </ | </ | ||
| - | * That' | + | * This is the only thing required to disconnect |
| - | * The FUP implementation also utilizes | + | * The FUP implementation also uses this mechanism, so this is also a core component for the success of the FUP implementation. |