Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lirantal/daloradius

daloRADIUS is an advanced RADIUS web management application for managing hotspots and general-purpose ISP deployments. It features user management, graphical reporting, accounting, a billing engine, and integrates with OpenStreetMap for geolocation. The system is based on FreeRADIUS with which it shares access to the backend database.
https://github.com/lirantal/daloradius

freeradius freeradius-webinterface hotspot-management hotspot-manager php radius wifi-manager

Last synced: 23 days ago
JSON representation

daloRADIUS is an advanced RADIUS web management application for managing hotspots and general-purpose ISP deployments. It features user management, graphical reporting, accounting, a billing engine, and integrates with OpenStreetMap for geolocation. The system is based on FreeRADIUS with which it shares access to the backend database.

Awesome Lists containing this project

README

        

# run daloradius as a standalone container
## prerequisite

1. mysql server and freeradius (in docker or on-premise) server that has been configured properly
2. docker runtime

## how to run

1. run prebuilt image
2. build the image first

### preparing daloradius.conf.php

you can edit sample config and then mount it in container or you can just run container, edit mounted config and re-run container

## prebuilt image

```bash
docker run --name daloradius-standalone -v /path/to/daloradius.conf.php:/var/www/html/daloradius/common/includes/daloradius.conf.php -p 80:80 -p 8000:8000 -d dormancygrace/daloradius
```

## build image

```bash
docker build -t daloradius-standalone -f Dockerfile-standalone
```

```bash
docker run --name daloradius-standalone -v /path/to/daloradius.conf.php:/var/www/html/daloradius/common/includes/daloradius.conf.php -p 80:80 -p 8000:8000 -d daloradius-standalone
```