Hello
Thank you for posting in Q&A forum.
You could follow these steps:
- Identify Programs Using the Ports:
• Open Command Prompt as an administrator.
• Use the netstat command to check which programs are using the ports:
netstat -aon | findstr :80
netstat -aon | findstr :53
netstat -aon | findstr :442
netstat -aon | findstr :29900
• Note the Process IDs (PIDs) of the programs using these ports.
- Find Corresponding Processes:
• Open Task Manager (Ctrl + Shift + Esc).
• Go to the Details tab.
• Match the PIDs from the netstat output to the processes listed in Task Manager.
- Reassign Ports:
• For each identified process, you need to change the port configuration. This process varies depending on the application:
• Web Servers (e.g., Apache, Nginx): Modify the configuration files (e.g., httpd.conf for Apache) to change the listening port.
• DNS Services: Update the configuration files to change the port from 53 to another port.
• Custom Applications: Refer to the application's documentation to find how to change the listening port.
- Restart Services:
• After changing the port configurations, restart the affected services to apply the changes.
- Update Firewall Rules:
• Ensure that your firewall rules are updated to allow traffic on the new ports.
- Verify Changes:
• Use the netstat command again to verify that the ports have been reassigned and are no longer in use by the original programs.
I hope the information above is helpful.
If you have any questions or concerns, please feel free to let us know.
Best Regards,
Daisy Zhou
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.