It is a struggle to install and manage online services in an offline world. Simple things like updates or installing new packages becomes a hassle. We work in highly secure prison environments where internet is not available.
The goal here is to create a tool where we can package apps that can be easily copied to a USB drive, then pushed to a server in the offline environment.
This project consists of building and staging of apps, easy deployment into facilities, and offline laptops that students can take back to their unit to continue their school work.
-
Create a place for skilled IT personnel to stage and place apps that are ready to deploy
-
Limit the need for skilled IT personnel to deal with the actual deployment process
-
Provide laptop images that can sync to a learning management system, credential for an individual student, and apply security settings to keep the system secure during use
- Project Lead:
- Brian Walsh bwalsh@sbctc.edu
- Software Development:
- Ray Pulsipher rpulsipher@pencol.edu
- Kent James kent@caspia.com
- Product Testing:
- Mike Huse mdhuse@DOC1.WA.GOV
- Daniel Gonzales dgonzales@DOC1.WA.GOV
- Robert Deans rpdeans@DOC1.WA.GOV
- Ian Thomas IThomas@clark.edu
- Docker App Development:
- Kris Gonyo kristophergonyo@gmail.com
- Fabrication - Secure sync boxes
- Kristopher Margart kwmargart@DOC1.WA.GOV
-
Skilled IT personnel create docker apps and setup code to sync these apps and app data to a device (e.g. USB drive or Laptop)
-
Sync USB drive in online or offline mode with a few button clicks - Goal is to have non IT personnel do this
-
Image laptops and credential them for individual students - Goal is non IT personnel or local IT personnel to be able to do this easily
-
Student brings laptop to docking station to sync with learning management system - download materials, upload completed work
We utilize Docker containers for micro services. You will need a machine that can run docker containers on the outside to build and setup your services, and a docker machine on the inside to transfer images and data to.
+----------------------------------------------------------------------+
| Online Server |
| |
| you need a linux machine running docker |
| - can host this on campus (recommended) |
| - or on your desktop in virtual box/hyper-v/vmware/etc... |
| |
| Pre built Linux with Docker Available Here: |
| - https://susestudio.com/a/P08rUy/ope-docker |
| |
+------------------^---------------------------------------------------+
|
|
+----V--------------------------------------------------+
| USB Drive (or laptop) |
| |
| Use a GUI based app to sync between servers |
| - Pulls apps/data from the online server |
| - Pushes apps/data to the offline server |
| - Clickable buttons - made for NON IT personnel |
+------------------------^------------------------------+
|
|
+----V-------------------------------------------------------+
| Offline Server |
| |
| identical to the online server, but apps/data will |
| be pushed into this system |
| |
| Use the same docker system as the online system: |
| - https://susestudio.com/a/P08rUy/ope-docker |
+--^----------------------------------------------------------+
|
|
+----------------------V------------------------------------+
| Inmate Laptop |
| |
| Credentialed with the LMS app installed |
| Will pull course work from offline LMS server and |
| push completed work back to the server for grading |
+-----------------------------------------------------------+
-
Get a linux distro with docker installed in both your online and offline servers:
- Linux image ready to go (ISO - burn to DVD): http://correctionsed.com/updates/OPE_Docker.x86_64-0.0.10.preload.iso (broken link https://susestudio.com/a/P08rUy/ope-docker)
- Assign a static IP address to each server and write it down
- Login with root (password: changeme) and use the passwd utility to change to a secure password
-
From online computer, download the OPE Git project at: https://github.com/operepo/ope
- From the GREEN button, click and choose "Download Zip".
- Unzip this onto your USB drive into a folder called ope (e.g. e:\ope )
-
Run the SyncApp.exe app
- In the ope folder, you should see a folder called SyncApp. Run the SyncApp.exe file from there
-
Configure your settings
- Make sure you put in the correct IP for each server as well as the password you set
-
Run Online
- Choose the online button, then click Run. This will start pulling in the selected apps and syncing them to the USB drive
-
Unplug, take USB drive to offline server, the choose the Offline option and run it
- This will push the apps/data on the USB drive to the offline server
-
Repeat online/offline as often as needed
-
Setup DNS forwarder to .ed domain name to the static IP of the server. This forwards all DNS queries for the .ed domain to the docker apps to resolve DNS automatically
- For Active Directory DNS - add a conditional forwarder for the domain ed -> to the static IP (put in the correct IP for the online or offline server)
- For Linux DNS users, a wildcard DNS should work too if you don't know how to do a conditional forwarder
Use this method to get everything ready to do development.
-
Get a linux distro with docker installed in both your online and offline servers:
- Linux image ready to go (ISO - burn to DVD): https://susestudio.com/a/P08rUy/ope-docker
- Assign a static IP address to each server and write it down
-
Install Git
-
Python 2.7.? and needed libraries (python.org - choose 2.7? MSI installer)
- NOTE: On the options page of the install, make sure "Add Python to Path" is selected
- Run the InstallPythonModules.cmd batch file as admin to install all the needed python modules
-
Clone the OPE project into a folder on your computer.
- From the command line, CD to the folder you want to be in: cd git_projects
- Clone the rep to your computer: git clone https://github.com/operepo/ope.git
-
Use the SyncApp tool to push apps to your online linux server (see instructions above)
-
SSH into your online server (putty is a great tool from windows)
-
Move to the OPE folder: cd /ope
-
Move to the folder with the docker files: cd docker_build_files
-
Start the apps: ./up.sh (use ./up.sh b if you want to build the docker apps from here)
-
From here you can also use docker-compose commands:
- python ../build_tools/rebuild_compose.py --> rebuilds the docker-compose file based on activated apps
- docker-compose up -d --> start up all enabled apps
- docker-compose down --> stop all apps
Revising to use dockerhub to pull built images as well as include client tools/etc... This is currently in process and could mean breaking changes to the prev build process.
option space PXE;
option PXE.mtftp-ip code 1 = ip-address;
option PXE.mtftp-cport code 2 = unsigned integer 16;
option PXE.mtftp-sport code 3 = unsigned integer 16;
option PXE.mtftp-tmout code 4 = unsigned integer 8;
option PXE.mtftp-delay code 5 = unsigned integer 8;
option arch code 93 = unsigned integer 16; # RFC4578
use-host-decl-names on;
ddns-update-style interim;
ignore client-updates;
authoritative;
allow booting;
allow bootp;
option option-128 code 128 = string;
option option-129 code 129 = text;
next-server fog.ed;
#filename "pxelinux.0";
#filename "snponly.efi";
#filename "ipxe.efi";
option tftp-server-name "fog.ed";
#option bootfile-name "pelinux.0";
#option bootfile-name "undionly.kpxe"; # works for vmplayer
#option bootfile-name "snponly.efi";
#option bootfile-name "ipxe.efi";
#range dynamic-bootp 192.168.10.25 192.168.10.28;
class "UEFI-32-1" {
match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00006";
filename "i386-efi/ipxe.efi";
}
class "UEFI-32-2" {
match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00002";
filename "i386-efi/ipxe.efi";
}
class "UEFI-64-1" {
match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00007";
#filename "ipxe.efi";
filename "snp.efi"; # works for hyperv
}
class "UEFI-64-2" {
match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00008";
#filename "ipxe.efi";
filename "snp.efi"; # Works for hyper v
}
class "UEFI-64-3" {
match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00009";
#filename "ipxe.efi";
filename "snp.efi"; # Works for hyperv
}
class "Legacy" {
match if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000";
filename "undionly.kkpxe";
}