1
0
mirror of https://github.com/rtbrick/bngblaster.git synced 2024-05-06 15:54:57 +00:00

Minor docu update

This commit is contained in:
Christian Giese
2021-03-10 17:04:56 +01:00
parent 087b95120e
commit 150579e355
3 changed files with 18 additions and 5 deletions

View File

@ -3,7 +3,7 @@
![Build](https://github.com/rtbrick/bngblaster/workflows/Build/badge.svg?branch=main)
The BNG Blaster is a test tool to simulate thousands of PPPoE or IPoE subscribers including IPTV,
traffic verification and convergence testing capabilities.
L2TPv2, traffic verification and convergence testing capabilities.
A short introduction can be found on [YouTube](https://youtu.be/EHJ70p0_Sw0 "BNG Blaster")
or checkout the [documentation](https://rtbrick.github.io/bngblaster/) for details.

View File

@ -9,7 +9,7 @@ targeted for max scaling with small resource footprint, simple to use and easy t
our test automation infrastructure.
The BNG Blaster is able to simulate more than hundred thousand PPPoE subscribers including IPTV,
traffic verification and convergence testing capabilities.
L2TPv2, traffic verification and convergence testing capabilities.
* *High Scaling:* > 100K sessions
* *Low CPU and Memory Footprint:* < 100MB memory for 16K sessions

View File

@ -52,7 +52,12 @@ The received flows can be queried using the control socket.
"packets-rx-ipv4": 0,
"packets-rx-ipv4-tcp": 0,
"packets-rx-ipv4-udp": 0,
"packets-rx-ipv4-host-internal": 0
"packets-rx-ipv4-host-internal": 0,
"packets-rx-ipv6": 0,
"packets-rx-ipv6-tcp": 0,
"packets-rx-ipv6-udp": 0,
"packets-rx-ipv6-host-internal": 0,
"packets-rx-ipv6-no-next-header": 0
},
{
"source-address": "1.1.1.1",
@ -68,11 +73,19 @@ The received flows can be queried using the control socket.
"packets-rx-ipv4": 820,
"packets-rx-ipv4-tcp": 0,
"packets-rx-ipv4-udp": 0,
"packets-rx-ipv4-host-internal": 820
"packets-rx-ipv4-host-internal": 820,
"packets-rx-ipv6": 0,
"packets-rx-ipv6-tcp": 0,
"packets-rx-ipv6-udp": 0,
"packets-rx-ipv6-host-internal": 0,
"packets-rx-ipv6-no-next-header": 0
}
]
}
```
The `packets-rx-ipv4-host-internal` refers to the IPv4 protocol number 61 (any host internal protocol)
which is used by some network testers as default type for traffic streams.
which is used by some network testers as default type for traffic streams.
The same is valid for `packets-rx-ipv6-host-internal` which refers to next header 61 and
`packets-rx-ipv6-no-next-header` with next header 59.