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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.