Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Ant_Devops
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mayi-operation
Ant_Devops
Commits
ef6a148b
Commit
ef6a148b
authored
Feb 18, 2019
by
ChongmingDu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firewall mod
parent
560c560d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
roles/base/files/firewall.sh
+12
-0
roles/base/tasks/main.yml
+8
-0
No files found.
roles/base/files/firewall.sh
0 → 100644
View file @
ef6a148b
#!/bin/bash
#setting firewall configure
systemctl start firewalld.service
&&
systemctl
enable
firewalld.service
firewall-cmd
--permanent
--add-port
=
19221/tcp
firewall-cmd
--permanent
--add-port
=
80/tcp
firewall-cmd
--permanent
--add-service
=
http
firewall-cmd
--permanent
--add-service
=
https
firewall-cmd
--permanent
--add-rich-rule
=
"rule family="
ipv4
" source address="
172.16.233.0/20
" port protocol="
tcp
" port="
1-65535
" accept"
firewall-cmd
--permanent
--add-port
=
9527/tcp
firewall-cmd
--reload
firewall-cmd
--list-all
\ No newline at end of file
roles/base/tasks/main.yml
View file @
ef6a148b
...
...
@@ -7,6 +7,14 @@
-
name
:
"
Initialization
OS"
shell
:
/bin/bash /tmp/init.sh
-
name
:
"
firewall
shell"
copy
:
src
:
firewall.sh
dest
:
/tmp/firewall.sh
-
name
:
"
run
firewall"
shell
:
/bin/bash /tmp/firewall.sh
-
name
:
"
add
logrotate
file
mongo"
copy
:
src
:
mongo
...
...
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