Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
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
Boxiang Sun
slapos.package
Commits
3312939a
Commit
3312939a
authored
Jun 16, 2022
by
Boxiang Sun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Iptable and hosts setup for npm installation
parent
8a6261a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
150 additions
and
12 deletions
+150
-12
playbook/slapos-standalone.yml
playbook/slapos-standalone.yml
+150
-12
No files found.
playbook/slapos-standalone.yml
View file @
3312939a
...
@@ -114,13 +114,18 @@
...
@@ -114,13 +114,18 @@
# Allow to access github.com and raw.githubusercontent.com
# Allow to access github.com and raw.githubusercontent.com
# Somehow not working
# Somehow not working
-
name
:
Change the github.com in the hosts
lineinfile
:
line
:
"
140.82.121.3
github.com"
dest
:
/etc/hosts
-
name
:
Allow to access github.com
-
name
:
Allow to access github.com
iptables
:
iptables
:
action
:
append
action
:
append
chain
:
OUTPUT
chain
:
OUTPUT
protocol
:
tcp
protocol
:
tcp
destination_port
:
443
destination_port
:
443
d
st_range
:
140.82.121.3-140.82.121.4
d
estination
:
github.com
jump
:
ACCEPT
jump
:
ACCEPT
-
name
:
Allow to access github.com
-
name
:
Allow to access github.com
...
@@ -129,20 +134,27 @@
...
@@ -129,20 +134,27 @@
chain
:
OUTPUT
chain
:
OUTPUT
protocol
:
tcp
protocol
:
tcp
destination_port
:
80
destination_port
:
80
d
st_range
:
140.82.121.3-140.82.121.4
d
estination
:
github.com
jump
:
ACCEPT
jump
:
ACCEPT
-
name
:
Allow to access github.com
-
name
:
Allow to access raw.githubusercontent.com ipv6
lineinfile
:
line
:
"
2606:50c0:8003::154
raw.githubusercontent.com"
dest
:
/etc/hosts
-
name
:
Allow to access raw.githubusercontent.com ipv6
iptables
:
iptables
:
ip_version
:
ipv6
action
:
append
action
:
append
chain
:
OUTPUT
chain
:
OUTPUT
protocol
:
tcp
protocol
:
tcp
destination_port
:
80
destination_port
:
443
destination
:
github
.com
destination
:
raw.githubusercontent
.com
jump
:
ACCEPT
jump
:
ACCEPT
-
name
:
Allow to access raw.githubusercontent.com
-
name
:
Allow to access raw.githubusercontent.com
iptables
:
iptables
:
ip_version
:
ipv6
action
:
append
action
:
append
chain
:
OUTPUT
chain
:
OUTPUT
protocol
:
tcp
protocol
:
tcp
...
@@ -150,6 +162,79 @@
...
@@ -150,6 +162,79 @@
destination
:
raw.githubusercontent.com
destination
:
raw.githubusercontent.com
jump
:
ACCEPT
jump
:
ACCEPT
# Default is storage.googleapis.com, use a differnt mirror to avoid potential impact
-
name
:
Allow to access npm.taobao.org/mirrors
lineinfile
:
line
:
"
114.55.80.225
npm.taobao.org"
dest
:
/etc/hosts
-
name
:
Allow to access npmmirror.com
lineinfile
:
line
:
"
47.96.233.62
npmmirror.com"
dest
:
/etc/hosts
# You can see I allowed the default npmmirror regsitry too
# This is because that is for the pure npm installation
# Grafana buildout will call yarn manually, which will call storage.googleapis.com first,
# to download the puppeteer, after that, it will use registry
# For testing, I trying to avoid to connect google service.
# So I download puppeteer from another place,
# which cause me to use same registry when call yarn manually.
-
name
:
Allow to access registry.npm.taobao.org
lineinfile
:
line
:
"
47.246.48.230
registry.npm.taobao.org"
dest
:
/etc/hosts
-
name
:
Allow to access registry.npm.taobao.org
iptables
:
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
443
destination
:
registry.npm.taobao.org
jump
:
ACCEPT
-
name
:
Allow to access registry.npmmirror.org
lineinfile
:
line
:
"
47.246.24.230
registry.npmmirror.com"
dest
:
/etc/hosts
-
name
:
Allow to access registry.npmmirror.org
iptables
:
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
443
destination
:
registry.npmmirror.com
jump
:
ACCEPT
-
name
:
Allow to access npm.taobao.org/mirrors
iptables
:
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
443
destination
:
npm.taobao.org
jump
:
ACCEPT
-
name
:
Allow to access npmmirror.com
iptables
:
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
443
destination
:
npmmirror.com
jump
:
ACCEPT
-
name
:
Allow to access raw.githubusercontent.com
iptables
:
ip_version
:
ipv6
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
80
destination
:
raw.githubusercontent.com
jump
:
ACCEPT
-
name
:
Allow to access goproxy.cn
-
name
:
Allow to access goproxy.cn
iptables
:
iptables
:
action
:
append
action
:
append
...
@@ -168,32 +253,85 @@
...
@@ -168,32 +253,85 @@
destination
:
47.246.23.229
destination
:
47.246.23.229
jump
:
ACCEPT
jump
:
ACCEPT
-
name
:
Allow to access github.com
-
name
:
Change the codeload.github.com in the hosts
lineinfile
:
line
:
"
140.82.121.9
codeload.github.com"
dest
:
/etc/hosts
-
name
:
Allow to access codeload.github.com
iptables
:
iptables
:
action
:
append
action
:
append
chain
:
OUTPUT
chain
:
OUTPUT
protocol
:
tcp
protocol
:
tcp
destination_port
:
443
destination_port
:
443
destination
:
github.com
destination
:
codeload.
github.com
jump
:
ACCEPT
jump
:
ACCEPT
-
name
:
Allow to access raw.githubusercontent.com
-
name
:
Change the yarnpkg.com in the hosts
lineinfile
:
line
:
"
104.18.126.100
yarnpkg.com"
dest
:
/etc/hosts
-
name
:
Allow to access yarnpkg.com
iptables
:
iptables
:
action
:
append
action
:
append
chain
:
OUTPUT
chain
:
OUTPUT
protocol
:
tcp
protocol
:
tcp
destination_port
:
443
destination_port
:
443
destination
:
raw.githubusercontent.com
destination
:
yarnpkg.com
jump
:
ACCEPT
-
name
:
Change the classic.yarnpkg.com in the hosts
lineinfile
:
line
:
"
206.189.58.26
classic.yarnpkg.com"
dest
:
/etc/hosts
-
name
:
Allow to access classsic.yarnpkg.com
iptables
:
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
443
destination
:
classic.yarnpkg.com
jump
:
ACCEPT
jump
:
ACCEPT
# Workaround to allow to access registry.npmjs.org
# Workaround to allow to access registry.npmjs.org
-
name
:
Allow to access registry.npmjs.org
lineinfile
:
line
:
"
104.16.21.35
registry.npm.org"
dest
:
/etc/hosts
-
name
:
Allow to access registry.npmjs.org
-
name
:
Allow to access registry.npmjs.org
iptables
:
iptables
:
action
:
append
action
:
append
chain
:
OUTPUT
chain
:
OUTPUT
protocol
:
tcp
protocol
:
tcp
destination_port
:
443
destination_port
:
443
dst_range
:
104.16.16.35-104.16.27.35
destination
:
registry.npmjs.org
jump
:
ACCEPT
-
name
:
Allow to access registry.npmjs.org
iptables
:
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
80
destination
:
registry.npmjs.org
jump
:
ACCEPT
-
name
:
Allow to access registry.npmjs.org
lineinfile
:
line
:
"
2606:4700::6810:1b23
registry.npm.org"
dest
:
/etc/hosts
-
name
:
Allow to access registry.npmjs.org ipv6
iptables
:
ip_version
:
ipv6
action
:
append
chain
:
OUTPUT
protocol
:
tcp
destination_port
:
443
destination
:
registry.npmjs.org
jump
:
ACCEPT
jump
:
ACCEPT
# This is for connect to the test suite and upload the test result.
# This is for connect to the test suite and upload the test result.
...
...
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