| Accessing my telnet system and editing /etc/fstab 1) I configured my system(Fedora-5) as telnet server.This was done by editing
the file ekrb5-telnet in xinetd.d as follows.I changed the last option of disable from yes to no..:
cat /etc/xinetd.d/ekrb5-telnet
# default: off
# description: The kerberized telnet server accepts only telnet sessions, \
# which use Kerberos 5 authentication and encryption.
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/kerberos/sbin/telnetd
server_args = -e
log_on_failure += USERID
disable = no
}
After this i configured my firewall to access my system thro' telnet .But whenever i tried to connect to my system from another system i got the following message:
Trying 192.168.32.5...
telnet: connect to address 192.168.32.5: Connection refused
But i was able to connect to my system using ssh from another system...
what's wrong??
2) What's the meaning of each entry in a single line found as follows in /etc/fsab:
/dev/sda1 /mnt/usbpen auto noauto,user,rw,exec 0 0
what does noauto and auto mean?what's rw exec 0 0???
Please help...
Thanks in advance..
Gejoe Daniel |