Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-AMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-AMF
Commits
a4627f0a
Commit
a4627f0a
authored
Feb 15, 2022
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update conf file for UDM
parent
21c5dbad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
etc/amf.conf
etc/amf.conf
+4
-4
scripts/entrypoint.sh
scripts/entrypoint.sh
+4
-0
No files found.
etc/amf.conf
View file @
a4627f0a
...
...
@@ -99,10 +99,10 @@ AMF =
UDM
:
{
IPV4_ADDRESS
=
"
127.0.0.1"
;
# YOUR UDM CONFIG HERE
PORT
=
80
;
# YOUR UDM CONFIG HERE (default: 80)
API_VERSION
=
"
v1"
;
# YOUR UDM API VERSION FOR SBI CONFIG HERE
FQDN
=
"
udm"
;
# YOUR UDM FQDN CONFIG HERE
IPV4_ADDRESS
=
"
@UDM_IPV4_ADDRESS@"
;
# YOUR UDM CONFIG HERE
PORT
=
@
UDM_PORT
@;
# YOUR UDM CONFIG HERE (default: 80)
API_VERSION
=
"
@UDM_API_VERSION@"
;
# YOUR UDM API VERSION FOR SBI CONFIG HERE
FQDN
=
"
@UDM_FQDN@"
;
# YOUR UDM FQDN CONFIG HERE
#DEFAULT_SINGLE_NSSAIS = [{"sst": 1, "sd":"1"}, {"sst": 2, "sd":"2"}]
};
...
...
scripts/entrypoint.sh
View file @
a4627f0a
...
...
@@ -7,6 +7,9 @@ CONFIG_DIR="/openair-amf/etc"
# Default values
EXTERNAL_AUSF
=
${
EXTERNAL_AUSF
:-
no
}
EXTERNAL_UDM
=
${
EXTERNAL_UDM
:-
no
}
UDM_PORT
=
${
UDM_PORT
:-
80
}
UDM_API_VERSION
=
${
UDM_API_VERSION
:-
v2
}
UDM_FQDN
=
${
UDM_FQDN
:-
oai
-udm
}
EXTERNAL_NRF
=
${
EXTERNAL_NRF
:-
no
}
NRF_SELECTION
=
${
NRF_SELECTION
:-
no
}
EXTERNAL_NSSF
=
${
EXTERNAL_NSSF
:-
no
}
...
...
@@ -24,6 +27,7 @@ if [[ ${USE_FQDN_DNS} == "yes" ]];then
SMF_IPV4_ADDR_1
=
${
SMF_IPV4_ADDR_1
:-
0
.0.0.0
}
NRF_IPV4_ADDRESS
=
${
NRF_IPV4_ADDRESS
:-
0
.0.0.0
}
AUSF_IPV4_ADDRESS
=
${
AUSF_IPV4_ADDRESS
:-
0
.0.0.0
}
UDM_IPV4_ADDRESS
=
${
UDM_IPV4_ADDRESS
:-
0
.0.0.0
}
fi
for
c
in
${
CONFIG_DIR
}
/
*
.conf
;
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment