1024programmer Blog Linux opens the specified port command_Boda Java World Blog

Linux opens the specified port command_Boda Java World Blog

Method 1

CentOS:

copy code

1. Open the firewall
 systemctl start firewalld

 2. Open the specified port
 firewall-cmd --zone=public --add-port=1935/tcp --permanent
 Command meaning:
 --zone #Scope
 --add-port=1935/tcp #Add port, the format is: port/communication protocol
 --permanent #Permanently effective, without this parameter, it will fail after restarting

 3. Restart the firewall
 firewall-cmd --reload

 4. Check the port number
 netstat -ntlp //View all current tcp ports

 netstat -ntulp |grep 1935 //View all 1935 port usage 

copy code

Method 2

#Open port: 8080

/sbin/iptables -I INPUT -p tcp –dport 8080 -j ACCEPT

Method 3

-A INPUT -m state –state NEW -m tcp -p tcp –dport 8080 -j ACCEPT

service iptables restart

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/linux-opens-the-specified-port-command_boda-java-world-blog/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: [email protected]

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索