Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
gateways-monitor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
Railgun
gateways-monitor
Commits
91dff70e
Commit
91dff70e
authored
Dec 29, 2020
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use env var for target protocol
parent
d10843cd
Pipeline
#1930
passed with stage
in 3 minutes and 6 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Dockerfile
Dockerfile
+2
-0
gateway-monitor.sh
gateway-monitor.sh
+2
-2
No files found.
Dockerfile
View file @
91dff70e
...
@@ -5,4 +5,6 @@ RUN apt update && apt -y --no-install-recommends install \
...
@@ -5,4 +5,6 @@ RUN apt update && apt -y --no-install-recommends install \
WORKDIR
/usr/src/app
WORKDIR
/usr/src/app
COPY
./gateway-monitor.sh ./
COPY
./gateway-monitor.sh ./
ENV
TARGET_PROTOCOL babel
CMD
["/usr/src/app/gateways-monitor.sh"]
CMD
["/usr/src/app/gateways-monitor.sh"]
gateway-monitor.sh
View file @
91dff70e
...
@@ -5,14 +5,14 @@ source /usr/src/app/route-plans
...
@@ -5,14 +5,14 @@ source /usr/src/app/route-plans
while
read
dst others
while
read
dst others
do
do
if
[[
"
$dst
"
==
"10.198.0."
*
]]
&&
[[
"
$others
"
==
*
"proto
babel
"
*
]]
if
[[
"
$dst
"
==
"10.198.0."
*
]]
&&
[[
"
$others
"
==
*
"proto
$TARGET_PROTOCOL
"
*
]]
then
then
# 读 babeld 路由
# 读 babeld 路由
declare
-A
routes
declare
-A
routes
while
read
-r
dst others
while
read
-r
dst others
do
do
routes[
"
$dst
"
]=
"
$others
"
routes[
"
$dst
"
]=
"
$others
"
done
< <
(
ip route show proto
babel
root 10.198.0.0/24
)
done
< <
(
ip route show proto
$TARGET_PROTOCOL
root 10.198.0.0/24
)
# 取最优路由并写进系统路由表
# 取最优路由并写进系统路由表
# 这个循环内所有 echo 的东西都会打给 iproute2。打调试信息要用 stderr
# 这个循环内所有 echo 的东西都会打给 iproute2。打调试信息要用 stderr
...
...
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