How to open the port in Centos7

How to open the port in Centos7

The default firewall of CentOS7 is not iptables, but firewalle.

Install iptable iptable-service

#First check whether iptables is installed
service iptables status
#Install iptables
yum install -y iptables
#Upgrade iptables
yum update iptables 
#Install iptables-services
yum install iptables-services

Disable/stop the built-in firewalld service

#Stop the firewalld service systemctl stop firewalld
#Disable firewalld service systemctl mask firewalld

Setting existing rules

#View the existing iptables rules iptables -L -n
#Allow all first, otherwise it may be a tragedy iptables -P INPUT ACCEPT
# Clear all default rules iptables -F
# Clear all custom rules iptables -X
#Reset all counters to 0
iptables -Z
#Allow packets from the lo interface (local access)
iptables -A INPUT -i lo -j ACCEPT
#Open port 22 iptables -A INPUT -p tcp --dport 22 -j ACCEPT
#Open port 21 (FTP)
iptables -A INPUT -p tcp --dport 21 -j ACCEPT
#Open port 80 (HTTP)
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
#Open port 443 (HTTPS)
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
# Allow ping
iptables -A INPUT -p icmp --icmp-type 8 -j ACCEPT
#Allow the return data after receiving the local request RELATED, which is set for FTP iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
#All other inbound traffic will be discarded iptables -P INPUT DROP
#All outbound traffic will be green iptables -P OUTPUT ACCEPT
#All forwarding will be discarded iptables -P FORWARD DROP

Other rule settings

#If you want to add intranet ip trust (accept all its TCP requests)
iptables -A INPUT -p tcp -s 45.96.174.68 -j ACCEPT
#Filter all requests that are not in the above rules iptables -P INPUT DROP
#To block an IP, use the following command:
iptables -I INPUT -s ***.***.***.*** -j DROP
#To unblock an IP, use the following command:
iptables -D INPUT -s ***.***.***.*** -j DROP

Save rule settings

#Save the above rules service iptables save

Enable iptables service

#Register iptables service#Equivalent to the previous chkconfig iptables on
systemctl enable iptables.service
#Start the service systemctl start iptables.service
#Check the status systemctl status iptables.service

Solve the problem that vsftpd cannot use passive mode after iptables is turned on

1. First modify or add the following content in /etc/sysconfig/iptables-config

Add the following content, note that the order cannot be changed

IPTABLES_MODULES="ip_conntrack_ftp"
IPTABLES_MODULES="ip_nat_ftp"

2. Reset iptables settings

iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT

The following is the complete setup script

#!/bin/sh
iptables -P INPUT ACCEPT
iptables -F
iptables -X
iptables -Z
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -A INPUT -p tcp --dport 21 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
iptables -A INPUT -p icmp --icmp-type 8 -j ACCEPT
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP
service iptables save

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution for not being able to use pip after installing python3.7.1 on centos6.5
  • How to configure Nginx virtual host in CentOS 7.3
  • Solution to the error when installing Docker on CentOS version
  • Three methods to modify the hostname of Centos7
  • How to set up scheduled backup tasks in Linux centos
  • Linux centOS installation JDK and Tomcat tutorial
  • How to build Jenkins+Maven+Git continuous integration environment on CentOS7
  • How to modify the time in centos virtual machine
  • How to use yum to configure lnmp environment in CentOS7.6 system
  • CentOS 6.5 configuration ssh key-free login to execute pssh command explanation

<<:  How to monitor global variables in WeChat applet

>>:  The difference between KEY, PRIMARY KEY, UNIQUE KEY, and INDEX in MySQL

Recommend

Document Object Model (DOM) in JavaScript

Table of contents 1. What is DOM 2. Select elemen...

Tips for adding favicon to a website: a small icon in front of the URL

The so-called favicon, which is the abbreviation o...

Vue Virtual DOM Quick Start

Table of contents Virtual DOM What is virtual dom...

MySQL database master-slave replication and read-write separation

Table of contents 1. Master-slave replication Mas...

Introduction to NFS service construction under Centos7

Table of contents 1. Server 2. Client 3. Testing ...

How to solve the element movement caused by hover-generated border

Preface Sometimes when hover pseudo-class adds a ...

Super detailed MySQL8.0.22 installation and configuration tutorial

Hello everyone, today we are going to learn about...

Summary of 11 common mistakes made by MySQL call novices

Preface You may often receive warning emails from...

Explanation of the usage scenarios of sql and various nosql databases

SQL is the main trunk. Why do I understand it thi...

How to use MySQL 5.7 temporary tablespace to avoid pitfalls

Introduction MySQL 5.7 aims to be the most secure...

Vue batch update dom implementation steps

Table of contents Scene Introduction Deep respons...

Dynamic starry sky background implemented with CSS3

Result:Implementation Code html <link href=...

A brief discussion on the pitfalls of react useEffect closure

Problem code Look at a closure problem code cause...

Summary of common commands in Dockerfile

Syntax composition: 1 Annotation information 2 Co...