I have this samba service running on a box with 2 network interfaces. I can't redirect incoming connections on port 445 because it is being used by this service:

#ssh -fgNL 445:192.168.0.2:445 user@localhost
channel_setup_fwd_listener: cannot listen to port: 445

There is any way to make the samba service to listen an specific interface, while connections on the other interface are redirected?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 5 down vote accepted
bind interfaces only = True
interfaces = eth0 192.168.0.2

in smb.conf so it will listen only to that interface

link|improve this answer
Yay ! – Jader Dias Aug 30 '09 at 20:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.