@mtryfoss: regarding the subst, probably it does the job with ipv4, however in regexp `.`
is matching any char, if you want to restrict it to match `.` as a char, one way is to
enclose it inside square brackets, like:
```
subst("/;alias=[0-9]+[.][0-9]+[.][0-9]+[.][0-9]+~[0-9]+~[0-9]+//g");
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2308#issuecomment-623464131