• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Just installed Mandrake 7.1 and machine won't accept telnet/ssh connections

bubba

Golden Member
Just installed Mandrake 7.1. I used normal security and after installation the box will not accept normal ftp connections. The machine is on-line correctly as I can surf and telnet elsewhere. What could be causing this? (I installed both the telnet client and server and set the security level to medium)

On a different note I can't install SSH because it claims it cannot find 'ltermcap'. I do have libtermcap.so, so why is it complaining? Anyone know?

Thanks!
 
1) Check that inetd is running.

2) Check your /etc/hosts.allow and /etc/hosts.deny file.

3) Are you compiling ssh or installing from and rpm?

3a) I'm sure it's just looking for libtermcap in a place other than where it resides on your system is all.
 
Mandrake gives you the option to install openssh, which I prefer. It actually requires 5 rpms (6 if you install the openssl-devel package).
 
It's not IN the distro, but they give you the option, after you've setup your networking, to download and install the crypto stuff.
 

I am not sure what was causing the telnet/ssh problem but I was suspect and I reinstalled and now it is ok (after modifying hosts.allow and deny again).

I could get the SSH RPM to install, but I couldn't compile it. Strange, but when I ran 'make' it said it couldn't find -ltermcap. I found this line in the Makefile:

LIBS= -ltermcap -lnsl -L/usr/local/lib -lcrypt ...some other libs...

And libtermcap is in /lib, so I don't see why it is not fiding it.

Would this be an OK syntax to use:

LIBS= -L/lib -ltermcap -lnsl -L/usr/local/lib -lcrypt
 
Probably because it's looking in /usr/lib/... instead of /lib/...

No biggee. You can pass those args when you run the configure script though.

What are you trying to do with the environment variable there?
 
Back
Top