Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 2.08 KB

README.md

File metadata and controls

26 lines (20 loc) · 2.08 KB

Dot15d4 Toolkit

IEEE 802.15.4 (Zigbee/Zwave/900MHz) Testing Tools Installed on Ubuntu

Docker Image

The Dockerfile contains the instructions to build a Docker image containing tools to test IEEE 802.15.4 testing tools. These tools include:

Helpful Notes

Docker Shells

To get a shell on a Docker container you can use the built in mechanisms provide through Kitematic. However, on Windows, this opens a shell in the PowerShell terminal. While robust, the PowerShell terminal does not handle output from the Docker terminals well. Therefore I recommend using a different terminal, such as Cygwin, to access the container.

  1. SSH to Docker IP Address: ssh [email protected]
  2. Open terminal to Docker Container: docker exec -i -t <image_id> /bin/bash
  3. Leverage screen to provide logs and better shell interactions: docker exec -i -t <image_id> bash -c "exec >/dev/tty 2>/dev/tty </dev/tty && /usr/bin/screen -s /bin/bash"

References