You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The si.networkInterfaces() does not list all the interfaces present on the machine.
Reason
Network interfaces are fetched using os.networkInterfaces(), but it is not listing all the interfaces. This issue is tracked in the Node.js repository: os.networkInterfaces does not list all interfaces.
Current Output
There are 3 interfaces (lo - loopback interface, ens160 - active interface, ens192 - inactive interface) on the machine. However, only 2 interfaces (lo and ens160) are listed.
Expected behavior
All 3 interfaces (lo, ens160, and ens192) should be listed.
Environment:
OS: Ubuntu 22
Additional Info
The text was updated successfully, but these errors were encountered:
Describe the bug
The
si.networkInterfaces()
does not list all the interfaces present on the machine.Reason
Network interfaces are fetched using
os.networkInterfaces()
, but it is not listing all the interfaces. This issue is tracked in the Node.js repository: os.networkInterfaces does not list all interfaces.Current Output
There are 3 interfaces (
lo
- loopback interface,ens160
- active interface,ens192
- inactive interface) on the machine. However, only 2 interfaces (lo
andens160
) are listed.Expected behavior
All 3 interfaces (
lo
,ens160
, andens192
) should be listed.Environment:
Additional Info
The text was updated successfully, but these errors were encountered: