Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-UPF
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-UPF
Commits
9656f069
Commit
9656f069
authored
Jun 02, 2022
by
kharade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conf file fix
parent
7456794f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
132 deletions
+30
-132
scripts/snap/run_vpp_nrf.sh
scripts/snap/run_vpp_nrf.sh
+0
-102
scripts/snap/startup_debug.conf
scripts/snap/startup_debug.conf
+0
-30
scripts/snap/upf.conf
scripts/snap/upf.conf
+30
-0
No files found.
scripts/snap/run_vpp_nrf.sh
deleted
100755 → 0
View file @
7456794f
#!/bin/bash
#"""
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements. See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
# * the OAI Public License, Version 1.1 (the "License"); you may not use this
# * file except in compliance with the License. You may obtain a copy of the
# * License at
# *
# * http://www.openairinterface.org/?page_id=698
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# * contact@openairinterface.org
# */
#
#/*! \file nrf_client.py
# \author Rohan KHARADE
# \date 2021
# \email: rohan.kharade@openairinterface.org
#*/
#"""
trigger_nf_registration
()
{
UUID
=
9614ea76-2e95-4f01-ad57-e7abbf251820
CONFIG_DIR
=
/openair-upf/etc
NRF_URL
=
$NRF_IP_ADDR
:
$NRF_PORT
/nnrf-nfm/v1/nf-instances/
$UUID
##### Variables #####
DUMP_STATUS_CODE
=
$(
echo
'--write-out %{http_code} --silent --output /dev/null'
)
PATCH_DATA
=
$(
echo
'[{"op":"replace","path":"/nfStatus","value":"REGISTERED"}]'
)
CONTENT_TYPE
=
$(
echo
'Content-Type: application/json'
)
HTTP2
=
--http2-prior-knowledge
UPF_PROFILE
=
$CONFIG_DIR
/upf_profile.json
NF_HEARTBEAT_TIMER
=
10
NF_HEARTBEAT_START
=
5
##### NF Registration #####
echo
"Sending NF Registration Request (HTTP Version
$HTTP_VERSION
)"
if
[[
${
HTTP_VERSION
}
==
2
]]
;
then
response
=
$(
curl
$HTTP2
$DUMP_STATUS_CODE
-X
PUT
$NRF_URL
-d
@
$UPF_PROFILE
-H
"
$CONTENT_TYPE
"
)
else
response
=
$(
curl
$DUMP_STATUS_CODE
-X
PUT
$NRF_URL
-d
@
$UPF_PROFILE
-H
"
$CONTENT_TYPE
"
)
fi
##### NF Heartbeat #####
if
[[
${
response
}
==
201
||
${
response
}
==
200
]]
;
then
echo
-e
"Received NF registration response (HTTP_STATUS_CODE_200/201)
\n
"
sleep
$NF_HEARTBEAT_START
while
true
do
echo
"Sending NF heartbeat request"
if
[[
${
HTTP_VERSION
}
==
2
]]
;
then
response
=
$(
curl
$HTTP2
$DUMP_STATUS_CODE
-X
PATCH
$NRF_URL
-d
$PATCH_DATA
-H
"
$CONTENT_TYPE
"
)
else
response
=
$(
curl
$DUMP_STATUS_CODE
-X
PATCH
$NRF_URL
-d
$PATCH_DATA
-H
"
$CONTENT_TYPE
"
)
fi
if
[[
${
response
}
==
204
]]
;
then
echo
-e
"Received NF heartbeat response (HTTP_STATUS_CODE_204)
\n
"
fi
sleep
$NF_HEARTBEAT_TIMER
done
else
echo
-e
"
\n
NF Registration Procedure Failed ........!!!!"
fi
}
if
[
$(
id
-u
)
-ne
0
]
;
then
exec sudo
-E
"
$0
"
"
$@
"
fi
base
=
$(
dirname
$0
)
APP
=
"
$base
/bin/vpp"
ARGS
=
"-c
$base
/etc/startup_debug.conf"
$APP
$ARGS
&
while
:
do
echo
"waiting for vpp-upf service"
RES
=
$(
bin/vppctl sh upf specification release |
awk
{
'print $3'
}
)
echo
$RES
if
[[
$RES
=
~ 16
]]
;
then
echo
"vpp-upf service is running now"
break
fi
sleep
3
done
if
[[
${
REGISTER_NRF
}
==
"yes"
]]
;
then
trigger_nf_registration
fi
sleep
infinity
scripts/snap/startup_debug.conf
deleted
100755 → 0
View file @
7456794f
unix
{
nodaemon
log
/
tmp
/
vpp
.
log
full
-
coredump
gid
vpp
interactive
cli
-
listen
/
run
/
vpp
/
cli
.
sock
exec
@
INIT_CONF_PATH
@
}
api
-
trace
{
on
}
cpu
{
main
-
core
0
corelist
-
workers
1
}
api
-
segment
{
gid
vpp
}
plugins
{
path
@
VPP_PLUGIN_PATH
@
plugin
dpdk_plugin
.
so
{
disable
}
plugin
gtpu_plugin
.
so
{
disable
}
plugin
upf_plugin
.
so
{
enable
}
}
scripts/snap/upf
_default_conf.sh
→
scripts/snap/upf
.conf
View file @
9656f069
#!/usr/bin/env bash
NWI_N3
=
access
.
oai
.
org
NWI_N6
=
core
.
oai
.
org
GW_ID
=
1
...
...
@@ -6,7 +5,7 @@ MNC03=95
MCC
=
208
REALM
=
3
gppnetwork
.
org
NETWORK_UE_IP
=
12
.
2
.
1
.
0
/
24
INIT_CONF_PATH
=
INIT_CONF_PATH
=
/
snap
/
oai
-
vupf
/
x4
/
vpp
/
init
.
conf
VPP_PLUGIN_PATH
=/
usr
/
lib
/
x86_64
-
linux
-
gnu
/
vpp_plugins
/
# Ubntu18.04
INTERFACE_ACCESS
=
cn5g
-
access
# N3
INTERFACE_CORE
=
cn5g
-
core
# N6
...
...
@@ -17,27 +16,15 @@ DNN=default
REGISTER_NRF
=
yes
NRF_IP_ADDR
=
192
.
168
.
70
.
130
NRF_PORT
=
8080
UUID
=
0beafa60-8211-4774-b54f-2a8a35a721fe
#$(cat /proc/sys/kernel/random/uuid)
UUID
=
0
beafa60
-
8211
-
4774
-
b54f
-
2
a8a35a721fe
HTTP_VERSION
=
2
################ Gateway for N3(Gnb), N4(SMF), N6(DN/NAT Gateway) ################
#N3_IPV4_ADDRESS_REMOTE=${N3_IPV4_ADDRESS_REMOTE:-$(ifconfig $INTERFACE_ACCESS | grep "inet " | awk '{print $2}' | cut -d"." -f1-3)".1"}
N3_IPV4_ADDRESS_REMOTE
=
192
.
168
.
70
.
1
#N4_IPV4_ADDRESS_REMOTE=${N4_IPV4_ADDRESS_REMOTE:-$(ifconfig $INTERFACE_CP | grep "inet " | awk '{print $2}' | cut -d"." -f1-3)".1"}
N4_IPV4_ADDRESS_REMOTE
=
192
.
168
.
72
.
1
#N6_IPV4_ADDRESS_REMOTE=${N6_IPV4_ADDRESS_REMOTE:-$(ifconfig $INTERFACE_CORE | grep "inet " | awk '{print $2}' | cut -d"." -f1-3)".1"}
N6_IPV4_ADDRESS_REMOTE
=
192.168.73.135
N6_IPV4_ADDRESS_REMOTE
=
192
.
168
.
72
.
135
################ Veth Pair IP in the VPP switch ################
#N3_IPV4_ADDRESS_LOCAL=${N3_IPV4_ADDRESS_LOCAL:-$(ifconfig $INTERFACE_ACCESS | grep "inet " | awk '{print $2}' | cut -d"." -f1-3)".202"}
N3_IPV4_ADDRESS_LOCAL
=
192
.
168
.
72
.
202
#N4_IPV4_ADDRESS_LOCAL=${N4_IPV4_ADDRESS_LOCAL:-$(ifconfig $INTERFACE_CP | grep "inet " | awk '{print $2}' | cut -d"." -f1-3)".202"}
N4_IPV4_ADDRESS_LOCAL
=
192
.
168
.
70
.
202
#N6_IPV4_ADDRESS_LOCAL=${N6_IPV4_ADDRESS_LOCAL:-$(ifconfig $INTERFACE_CORE | grep "inet " | awk '{print $2}' | cut -d"." -f1-3)".202"}
N6_IPV4_ADDRESS_LOCAL
=
192
.
168
.
73
.
202
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