I have dedicated server with cent-os and proxmox ve. Also made virtual machine with centos 6 and centos webpanel in proxmox. From last four month I'm using this and everything is working properly mean I'm able to open mysite:2030
(admin panel). But from today morning, it is not opening, I don't know why is this happening. But I'm able to access all files through ftp(21) and also able to access sftp(22). Please help me configuring it so I will able to open admin panel(Control Panel).Thanks. I asked this question on https://serverfault.com/ but still have no reply, so I asked here.
Asked
Active
Viewed 1,513 times
0

Community
- 1
- 1

RadhaComEng
- 19
- 8
2 Answers
0
Did you try to look at your iptables rules? As far as I know, centOS blocks everything, allowing only the ports present in the rules in the iptables.

p01nt3r
- 51
- 6
-
Please tell me how do I check it? – RadhaComEng Apr 16 '15 at 09:23
0
After trying so many methods I searched on net related iptables, I got one best solution, now everything is working like a charm. And applied below command with root access using putty.
1)First I tried this commands:
iptables -A INPUT -p tcp --dport 2030 -j ACCEPT //press enter
service iptables restart //press enter
2)then below commands:
iptables -I OUTPUT -p tcp --dport 2030 -j ACCEPT //enter
/etc/init.d/iptables stop //enter
/etc/init.d/iptables start //enter
reboot //rebooted server

RadhaComEng
- 19
- 8