Changes between Version 4 and Version 5 of Screenshots
- Timestamp:
- Jun 16, 2010, 6:23:05 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Screenshots
v4 v5 1 [[PageOutline(3-4)]] 1 2 == Screencasts == 2 3 3 4 Providing ''screenshots'' of a daemon with no human interface is quite challenging -- not to say impossible. Nevertheless, here is a series of video which show the daemon in use. Please be tolerant for the quality, creating a screencast is not so easy! 4 5 5 [[TOC(inline, depth=3)]]6 7 6 ---- 8 7 9 === Test Application ===8 === Test Application (test_app.fdx) === 10 9 11 10 This first video shows the {{{ test_app }}} extension in action. This extension is a non-standard ''ping''-like application designed to test Diameter connectivity between two freeDiameter nodes. It can also be used to check routing behavior etc... … … 18 17 #!graphviz 19 18 graph G { 19 graph [bgcolor="#E8E8E8C8"]; 20 20 rankdir = "LR" 21 21 node [shape=box]; 22 22 edge [color=blue]; 23 cli [ label="cli.simple.testbed.aaa"] 24 serv [label="serv.simple.testbed.aaa" ] 25 cli -- serv [label=Diameter]; 23 serv [ 24 label="serv.simple.testbed.aaa" 25 URL="#serv.simple.testbed.aaa" 26 ] 27 cli [ 28 label="cli.simple.testbed.aaa" 29 URL="#cli.simple.testbed.aaa" 30 ] 31 serv -- cli [label=Diameter]; 26 32 } 27 33 }}}