Results 1 to 7 of 7
I have port 4011 open and listening on interface 127.0.0.1 and I need it listening on 192.168.1.2, how do I do this?
Thank you for any help...
- 03-29-2009 #1Just Joined!
- Join Date
- Mar 2009
- Posts
- 5
change the interface a port is listening on.
I have port 4011 open and listening on interface 127.0.0.1 and I need it listening on 192.168.1.2, how do I do this?
Thank you for any help
- 03-29-2009 #2Just Joined!
- Join Date
- Mar 2009
- Posts
- 5
netstat -tna
what I would like for it to say is 192.168.1.2:4011tcp 0 0 127.0.0.1:4011 0.0.0.0:* LISTEN
Thank you
- 03-30-2009 #3
You need to change the configuration of the program that is listening on this port. You haven't provided any details of this program, so I can't help you with it yet.
- 03-30-2009 #4Just Joined!
- Join Date
- Mar 2009
- Posts
- 5
The program using this port is Postfix. The port is set in the master.cf file with the configuration line
netstat -tnap shows the following outputCode:4011 inet n - n - - smtpd
I'm a little confused with the other line of netstat showing master using another port as I don't see that designated anywhere in the master.cf file (if that in fact is where that is coming from).Code:tcp 0 0 127.0.0.1:4011 0.0.0.0:* LISTEN 3773/master tcp 0 0 127.0.0.1:465 0.0.0.0:* LISTEN 3773/master
- 03-30-2009 #5
Hi there,
There is a page here which will probably help:
Postfix Basic Configuration
Specifically under: 'My own network addresses'
- 03-30-2009 #6Just Joined!
- Join Date
- Mar 2009
- Posts
- 5
- 03-30-2009 #7


Reply With Quote
