Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
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-SMF
Commits
26c76306
Commit
26c76306
authored
Jul 24, 2020
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor update CMakeList
parent
9e7de937
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
42 deletions
+2
-42
build/scripts/smf_conf_local.sh
build/scripts/smf_conf_local.sh
+0
-40
build/smf/CMakeLists.txt
build/smf/CMakeLists.txt
+2
-0
src/oai_smf/CMakeLists.txt
src/oai_smf/CMakeLists.txt
+0
-2
No files found.
build/scripts/smf_conf_local.sh
deleted
100755 → 0
View file @
9e7de937
# prompt has been removed for easier Ctrl+C Ctrl+V
sudo
ifconfig eno1:un4 172.55.55.102 up
# SMF N4 interface
sudo
ifconfig eno1:sn4 172.55.55.101 up
# SMF N4 interface
sudo
ifconfig eno1:an11 172.16.1.102 up
# AMF N11 interface
sudo
ifconfig eno1:sn11 172.16.1.101 up
# SMF N11 interface
#for N10
sudo
ifconfig eno1:un10 192.168.200.1 up
# UDM N10 interface
sudo
ifconfig eno1:sn10 192.168.200.168 up
# SMF N10 interface
INSTANCE
=
1
PREFIX
=
'/usr/local/etc/oai'
sudo mkdir
-m
0777
-p
$PREFIX
cp
../../etc/smf.conf
$PREFIX
declare
-A
SMF_CONF
SMF_CONF[@INSTANCE@]
=
$INSTANCE
SMF_CONF[@PREFIX@]
=
$PREFIX
SMF_CONF[@PID_DIRECTORY@]
=
'/var/run'
SMF_CONF[@SMF_INTERFACE_NAME_FOR_N4@]
=
'eno1:sn4'
SMF_CONF[@SMF_INTERFACE_NAME_FOR_N11@]
=
'eno1:sn11'
SMF_CONF[@SMF_INTERFACE_IPV4_ADDRESS_FOR_N11@]
=
'172.16.1.101'
SMF_CONF[@SMF_INTERFACE_PORT_FOR_N11@]
=
'80'
SMF_CONF[@UDM_IPV4_ADDRESS@]
=
'192.168.200.1'
SMF_CONF[@UDM_PORT@]
=
'8181'
SMF_CONF[@AMF_IPV4_ADDRESS@]
=
'172.16.1.102'
SMF_CONF[@AMF_PORT@]
=
'8282'
SMF_CONF[@DEFAULT_DNS_IPV4_ADDRESS@]
=
'8.8.8.8'
SMF_CONF[@DEFAULT_DNS_SEC_IPV4_ADDRESS@]
=
'4.4.4.4'
for
K
in
"
${
!SMF_CONF[@]
}
"
;
do
egrep
-lRZ
"
$K
"
$PREFIX
| xargs
-0
-l
sed
-i
-e
"s|
$K
|
${
SMF_CONF
[
$K
]
}
|g"
ret
=
$?
;
[[
ret
-ne
0
]]
&&
echo
"Tried to replace
$K
with
${
SMF_CONF
[
$K
]
}
"
done
build/smf/CMakeLists.txt
View file @
26c76306
...
...
@@ -19,6 +19,8 @@
# contact@openairinterface.org
################################################################################
cmake_minimum_required
(
VERSION 3.0.2
)
project
(
oai-cn
)
# Override options for SMF
set
(
PACKAGE_NAME
"SMF"
)
set
(
STATIC_LINKING False
)
...
...
src/oai_smf/CMakeLists.txt
View file @
26c76306
...
...
@@ -23,8 +23,6 @@
cmake_minimum_required
(
VERSION 3.0.2
)
project
(
OpenAirInterface
)
###########################################
# macros to define options as there is numerous options in oai
################################################
...
...
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