rtbrick / bngblaster

The BNG Blaster is an open-source network tester for access and routing protocols.
https://rtbrick.github.io/bngblaster/
BSD 3-Clause "New" or "Revised" License
202 stars 32 forks source link

TCP Flags #235

Closed GIC-de closed 6 months ago

GIC-de commented 6 months ago
$ sudo bngblaster-cli run.sock stream-update flow-id 1 tcp-flags syn-acl
{
    "status": "error",
    "code": 400,
    "message": "invalid tcp-flags (ack|fin|fin-ack|syn|syn-ack|rst)"
}
$ sudo bngblaster-cli run.sock stream-update flow-id 1 tcp-flags syn-ack
{
    "status": "ok",
    "code": 200
}
$ sudo bngblaster-cli run.sock stream-update flow-id 1 tcp-flags fin-ack
{
    "status": "ok",
    "code": 200
}
$ sudo bngblaster-cli run.sock stream-update flow-id 1 tcp-flags fin
{
    "status": "ok",
    "code": 200
}
$ sudo bngblaster-cli run.sock stream-update flow-id 1 tcp-flags rst
{
    "status": "ok",
    "code": 200
}
$