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
710fa651
Commit
710fa651
authored
Nov 30, 2021
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'config_file_update' into 'develop'
Config file update See merge request oai/cn5g/oai-cn5g-amf!77
parents
a951f1ca
cd0e535a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
build/scripts/build_amf
build/scripts/build_amf
+1
-1
etc/amf.conf
etc/amf.conf
+2
-2
scripts/entrypoint.sh
scripts/entrypoint.sh
+2
-0
No files found.
build/scripts/build_amf
View file @
710fa651
...
...
@@ -158,7 +158,7 @@ function main()
return
1
else
echo_success
"AMF deps installation successful"
echo_warning
"AMF not compiled, to compile it, re-run build_
s
mf without -I option"
echo_warning
"AMF not compiled, to compile it, re-run build_
a
mf without -I option"
return
0
fi
fi
...
...
etc/amf.conf
View file @
710fa651
...
...
@@ -133,8 +133,8 @@ AMF =
NAS
:
{
ORDERED_SUPPORTED_INTEGRITY_ALGORITHM_LIST
= [
"NIA0"
,
"NIA1"
,
"NIA2"
];
ORDERED_SUPPORTED_CIPHERING_ALGORITHM_LIST
= [
"NEA0"
,
"NEA1"
,
"NEA2"
];
ORDERED_SUPPORTED_INTEGRITY_ALGORITHM_LIST
=
@
INT_ALGO_LIST
@;
#Default
[ "NIA0" , "NIA1" , "NIA2" ];
ORDERED_SUPPORTED_CIPHERING_ALGORITHM_LIST
=
@
CIPH_ALGO_LIST
@;
#Default
[ "NEA0" , "NEA1" , "NEA2" ];
};
};
...
...
scripts/entrypoint.sh
View file @
710fa651
...
...
@@ -12,6 +12,8 @@ NSSF_IPV4_ADDRESS=${NSSF_IPV4_ADDRESS:-0.0.0.0}
NSSF_PORT
=
${
NSSF_PORT
:-
80
}
NSSF_API_VERSION
=
${
NSSF_API_VERSION
:-
v2
}
NSSF_FQDN
=
${
NSSF_FQDN
:-
oai
-nssf
}
INT_ALGO_LIST
=
${
INT_ALGO_LIST
:-
'[ "NIA0" , "NIA1" , "NIA2" ]'
}
CIPH_ALGO_LIST
=
${
CIPH_ALGO_LIST
:-
'[ "NEA0" , "NEA1" , "NEA2" ]'
}
if
[[
${
USE_FQDN_DNS
}
==
"yes"
]]
;
then
NSSF_IPV4_ADDR
=
${
NSSF_IPV4_ADDR_0
:-
0
.0.0.0
}
...
...
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