Difference between revisions of "Project:Tool Access Control/ACNet"

From London Hackspace Wiki
Jump to navigation Jump to search
(Created page with "== Summary == This page aims to scope out the different projects that work together as part of the Access Control Network. The main components are: * ACNode - The clients tha...")
(No difference)

Revision as of 12:11, 14 February 2013

Summary

This page aims to scope out the different projects that work together as part of the Access Control Network. The main components are:

  • ACNode - The clients that sit on the tool that is being controlled and manage physical access by reading the rfid card.
  • ACServer - The server stores the authentication information and pulls membership information from Turing over JSON and stores is at a SQLite DB
  • Turing - Secured storage of membership data.

System diagram

<graphviz border='frame' format='png' >

digraph rfboard{
  rankdir=TD;
  size="10,5!";
  acnode1 [label="ACNode",shape=box];
  acnode2 [label="ACNode",shape=box];
  acnode3 [label="ACNode",shape=box];
  acserver [label="ACServer",shape=box];
  turing [label="Turing VM",shape=box];
  acnode1 -> acserver;
  acnode2 -> acserver;
  acnode3 -> acserver;
  acserver -> acnode1;
  acserver -> acnode2;
  acserver -> acnode3;
  turing-> acserver;

} </graphviz>