Test Block: Difference between revisions

From VoIPmonitor.org
No edit summary
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<kroki lang="mermaid">
Test 1 - Method 1:
flowchart TB
    NET([Network\nSIP / RTP / WebRTC])


    subgraph SENSOR[Sensor]
<kroki lang="plantuml">
        CAP[Packet Capture]
@startuml
        QA[Quality Analysis]
title Remote Probing (Local Processing)
    end


    subgraph STORAGE[Storage]
skinparam backgroundColor white
        DB[(MySQL/MariaDB\nCDR Data)]
skinparam defaultFontColor #1e293b
        PCAP[(PCAP Files\nRecordings)]
skinparam ArrowColor #475569
    end


     subgraph GUI[Web GUI]
skinparam rectangle {
        WEB[Web Interface]
     BackgroundColor #e0f4fc
        REP[Reports & Playback]
    BorderColor #00A7E3
    end
    RoundCorner 8
}


    NET --> SENSOR
skinparam database {
    SENSOR --> |CDR| DB
     BackgroundColor #fef3e2
     SENSOR --> |packets| PCAP
     BorderColor #f78d1d
     GUI --> |query| DB
}
    GUI --> |playback| PCAP


     style NET fill:#fff,stroke:#00719A,stroke-width:2px,color:#1e293b
skinparam storage {
     style SENSOR fill:#fff,stroke:#00A7E3,stroke-width:2px,color:#1e293b
    BackgroundColor #f1f5f9
     style STORAGE fill:#fff,stroke:#f78d1d,stroke-width:2px,color:#1e293b
    BorderColor #475569
     style GUI fill:#fff,stroke:#00A7E3,stroke-width:2px,color:#1e293b
}
    style DB fill:#fff,stroke:#f78d1d,color:#1e293b
 
    style PCAP fill:#fff,stroke:#f78d1d,color:#1e293b
skinparam cloud {
     style CAP fill:#e0f4fc,stroke:#00A7E3,color:#1e293b
     BackgroundColor #e0f4fc
     style QA fill:#e0f4fc,stroke:#00A7E3,color:#1e293b
    BorderColor #00719A
     style WEB fill:#e0f4fc,stroke:#00A7E3,color:#1e293b
}
    style REP fill:#e0f4fc,stroke:#00A7E3,color:#1e293b
 
cloud "PBX/SBC\nTraffic" as NET1
rectangle "**Remote Sensor**\nLocal Processing" as SENSOR1
storage "PCAP" as PCAP1
 
rectangle "**Web GUI**" as GUI
database "**MySQL**" as DB
 
NET1 -down-> SENSOR1 : capture
SENSOR1 -down-> PCAP1 : packets
SENSOR1 -right-> DB : CDR only
GUI -down-> DB : query
 
@enduml
</kroki>
 
Test 2 - Method 2:
 
<kroki lang="plantuml">
@startuml
title Software Packet Mirroring (SPOOF Mode)
 
skinparam backgroundColor white
skinparam defaultFontColor #1e293b
skinparam ArrowColor #475569
 
skinparam rectangle {
     BackgroundColor #e0f4fc
    BorderColor #00A7E3
    RoundCorner 8
}
 
skinparam database {
    BackgroundColor #fef3e2
     BorderColor #f78d1d
}
 
skinparam storage {
    BackgroundColor #f1f5f9
    BorderColor #475569
}
 
skinparam cloud {
     BackgroundColor #e0f4fc
    BorderColor #00719A
}
 
cloud "PBX/SBC\nTraffic" as NET1
rectangle "**Sender Sensor**\nMinimal footprint" as SENDER
 
rectangle "**Receiver Sensor**\nFull processing" as RECEIVER
rectangle "**Web GUI**" as GUI
database "**MySQL**" as DB
storage "PCAP" as PCAP
 
NET1 -down-> SENDER : capture
SENDER -right-> RECEIVER : compressed\nTCP stream
RECEIVER -down-> DB : CDR
RECEIVER -down-> PCAP : packets
GUI -down-> DB : query
 
@enduml
</kroki>
 
Test 3 - SPAN:
 
<kroki lang="plantuml">
@startuml
title Physical Network Tapping (SPAN)
 
skinparam backgroundColor white
skinparam defaultFontColor #1e293b
skinparam ArrowColor #475569
 
skinparam rectangle {
     BackgroundColor #e0f4fc
    BorderColor #00A7E3
    RoundCorner 8
}
 
skinparam database {
    BackgroundColor #fef3e2
     BorderColor #f78d1d
}
 
skinparam storage {
    BackgroundColor #f1f5f9
    BorderColor #475569
}
 
skinparam cloud {
     BackgroundColor #e0f4fc
    BorderColor #00719A
}
 
cloud "VoIP Traffic" as TRAFFIC
rectangle "**Hardware PBX**" as PBX
rectangle "Network Switch" as SWITCH
rectangle "**VoIPmonitor Sensor**" as SENSOR
database "MySQL" as DB
storage "PCAP" as PCAP
 
TRAFFIC -down-> SWITCH
SWITCH -down-> PBX : normal
SWITCH -right-> SENSOR : SPAN port
SENSOR -down-> DB : CDR
SENSOR -down-> PCAP : packets
 
@enduml
</kroki>
</kroki>

Latest revision as of 19:53, 11 December 2025

Test 1 - Method 1:

Test 2 - Method 2:

Test 3 - SPAN: