<div dir="ltr">Hi,<br><br>There are multiple tutorials online on how to connect a modem to a 5G core with multiple PDUs using mbimcli (like <a href="https://www.kernel.org/doc/html/latest/networking/cdc_mbim.html#mbim-data-channel-userspace-abi">https://www.kernel.org/doc/html/latest/networking/cdc_mbim.html#mbim-data-channel-userspace-abi</a>, or <a href="https://paldan.altervista.org/linux-mbim-wwan-multiple-pdn-setup/?doing_wp_cron=1705964667.8114559650421142578125">https://paldan.altervista.org/linux-mbim-wwan-multiple-pdn-setup/?doing_wp_cron=1705964667.8114559650421142578125</a>).<br><br>Essentially in mbimcli one can specify a session id, as part of the access string. This session ID is then mapped to a VLAN ID, which is mapped to a virtual interface on top of the modem network interface. In short, something like this:<br><br>```<br>ip link add wwan0.1 link wwan0 type vlan id 1<br>ip link add wwan0.2 link wwan0 type vlan id 2<br>mbimcli -p -d /dev/cdc-wdm0 --connect=apn=apnA,session-id=1,ip-type=ipv4 --no-close --no-open=42 <br>mbimcli -p -d /dev/cdc-wdm0 --connect=apn=apnB,session-id=2,ip-type=ipv4 --no-close --no-open=42 <br>```<br><br>Is it possible to achieve the same result using mmcli, or the ModemManager API?<br><br>Thank you,<br>Radu<div><br></div></div>