Is it possible to have Ethernet and WiFi as network interface enabled at a time ? #49417
-
Hello All, I am just trying to understand possibility of two network interfaces availability in a system at a time. Can anyone share any input or some pointers on this ? Thanks!! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
I am also having same question, is it possible to enable two network interface at a time. Actually, we have a requirement to enable both RNDIS and WIFI together. we have tried integrating RNDIS with WIFI sample application, but it is always taking WIFI as a network interface and RNDIS is not at all working with WIFI. Can anyone guide me on this |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
@mohanrajd-eaton Both the Wifi and USB Ethernet should be possible to be enabled at the same time, the network stack does not restrict the interface types that are active simultaneously. Perhaps there is some limit that is hit as having multiple interfaces requires more resources from the system. For the stack trace, you could try to increase the net_mgmt stack size (default is 768 bytes), try to adjust the |
Beta Was this translation helpful? Give feedback.
@jukkar After increasing size of CONFIG_NET_MGMT_EVENT_STACK_SIZE, Ethernet and WiFi working fine. Thanks million for your input.