Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
ors-utils
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
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
nexedi
ors-utils
Commits
677432ce
Commit
677432ce
authored
Oct 18, 2022
by
Joanne Hugé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve get-host-ID script
parent
8145ecb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
scripts/ors/2-get-host-ID
scripts/ors/2-get-host-ID
+18
-1
No files found.
scripts/ors/2-get-host-ID
View file @
677432ce
#!/bin/bash
#!/bin/bash
/root/mme/ltemme /root/mme/config/mme.cfg 2>&1
>
/dev/null |
grep
"Host ID"
|
awk
'{print $3;}'
for
SOFT
in
enb ue mme
;
do
if
[
-f
"/root/.amarisoft/lte
$SOFT
.key"
]
;
then
cat
/root/.amarisoft/lte
$SOFT
.key |
tail
-c
+261|
head
-n1
;
exit
;
fi
done
if
[
"$#"
-eq
2
]
;
then
BINARY_PATH
=
"
$1
"
BINARY_CONFIG
=
"
$2
"
$BINARY_PATH
$BINARY_CONFIG
2>&1
>
/dev/null |
grep
"Host ID"
|
awk
'{print $3;}'
exit
;
fi
for
SOFT
in
mme ue enb
;
do
if
[
-f
"/root/
$SOFT
/lte
$SOFT
"
]
;
then
/root/
$SOFT
/lte
$SOFT
/root/
$SOFT
/config/
$SOFT
.cfg 2>&1
>
/dev/null |
grep
"Host ID"
|
awk
'{print $3;}'
exit
fi
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