Osmocom Remote SIM Software Suite
https://osmocom.org/projects/osmo-remsim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
574 B
23 lines
574 B
digraph { |
|
rankdir=LR; |
|
|
|
subgraph cluster_0 { |
|
label="Data Center"; |
|
SIM [shape=rect]; |
|
Reader [shape=rect]; |
|
bankd [label="remsim-bankd"]; |
|
} |
|
|
|
subgraph cluster_1 { |
|
label="Remote Site"; |
|
client [label="remsim-client"]; |
|
SIMtrace [label="SIMtrace2\nAPP=cardem",shape=rect]; |
|
Phone [label="Phone/Modem",shape=rect]; |
|
} |
|
|
|
SIM -> Reader [label="ISO-7816-2/3",dir=both]; |
|
Reader -> bankd [label="USB CCID",dir=both]; |
|
bankd -> client [label="RSPRO/IPA/TCP/IP",dir=both]; |
|
client -> SIMtrace [label="USB",dir=both]; |
|
SIMtrace -> Phone [label="ISO-7816-2/3",dir=both]; |
|
}
|
|
|