how to close linux port

藏色散人
Release: 2020-03-11 13:26:10
Original
3637 people have browsed it

how to close linux port

How to close the linux port?

How to open and close ports in Linux

1. Check which ports are open netstat -anp

2. Close the port number :

iptables -A OUTPUT -p tcp --dport 端口号-j DROP
Copy after login

3. Open the port number:

iptables -A INPUT -ptcp --dport  端口号-j ACCEPT
Copy after login

4. Save the settings

service iptables save
Copy after login

5. The following is how to use the Linux open port command.

  nc -lp 23 &(打开23端口,即telnet)
  netstat -an | grep 23 (查看是否打开23端口)
Copy after login

6. Linux open port command Each open port needs a corresponding listening program

Recommended Linux video tutorial, learning address: https://www .php.cn/course/list/33.html

The above is the detailed content of how to close linux port. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!