![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Unable to telnet to server | chongkls77 | AIX | 1 | 05-06-2008 03:40 AM |
| unable to telnet from win xp to sun fire v880 server | pshelke | UNIX for Dummies Questions & Answers | 1 | 11-28-2007 03:23 AM |
| Unable to login at console and telnet | vestro | HP-UX | 1 | 11-21-2005 09:53 PM |
| Unable to telnet from SunOS 5.6 Server | sharris82 | UNIX for Dummies Questions & Answers | 3 | 08-18-2005 01:45 AM |
| Unable to telnet into the Sun server | dawn_lwf | IP Networking | 2 | 10-24-2001 01:50 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Not sure, have you solved it or not?
Is your IP or name listed in /etc/hosts? You might have to try writing a small C program to call "gethostbyname" and "gethostbyaddr" to track this down to see why telnet is failing. |
| Forum Sponsor | ||
|
|
|
|||
|
behaviour by design
hi. this is behaviour by design in the server machine. What's happening is that the sun server that is not letting you in has a /etc/hosts.allow (and/or a /etc/hosts.deny) file that specifies rules telling it whether it should let a connection in depending on the connecting user/hosts/domain/network etc...
Normally, hosts.allow and hosts.deny are only checked when a program calls hosts_access(). By default, sshd and other programs do check the files, but not daemons like in.telnetd and ftpd, because these are services handled by inetd and by default inetd doesn't have tcp_wrappers on. The sysadmin must have enabled tcp_wrappers to telnet or to the whole of inetd, and thus each connection gets run through the /etc/hosts.allow and /etc/hosts.deny ruleset. If you have a domain name change, maybe you are no longer making it through the rules in /etc/hosts.allow and /etc/hosts.deny so just update those. |