Report this

What is the reason for this report?

How to open different TCP ports in ubuntu 18.04

Posted on January 29, 2020

I have a PHP application which collects data from a device in 7788 port which is working fine. Now I have to open another port 8001 which is not getting data.

what is the proper way to open and enable a port in ubuntu 18.04

I have tried sudo ufw allow 22/tcp



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @jahangirkobir,

Depending on what firewall you are using, you can indeed use either UFW or Iptables.

If you use ufw, you need to type in the following :

sudo ufw allow 8001/tcp

If you are using Iptables, you’ll need to open all incoming connections for that port the following way :

sudo iptables -A INPUT -p tcp --dport 8001 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT
sudo iptables -A OUTPUT -p tcp --sport 8001 -m conntrack --ctstate ESTABLISHED -j ACCEPT

Regards, KDSys

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.