Giter VIP home page Giter VIP logo

teamsacs's Introduction

Welcome to TeamsACS project!

  _____                                    ___     ___     ___   
 |_   _|   ___    __ _    _ __     ___    /   \   / __|   / __|  
   | |    / -_)  / _` |  | '  \   (_-<    | - |  | (__    \__ \  
  _|_|_   \___|  \__,_|  |_|_|_|  /__/_   |_|_|   \___|   |___/  
_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| 
"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' 

TeamsACS

TeamsACS is committed to providing superior ease of network management for work teams. We use Mikrotik's networking products as the base core.

The core of the system is based on Golang technology, providing superior performance and an easy deployment experience.

TeamsACS uses Timescaledb as the primary data store, supporting time-series data and providing support for system observability

  • TR069-based device management

TeamsACS implements the TR069 protocol server, supports Mikrotik as a TR069 protocol client for secure access, and supports Mikrotik TR069 private features, supports configuration reading and modification, and supports uploading Mikrotik script files for execution.

  • Supports integrated freeRADIUS for RADIUS authentication

TeamsACS implements a REST API server for freeRADIUS, provides a practical database structure on the backend to store user data, supports Mikrotik access as a RADIUS client, supports normal authentication and EAP authentication

  • Syslog Server Implementation

TeamsACS implements a Syslog Server that accepts syslog output from Mikrotik devices and provides queries.

  • Device Backup Management

The TR069 protocol enables Mikrotik devices to be backed up regularly and then downloaded to the TeamsACS file system for unified management, and supports backup restoration via TR069.

Development Roadmap

  • Implement TeamsEdge edge nodes and support RouterOS V7-based containerized deployments.
  • Interacts with CoreDNS-based TeamsDNS to implement dynamic CDN-based application triage policies based on DNS resolution

System Architecture Diagram

TeamsACS Struct

Install and config

TeamsACS uses PostgreSQL as its primary database and uses the Timescaledb extension

  • Create Database

    CREATE USER teamsacs WITH PASSWORD 'teamsacs'

    CREATE DATABASE teamsacs OWNER teamsacs;

    GRANT ALL PRIVILEGES ON DATABASE teamsacs TO teamsacs;

Docker Deploy

version: "2"
services:
  pgdb:
    image: timescale/timescaledb:latest-pg14
    container_name: "pgdb"
    ports:
      - "127.0.0.1:5432:5432"
    environment:
      POSTGRES_DB: teamsacs
      POSTGRES_USER: teamsacs
      POSTGRES_PASSWORD: teamsacs
    volumes:
      - /data/pgdata:/var/lib/postgresql/data
    networks:
      teamsacs_network:

  teamsacs:
    depends_on:
      - 'pgdb'
    image: ca17/teamsacs:latest
    container_name: "teamsacs"
    restart: always
    ports:
      - 8000
      - 8106
      - 8107
      - 8108/udp
    expose:
      - 8000
      - 8106
      - 8107
      - 8108/udp
    volumes:
      - /data/teamsacs:/var/teamsacs
    environment:
      - GODEBUG=x509ignoreCN=0
      - TEAMSACS_WEB_DEBUG=1
      - TEAMSACS_SECRET=9b6de5cc-xxxx-xxxx-xxx-0f568ac9da37
    networks:
      teamsacs_network:

networks:
  teamsacs_network:

teamsacs's People

Contributors

jamiesun avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.