Navigation


Changes between Version 4 and Version 5 of Screenshots


Ignore:
Timestamp:
Jun 16, 2010, 6:23:05 PM (14 years ago)
Author:
Sebastien Decugis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Screenshots

    v4 v5  
     1[[PageOutline(3-4)]]
    12== Screencasts ==
    23
    34Providing ''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!
    45
    5 [[TOC(inline, depth=3)]]
    6 
    76----
    87
    9 === Test Application ===
     8=== Test Application (test_app.fdx) ===
    109
    1110This 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...
     
    1817#!graphviz
    1918graph G {
     19    graph [bgcolor="#E8E8E8C8"];
    2020    rankdir = "LR"
    2121    node [shape=box];
    2222    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];
    2632}
    2733}}}