How to Manage Ports on VPS or Dedicated Server
Managing ports on a Dedicated or VPS server is done through command line. You will use IPTables to open and close ports and setup other port rules. This article will explain how to manage ports on your VPS or dedicated server.
This requires knowing the root password for your server. If you don't know the root password or haven't set one up, please see Log into WHM.
Click on any of the steps to jump to that point in the walkthrough and see more details.
Creating the Rule
Creating a new rule for IPtables can be confusing. Fortunately, there is an automatic rule generator that can make the process much simpler. It lets you enter the port information and then gives you the command to add that rule to IPTables. Use the following link to generate a rule:
http://www.perturb.org/content/iptables-rules.html
TIP: Leave the SRC and Dest boxes blank unless you know you need them.
Example: If you were trying to open port 64738, the command to add that rule would be:
iptables -A INPUT -m tcp -p tcp --sport 64738 -j ACCEPT
Accessing Command Line
You can access command line through SSH using software like Putty on Windows or Terminal on Mac. Please see SSH Access for detailed information about how to connect using SSH.
Updating IPTables with the new Rule
Once you have command line access, you just need to enter the commands to add your new rule to IPTables.
- Enter the command to update IPTables. If you used perthub.org to create the rule, enter each line from the output box into the console one at a time.
- Type
service iptables save
and press enter. - Type
service iptables restart
and press enter.
Once IPTables restarts, your new port rule will take effect.
Summary
So, there you have it! You now know how to manage ports on your VPS or dedicated server like a pro. With IPTables, you can tweak your server's accessibility, lock down potential security risks, and make sure your applications are running smoothly. Double-check your rules and proceed with caution.
If you need further assistance, feel free to contact us via Chat or Phone:
- Chat Support - While on our website, you should see a CHAT bubble in the bottom right-hand corner of the page. Click anywhere on the bubble to begin a chat session.
- Phone Support -
- US: 888-401-4678
- International: +1 801-765-9400
You may also refer to our Knowledge Base articles to help answer common questions and guide you through various setup, configuration, and troubleshooting steps.