Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
106
Merge Requests
106
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
544d50cc
Commit
544d50cc
authored
Jul 10, 2024
by
Joanne Hugé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wip
parent
f19a85df
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
83 additions
and
4 deletions
+83
-4
software/ors-amarisoft/buildout.hash.cfg
software/ors-amarisoft/buildout.hash.cfg
+7
-3
software/ors-amarisoft/config/ue-ifup
software/ors-amarisoft/config/ue-ifup
+70
-0
software/ors-amarisoft/config/ue.jinja2.cfg
software/ors-amarisoft/config/ue.jinja2.cfg
+1
-1
software/ors-amarisoft/instance-ors-ue.jinja2.cfg
software/ors-amarisoft/instance-ors-ue.jinja2.cfg
+1
-0
software/ors-amarisoft/instance-ors.cfg
software/ors-amarisoft/instance-ors.cfg
+1
-0
software/ors-amarisoft/software-ors.cfg
software/ors-amarisoft/software-ors.cfg
+3
-0
No files found.
software/ors-amarisoft/buildout.hash.cfg
View file @
544d50cc
...
...
@@ -20,7 +20,7 @@ md5sum = 2e30c07c6436895ac0bc6c177cf7013d
[template-ors]
filename = instance-ors.cfg
md5sum =
f025ab93e016fa3609a1bb4de69245ec
md5sum =
8a2fca573220c2abcc28a197be6048ce
[slaplte.jinja2]
_update_hash_filename_ = slaplte.jinja2
...
...
@@ -96,7 +96,7 @@ md5sum = 315633c8d09b84ef1c699094810c654a
[template-ors-ue]
_update_hash_filename_ = instance-ors-ue.jinja2.cfg
md5sum =
b5f880719b827b70736dff2a335d2876
md5sum =
f4389a92fb111447e7976e452db78607
[template-core-network]
_update_hash_filename_ = instance-core-network.jinja2.cfg
...
...
@@ -152,12 +152,16 @@ md5sum = f07c85916bcb7e4002c8edc3d087c1be
[ue.jinja2.cfg]
filename = config/ue.jinja2.cfg
md5sum =
15e571b83f821319f24b0e903f2ea157
md5sum =
2653ee016af078188e9310db44e7c1e8
[ru_lopcomm_CreateProcessingEle.jinja2.xml]
_update_hash_filename_ = ru/lopcomm/CreateProcessingEle.jinja2.xml
md5sum = e435990eb0a0d4be41efa9bd16dce09b
[ue-ifup]
_update_hash_filename_ = config/ue-ifup
md5sum = f02fbfd31ba89cf243e2752adcae28d9
[ru_lopcomm_cu_config.jinja2.xml]
_update_hash_filename_ = ru/lopcomm/cu_config.jinja2.xml
md5sum = 346c911e1ac5e5001a39c8926b44c91e
...
...
software/ors-amarisoft/config/ue-ifup
0 → 100755
View file @
544d50cc
#!/bin/bash
ue_id
=
"
$1
"
pdn_id
=
"
$2
"
ifname
=
"
$3
"
ipv4_addr
=
"
$4
"
ipv4_dns
=
"
$5
"
ipv6_local_addr
=
"
$6
"
ipv6_dns
=
"
$7
"
param
=
"
$8
"
old_link_local
=
""
shift
;
shift
;
shift
;
shift
;
shift
;
shift
;
shift
;
shift
;
while
[
"
$1
"
!=
""
]
;
do
case
"
$1
"
in
--mtu
)
mtu
=
"
$2
"
shift
;;
*
)
echo
"Bad parameter:
$1
"
>
&2
exit
1
;;
esac
shift
done
if
[
"
$pdn_id
"
!=
"0"
]
;
then
echo
"We should have only PDN 0, exiting..."
exit
1
fi
echo
"Configure
$ue_id
(
$param
) on pdn
$pdn_id
, tun=
$ifname
, ip=
$ipv4_addr
, dns=
$ipv4_dns
, ip6=
$ipv6_local_addr
, ip6_dns=
$ipv6_dns
"
if
[
"
$ipv4_dns
"
!=
""
]
||
[
"
$ipv6_dns
"
!=
""
]
;
then
if
[
"
$ipv4_dns
"
!=
""
]
;
then
echo
"nameserver
$ipv4_dns
"
>>
/etc/resolv.conf
fi
if
[
"
$ipv6_dns
"
!=
""
]
;
then
echo
"nameserver
$ipv6_dns
"
>>
/etc/resolv.conf
fi
fi
if
[
"
$ipv6_local_addr
"
!=
""
]
;
then
echo
'0'
>
/proc/sys/net/ipv6/conf/
$ifname
/disable_ipv6
echo
'1'
>
/proc/sys/net/ipv6/conf/
$ifname
/accept_ra
echo
'1'
>
/proc/sys/net/ipv6/conf/
$ifname
/router_solicitation_delay
echo
'1'
>
/proc/sys/net/ipv6/conf/
$ifname
/autoconf
else
echo
'1'
>
/proc/sys/net/ipv6/conf/
$ifname
/disable_ipv6
fi
ifconfig
$ifname
up
if
[
"
$ipv4_addr
"
!=
""
]
;
then
ifconfig
$ifname
$ipv4_addr
/24
if
[
"
$mtu
"
!=
""
]
;
then
ifconfig
$ifname
mtu
$mtu
fi
fi
if
[
"
$ipv6_local_addr
"
!=
""
]
;
then
old_link_local
=
`
ip addr show dev
$ifname
|
sed
-e
's/^.*inet6 \([^ ]*\)\/.*$/\1/;t;d'
`
if
[
"
$old_link_local
"
!=
""
]
;
then
ifconfig
$ifname
inet6 del
$old_link_local
/64
fi
ifconfig
$ifname
inet6 add
$ipv6_local_addr
/64
fi
if
[
"
$ipv4_addr
"
!=
""
-a
"
$ipv6_local_addr
"
!=
""
]
;
then
echo
"MAC_ADDR="
$(
ip
link
show dev
$ifname
|
grep
-oP
"ether
\K
[
\d
:a-f]+"
)
fi
software/ors-amarisoft/config/ue.jinja2.cfg
View file @
544d50cc
...
...
@@ -114,7 +114,7 @@
{%- else %}
{%- do bug('unreachable') %}
{%- endif %}
tun_setup_script: "
ue-ifup
",
tun_setup_script: "
{{ ue_ifup }}
",
apn: "internet",
},
{%- endfor %}
...
...
software/ors-amarisoft/instance-ors-ue.jinja2.cfg
View file @
544d50cc
...
...
@@ -76,6 +76,7 @@ context -=
json ors false
context +=
key ors :ors
raw ue_ifup {{ ue_ifup }}
ors = {{ dumps(ors_version) }}
# add ORS-specific bits to published information
...
...
software/ors-amarisoft/instance-ors.cfg
View file @
544d50cc
...
...
@@ -40,6 +40,7 @@ filename = instance-ue.cfg
extra-context +=
section ors ors-version
section ors_version ors-version
raw ue_ifup ${ue-ifup:target}
import-list +=
rawfile instance-ue-base.jinja2.cfg ${template-ue:target}
...
...
software/ors-amarisoft/software-ors.cfg
View file @
544d50cc
...
...
@@ -25,3 +25,6 @@ output = ${buildout:directory}/template.cfg
[template-ors-ue]
<= download-base
[ue-ifup]
<= download-base
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