# Beispiel inetd.conf mit netacl und finger
stream tcp nowait daemon /usr/local/etc/netacl in.fingerd |
# Beispiel netperm-table für Netacl
netacl-service: permit-hosts address -exec program name netacl-service: deny-hosts address -exec program name |
# Beispiel netperm-table für finger
netacl-in.fingerd: permit-hosts .intern.de -exec /usr/sbin/in.fingerd netacl-in.fingerd: permit-hosts * -exec /bin/cat/usr/local/etc/mein_finger_script |
# Beispiel netperm-table für das telnet-gateway (tn-gw)
tn-gw: welcome-msg /usr/local/etc/telnet-welcome.txt tn-gw: deny-msg /usr/local/etc/telnet-deny.txt tn-gw: help-msg /usr/local/etc/telnet-help.txt |
# Beispiel /etc/services
authsrv 7777/tcp |
# Beispiel /etc/inetd.conf für authsrv
authsrv stream tcp nowait root /usr/local/etc/authsrv authsrv |
# Beispiel netperm-table für authsrv
authsrv: database /usr/local/etc/authsrv.db authsrv: permit-hosts localhost bastionhost |
root@bastion%./authsrv
authsrv # adduser admin authsrv # enable admin |
authsrv # proto admin skey
authsrv # superwiz admin |
authsrv # password admin "mein supergeheimes passwort"
ID admin s/key is 99 ma42566 authsrv # exit |
|
# Beispiel /etc/inetd.conf für die Telnet-Proxy Konfiguration
telnet stream tcp nowait root /usr/local/etc/netacl in.telnetd # Beispiel netperm-table für die Telnet-Proxy Konfiguration
|
# Beispiel inetd.conf für smap Konfiguration
smtp stream tcp nowait mail /usr/local/etc/smap smap |
# Beispiel rc*-Script für den Start von smapd
if [ i-x /usr/local/etc/smapd ]; then echo "Starting sendmail proxy" /usr/local/etc/smapd fi |
#Beispiel netperm-table für smap and smapd
smap, smapd: userid mail
|
0,30 * * * * /usr/lib/sendmail -q >/dev/null 2>&1 |