how to open port 53 for bind on debian server?
[xxx.xxx.xxx.xxx] 53 (domain) : Connection refused
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
"Connection refused" generally means that your connection attempt got through to the remote server--in other words, it wasn't blocked by a firewall--but the remote server doesn't have anything listening for connections on that port. If you have command-line access on the remote host, you can use netstat to make sure it actually has something listening on TCP port 53. | |||
feedback
|
|
"Connection refused" means that BIND isn't actually running on that port, for that particular IP address. It's a common default configuration for BIND on desktop installs to only listen on the "loopback" IP address. In fact your Have a look at
| |||
feedback
|
|
Depends on the documentation for your firewall, and whether that firewall is software on the debian server or a hardware device in front of it. | |||
|
feedback
|
|
Perhaps this will help http://serverfault.com/questions/51354/debian-open-port-81 53 is going to be a privileged port so you're probably not going to be able to open it without being root or using some other workaround. | |||
|
feedback
|
|
netstat -an | grep "LISTEN "
tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN port 53 isnt blocked by iptables | |||
|
feedback
|