Replies: 2 comments 1 reply
-
|
This use case wasn’t originally considered, but it might work if you configure your home router to send traffic with a VLAN tag, since A10NSP interfaces are by definition never untagged. |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
The topo is not supported now. Possible WA:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I use bngblaster-0.9.23 to test the NAT function of a home router. The Router's WAN port need get IP address from BNG Blaster.
At first, I used network interface. I found "gateway" parameter must be configured. In this situation, there is no gateway (or the gateway will be allocated by DHCP server).
Later, I changed to a10nsp interface. However, the Router's WAN port cannot get IP address.
Does BNG Blaster support this scenario? If yes, how to set up the configuration file? Thanks you in advance.
The json configuration file:
{ "interfaces": { "capture-include-streams": true, "a10nsp": [ { "__comment__": "DHCP Server", "interface": "enp1s0f0" } ], "access": [ { "__comment__": "DHCP Client", "interface": "enp1s0f1", "type": "ipoe", "ipv6": false, "stream-group-id": 1 } ] }, "dhcp": { "enable": true, "broadcast": false }, "session-traffic": { "ipv4-pps": 0 }, "streams": [ { "stream-group-id": 1, "name": "S1", "type": "ipv4", "direction": "both", "priority": 128, "length": 256, "pps": 1, "nat": true, "a10nsp-interface": "enp1s0f0" } ] }I added some debug logs in bngblaster codes and find in this scenario: after bngblaster receives the DHCP Discover, the session is NULL in bbl_a10nsp_rx_handler().
Beta Was this translation helpful? Give feedback.
All reactions