[EMAIL PROTECTED] (Brian P. Flaherty) writes:

> Josh <[EMAIL PROTECTED]> writes:
> 
> > hmmm, im a bit of a newbie here, but how do you bind a
> > daemon, eg telnetd to a certain nic?
> 
> Try running xinetd, if you aren't already. In each service block, you can
> use the 'bind' option, which ties the service to a NIC's IP address. 
> Someone please correct me if I am wrong, but I think this effectively
> keeps the service from listening on other interfaces.

'Tis correct.

Example (for those who like using _sn_ as a news transport):

service nntp
{
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = news
        group           = news
        server          = /usr/bin/env
        server_args     = POSTING_OK=1 PATH=/usr/sbin/:/usr/bin:/sbin/:/bin 
/usr/sbin/snntpd logger -p news.info
        bind            = 127.0.0.1
}

However, you can also do exactly the same thing in exim.conf itself -
OTTOMH the directive is `local_interfaces', BICBW.

~Tim
-- 
Not every discomfort should                 |[EMAIL PROTECTED]
be criminalised. (Bill Unruh)               |http://spodzone.org.uk/

Reply via email to