Detect LTE roaming

Hi,

Is there a way for my Chateau LTE12 to detect when my local masts go down and the device starts roaming? I would like it to scan for my home network periodically and if it is available again do a band lock to re-connect to it. For some reason I can never reconnect to my home network automatically without doing a band lock :confused:

I am not quite sure i fully understand the Problem…

But Nevertheless,
you can use something like this to save the Physical-CellID to a GLobal-Variable

/interface/lte/monitor [find] one do={:global ActualCellID $"phy-cellid"}

Using a Script, you can compare this to the expected your LOCAL Cell-ID and execute the needed function.
For exemple :

:global LocalMastID 12345
/interface/lte/monitor [find] one do={:global ActualCellID $"phy-cellid"}
:if ($LocalMastID = $ActualCellID) do={
	# "Home" Do some stuff
} else={
	# "Not Home" Do some other stuff
}