summaryrefslogtreecommitdiffstats
path: root/images/user/tftp-proxy-1.puml
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2020-02-18 11:09:00 +1100
committerChris Johns <chrisj@rtems.org>2020-02-18 11:09:00 +1100
commit2c37918140d800f7c2ec7c2e9b8bb4286619ab3f (patch)
treed0f88d28b886698d259b5add58939f2d475cfa69 /images/user/tftp-proxy-1.puml
parentdoc/raspberrypi: Added instructions for raspberrypi (diff)
downloadrtems-docs-2c37918140d800f7c2ec7c2e9b8bb4286619ab3f.tar.bz2
user/tools: Add RTEMS TFTP Proxy command documentation
Diffstat (limited to '')
-rw-r--r--images/user/tftp-proxy-1.puml34
1 files changed, 34 insertions, 0 deletions
diff --git a/images/user/tftp-proxy-1.puml b/images/user/tftp-proxy-1.puml
new file mode 100644
index 0000000..7f27c73
--- /dev/null
+++ b/images/user/tftp-proxy-1.puml
@@ -0,0 +1,34 @@
+'
+' TFTP Proxy 1:
+'
+' Copyright (c) 2020 Chris Johns <chrisj@rtems.org>
+' All rights reserved.
+'
+@startuml
+
+ agent Beaglebone as bbb
+ agent MicroZed as uzed
+ agent RPi2 as rpi2
+
+ rectangle Proxy {
+ agent "TFTP Proxy" as proxy
+ }
+
+ rectangle "CI Tester" as tester {
+ agent "Beaglebone Black" as bbb_proxy
+ agent "MicroZed (ARM Zynq)" as uzed_proxy
+ }
+
+ rectangle "Developer" as devel {
+ agent "RasberryPi 2" as rpi2_proxy
+ }
+
+ bbb -- proxy : "(10.0.0.10:69)"
+ uzed -- proxy : "(10.0.0.10:69)"
+ rpi2 -- proxy : "(10.0.0.10:69)"
+
+ proxy .. bbb_proxy : (10.0.0.100:9001)
+ proxy .. uzed_proxy : (10.0.0.100:9002)
+ proxy .. rpi2_proxy : (10.0.0.110:9001)
+
+@enduml