which ports directadmin need to work?

Lem0nHead

Verified User
Joined
Nov 28, 2004
Messages
265
a normal directadmin server for webhosting would need which ports?

that's the list i made

TCP
80
443
8090 (??)
22
21
2222
53
3306
25
110
143

UDP
don't know
 
Here's my list of important port assignments:
Code:
20      ftp data
21      ftp
22      ssh
23      telnet
25      smtp
53      dns 
80      httpd 
81      Cobalt RaQ 
110     pop3 
113     ident 
123     ntp 
143     imap 
443     apache secure 
2222    Direct Admin 
3306    MySQL
6277    DCC 
8443    Plesk

I have no idea why you'd need 8090.

Of course you'd only need 81, 2222 and 8443 if you were using those specific services.

And I'm not sure why, but my DCC doesn't work anyway :( .

Jeff
 
Why would you need port 81 for a direct admin server??

As for DCC - that's easy to check. Simply run:

Code:
spamassassin -D --lint

and check the output.

The ports you would normally need for DCC and other spamassassin helpers are:
Razor2 tcp ports 2703 and 7
Pyzor udp port 24441
DCC udp port 6277
 
blacknight said:
Why would you need port 81 for a direct admin server??
You wouldn't. I said that in my post.
As for DCC - that's easy to check. Simply run:

Code:
spamassassin -D --lint

and check the output.
I did. I get:
debug: DCC is available: /usr/local/bin/dccproc
debug: entering helper-app run mode
debug: DCC: got response: DCC server dcc.rhyolite.com at 207.195.195.223 137.118.60.88 212.95.66.24 ... not responding
debug: leaving helper-app run mode
debug: DCC -> check failed: no X-DCC returned (did you create a map file?): DCC server dcc.rhyolite.com at 207.195.195.223 137.118.60.88 212.95.66.24 ... not responding
Port 6277 is open in both directions for both udp and tcp/ip. Here are the settings from my reference system ipchains firewall configuration:
Code:
# hole in firewall for DCC for SpamAssassin
-A input -s 0/0 -d 0/0 6277 -p tcp -y -j ACCEPT
-A output -s 0/0 -d 0/0 6277 -p tcp -y -j ACCEPT
-A input -s 0/0 -d 0/0 6277 -p udp  -j ACCEPT
-A output -s 0/0 -d 0/0 6277 -p udp -j ACCEPT
Any ideas?

Thanks.

Jeff
 
The error returned suggests 2 possible reasons:
1 - the map file does not exist
(usually in /var/dcc/ )

2 - The DCC servers you are contacting are not happy.

DCC is UDP not TCP, but you're allowing both, so that isn't the issue.
 
Thanks.

I'm leaving in a few minutes to do my Saturday stuff.

(It's not that I have a life or anything; my Saturday stuff today includes a linux users group :).)

But I'll check that out in a day or two.

Jeff
 
Back
Top