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
4264ca2a
Commit
4264ca2a
authored
Apr 09, 2020
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update conf/readme for testing SMF locally
parent
e98617cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
build/scripts/smf_conf_local.sh
build/scripts/smf_conf_local.sh
+40
-0
No files found.
build/scripts/smf_conf_local.sh
0 → 100755
View file @
4264ca2a
# 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
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