-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathhelp.go
38 lines (23 loc) · 903 Bytes
/
help.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package main
const installationHelp = `
****************************| Installation Guide |**********************************
iptables is pre-installed in most linux distributions.But if it doesn't then you
can use following instruction to install it.
Ubuntu/Debian:
--------------
Install iptables using apt-get package manager using the following command.
$ sudo apt-get install iptables
Alpine:
-------
Install iptables using apk package manager using the following command.
$ sudo apk add iptables
CentOS/RHEL 7:
--------------
Install iptables service using yum package manager using the following command.
$ sudo yum install iptables-services
After installing enable iptables service and start using below commands.
$ sudo systemctl enable iptables
$ sudo systemctl start iptables
Now check the iptables service status using below command.
$ sudo systemctl status iptables
`