03-07-2021, 11:09 AM
Finally...
After a long period of trial&error, my VoLTE with o2 (Germany) works on Mobian. And it was quite easy after all...
Here is what I did:
Disable VoLTE profile autoselection
Select the generic VoLTE profile
Restart the modem
Check the selected VoLTE profile with
Check the VoLTE status with
--> response should be
if it shows "1,0", checking and disabling the phone's "Aeroplane Mode" might help (it was magically on after the reset in my case)
Change the Network Mode in "Settings - Mobile" to "4g Only" and make a test call. It should work.
Cheers!
After a long period of trial&error, my VoLTE with o2 (Germany) works on Mobian. And it was quite easy after all...
Here is what I did:
Disable VoLTE profile autoselection
Code:
mmcli -m any --command='AT+QMBNCFG="AutoSel",0'
Select the generic VoLTE profile
Code:
mmcli -m any --command='AT+QMBNCFG="Select","ROW_Generic_3GPP"'
Restart the modem
Code:
mmcli -m any --command='AT+CFUN=1,1'
Check the selected VoLTE profile with
Code:
mmcli -m any --command='AT+QMBNCFG="List"'
Check the VoLTE status with
Code:
mmcli -m any --command='AT+QCFG="ims"'
--> response should be
Quote:'+QCFG: "ims",1,1'
if it shows "1,0", checking and disabling the phone's "Aeroplane Mode" might help (it was magically on after the reset in my case)
Change the Network Mode in "Settings - Mobile" to "4g Only" and make a test call. It should work.
Cheers!