Skip to content

A NiFi demo for collecting wifi data from conferences

License

Notifications You must be signed in to change notification settings

Chaffelson/PiWiNiFi

 
 

Repository files navigation

PiWiNiFi

A demo collecting wifi admin packets with a raspberry pi, and pushing them to nifi.

Self-contained docker edition

There are several services

cloud: bastion box version, router

  • nifi
  • provisioner

secloud: analytics cluster

  • solr,
  • kafka
  • hdfs, hbase
  • zookeeper
  • nifi

booth:

  • nifi - command distribution
  • web - visualisation tool

pi:

  • nifi
  • wifi monitoring scripts

docker-nifi is a docker image build for the nifi used, use the build.sh script there to make a nifi docker image for all the others.

Each service includes a run command, which assumes a docker environment. Note that for the cloud environment this needs to be linked to a publicly accessible port. The other key thing to note is that you MUST specify -p port:port to have the same ports, or remotes will not work.

Each system is setup to allow site-to-site.

All nifis are SSL secured. The CA can be created locally, however, key parts will be uploaded to the provisioner application so it can create certificates for the pis.

Custom nars used:

How To build

in ca/

./makeCA.sh && ./makeAllKeys.sh && ./installCerts.sh

you will have to import the new ca/CA/cacert.pem to your keychain, and your relevant ca/users/<name>/<name>.p12 private key using the password in the same folder.

Build the nifi docker image in docker-nifi (./build.sh)

Build the provisioner image in cloud/provisioner (./build.sh)

run the provisioner docker (cd cloud/provisioner/ && ./runProvisioning.sh) run each nifi docker (secloud|booth|cloud/nifi/ && ./runNifi.sh)

RPi deployment

  • In pi/deploy, edit deploy.cfg to contain your deployment information (Event WiFi, Timezone, and Bastion host running deployment service)
  • Put your version of NiFi into the pi/deploy directory as nifi.tar.gz (suggest a cut down version of just the /nifi/* content)
  • Add client certificates to the deploy directory.
  • Deploy Rasbian to your Raspberry Pi3
  • Power on the device in the intended location
  • Copy the contents of the pi/deploy directory to the /home/pi/ directory.

This is easily achieved via a direct ethernet connection (Mac: Internet sharing to Thunderbolt adapter, connect to RPi, "arp -a | grep 192.168.2" to find the DHCP ip)

  • Execute the pi/deploy/bootstrap.sh script as root (sudo /home/pi/deploy/bootstrap.sh)

Script logs to /var/log/piwinifi_bootstrap.log

Once the RPi has bootstraped and rebooted, check /var/log/piwinifi_launcher.log for expected boot and connect behavior, nifi start, etc. Then connect to the Bastion host to authorise the RPi device to connect to NiFi.

##TODO:

  1. some of the keystore properties will need setting in the nifi flows. This should really be scripted through API calls.
  2. Pi image builder needs more testing
  3. Some integration tests wouldn't hurt.

About

A NiFi demo for collecting wifi data from conferences

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 62.1%
  • Python 21.4%
  • Scala 7.6%
  • JavaScript 5.8%
  • HTML 2.0%
  • CSS 1.1%