Giter VIP home page Giter VIP logo

Comments (13)

herlesupreeth avatar herlesupreeth commented on May 26, 2024

Paste here your .env contents

from docker_open5gs.

rajkumarv-bcw avatar rajkumarv-bcw commented on May 26, 2024

Paste here your .env contents

env.zip

from docker_open5gs.

herlesupreeth avatar herlesupreeth commented on May 26, 2024
# UPF
UPF_IP=172.23.0.8
UPF_ADVERTISE_IP=192.168.168.7

This is wrong, since you are using only 4G/4G-5G Hybrid Core, UPF_ADVERTISE_IP should be same as UPF_IP i.e.

# UPF
UPF_IP=172.23.0.8
UPF_ADVERTISE_IP=172.23.0.8

from docker_open5gs.

rajkumarv-bcw avatar rajkumarv-bcw commented on May 26, 2024

Thanks for the quick help. I'll change this configuration

from docker_open5gs.

rajkumarv-bcw avatar rajkumarv-bcw commented on May 26, 2024

Steps followed:
Changed the .env (UPF_ADVERTISE_IP=172.23.0.8)
set -a
source .env
docker-compose -f nsa-deploy.yaml build --no-cache
docker-compose build --no-cache dns mysql pcscf scscf icscf
docker system prune -f
docker-compose up

UE initiates REGISTER and failed to find scscf. Attaching the PCAP
scscf_fwd_error.zip

scscf | 5(42) DEBUG: ims_auth [authorize.c:232]: reg_await_timer(): [DONE] Looking for expired/useless at 113147362
pcscf | 104(140) NOTICE: <script>: PCSCF: REGISTER sip:ims.mnc001.mcc404.3gppnetwork.org (sip:[email protected] (192.168.101.2:32771) to sip:[email protected], [email protected])
pcscf | 104(140) INFO: rr [rr_mod.c:515]: pv_get_route_uri_f(): No route header present.
pcscf | 104(140) NOTICE: <script>: PCSCF REGISTER:
pcscf | Destination URI:
pcscf | Request URI: sip:ims.mnc001.mcc404.3gppnetwork.org
pcscf | 104(140) INFO: rr [rr_mod.c:515]: pv_get_route_uri_f(): No route header present.
pcscf | 104(140) NOTICE: <script>: Source IP and Port: (192.168.101.2:32771)
pcscf | Route-URI:
pcscf | 104(140) NOTICE: <script>: Received IP and Port: (172.23.0.21:5060)
pcscf | 104(140) NOTICE: <script>: Contact header: sip:[email protected]:5060;+sip.instance="urn:gsma:imei:35158111-979597-0";q=1.0;+g.3gpp.icsi-ref="urn%3Aurn-7%3A3gpp-service.ims.icsi.mmtel";video;+g.3gpp.smsip
pcscf | 104(140) INFO: ims_registrar_pcscf [sec_agree.c:296]: cscf_get_security_verify(): No security-verify parameters found
icscf | 32(65) INFO: ims_icscf [cxdx_uar.c:71]: create_uaa_return_code(): created AVP successfully : [uaa_return_code]
icscf | 10(43) INFO: ims_icscf [cxdx_avp.c:137]: cxdx_get_avp(): cxdx_get_server_name: Failed finding avp
icscf | 10(43) INFO: ims_icscf [cxdx_avp.c:137]: cxdx_get_avp(): cxdx_get_capabilities: Failed finding avp
icscf | 10(43) INFO: ims_icscf [cxdx_avp.c:137]: cxdx_get_avp(): cxdx_get_result_code: Failed finding avp
icscf | 10(43) INFO: ims_icscf [cxdx_uar.c:71]: create_uaa_return_code(): created AVP successfully : [uaa_return_code]
icscf | 10(43) ERROR: [core/resolve.c:1715]: sip_hostport2su(): could not resolve hostname: "scscf.ims.mnc001.mcc001.3gppnetwork.org"
icscf | 10(43) ERROR: tm [ut.h:310]: uri2dst2(): failed to resolve "scscf.ims.mnc001.mcc001.3gppnetwork.org"
icscf | 10(43) ERROR: tm [t_fwd.c:1728]: t_forward_nonack(): failure to add branches
icscf | 10(43) ERROR: tm [tm.c:1679]: _w_t_relay_to(): t_forward_noack failed

from docker_open5gs.

rajkumarv-bcw avatar rajkumarv-bcw commented on May 26, 2024

scscf.ims.mnc001.mcc001.3gppnetwork.org --> MCC supposed to be 404

from docker_open5gs.

herlesupreeth avatar herlesupreeth commented on May 26, 2024

Are you using cx_test branch?

Can you post here the content of 'scscf' tables in icscf database?

from docker_open5gs.

herlesupreeth avatar herlesupreeth commented on May 26, 2024

Delete all entries in nds_trusted_domains and s_cscf table of icscf database.. then bring down the stack and bring it back up again

from docker_open5gs.

rajkumarv-bcw avatar rajkumarv-bcw commented on May 26, 2024

Are you using cx_test branch?
I'm using cx_test branch

Can you post here the content of 'scscf' tables in icscf database?
mysql> select * from nds_trusted_domains;
+----+-----------------------------------+
| id | trusted_domain |
+----+-----------------------------------+
| 1 | ims.mnc001.mcc001.3gppnetwork.org |
+----+-----------------------------------+

mysql> select * from s_cscf ;
+----+-----------------------+--------------------------------------------------+
| id | name | s_cscf_uri |
+----+-----------------------+--------------------------------------------------+
| 1 | First and only S-CSCF | sip:scscf.ims.mnc001.mcc001.3gppnetwork.org:6060 |
+----+-----------------------+--------------------------------------------------+

mysql> select * from nds_trusted_domains ;
Empty set (0.00 sec)

mysql> select * from s_cscf;
Empty set (0.00 sec)

I have deleted both entries and facing the same error.

from docker_open5gs.

herlesupreeth avatar herlesupreeth commented on May 26, 2024

Try executing the following manually the icscf container

mysql -u root -h ${MYSQL_IP} icscf -e "INSERT INTO s_cscf (name, s_cscf_uri) VALUES ('First and only S-CSCF', 'sip:scscf.$IMS_DOMAIN:6060');"

mysql -u root -h ${MYSQL_IP} icscf -e "INSERT INTO nds_trusted_domains (trusted_domain) VALUES ('$IMS_DOMAIN');"

from docker_open5gs.

rajkumarv-bcw avatar rajkumarv-bcw commented on May 26, 2024

Thanks a lot. It worked. Connected 5 UE and I tried to list the REGISTERED users from SCSCF database and its showing empty

mysql -u root -h $MYSQL_IP
use scscf;
select * from subscriber ; //(and all items)
Empty set (0.00 sec)

from docker_open5gs.

herlesupreeth avatar herlesupreeth commented on May 26, 2024

Because no data is written in SCSCF database as far as I know

from docker_open5gs.

rajkumarv-bcw avatar rajkumarv-bcw commented on May 26, 2024

I'm can run SRS-eNB and the docker_open5gs in separate machine. Great Thanks for your support.

from docker_open5gs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.