grpc: updates to fix throughput parsing, accounting for new connection changes, now supports throughput for network to network links
This commit is contained in:
parent
9218fb0b6f
commit
b5b7b8cdf9
5 changed files with 30 additions and 24 deletions
|
@ -276,8 +276,9 @@ class NodeBase(abc.ABC):
|
|||
mtu = DEFAULT_MTU
|
||||
if iface_data and iface_data.mtu is not None:
|
||||
mtu = iface_data.mtu
|
||||
name = f"veth{self.id}.{iface_id}.{self.session.short_session_id()}"
|
||||
localname = f"{name}p"
|
||||
unique_name = f"{self.id}.{iface_id}.{self.session.short_session_id()}"
|
||||
name = f"veth{unique_name}"
|
||||
localname = f"beth{unique_name}"
|
||||
iface = CoreInterface(
|
||||
iface_id,
|
||||
name,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue