Xinetd.conf Access Control
# default : off # IMAP service allows remote # users to access their mail using # an IMAP client such as Mutt, Pine # fetchmail, or Netscape service imap { socket_type = stream wait = no user = root server = /usr/sbin/imapd log_on_success += DURATION USERID log_on_failure += USERID disable = no only_from = 172.16.12.0 no_access = 172.16.12.231 server = /usr/sbin/in.rlogind } Note :only_from this attribute identifies the hosts that are allowed to connect to the server. Host can be defined using following:
no_access this attribute defines the hosts that are denied access to the service. Host are defined using exactly the same methods are those described previously for the only_from attribute access_times this attribute defines the time of day a service is available, in the form hour: min - hour: min. |

