- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: terminfo and telnet hard question
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2004 02:23 AM
12-08-2004 02:23 AM
I have specific question regarding to terminfo and telnet.
I have been using proptietary application that is using telnet. On RH 7.2 telnet works, but on my SuSE 9.1 telnet server dismiss connection due to unknown network terminal, see bellow (tcpdump -i lo -A -s 0 port 23)
IP localhost.telnet > localhost.34725:
Last login: Wed Dec 8 16:01:56 from localhost
Have a lot of fun... #means that I'm connected
IP localhost.telnet > localhost.34725
tset: unknown terminal type network
IP localhost.telnet > localhost.34725
Terminal type?
On SuSE exits /usr/share/terminfo/n/net that contains :
net|network|arpanet|dialup|unknown network terminal typeP
on RH7.2 this file doesn't exist.
Removing file from SuSE doesn't help
telnet on localhost works
Does exist some way how to discover which network terminal is sent from aplication or better, how to disable on telnet server verifying of network terminal type ?
I was getting through docs but so far without result.
Any help appreciated
rgds Jan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2004 08:29 AM
12-08-2004 08:29 AM
Re: terminfo and telnet hard question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2004 10:43 AM
12-08-2004 10:43 AM
Solutiontest -x /usr/bin/tset && /usr/bin/tset -I -Q
/> echo $TERM
network
/> tset -I -Q
tset: unknown terminal type network
Terminal type?
tset doesn't like terminal type network. To prevent questions about terminal type you can change line in /etc/profile to
test -x /usr/bin/tset && /usr/bin/tset -I -Q -m network:vt100
/> tset -I -Q -m network:vt100
/>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 07:51 AM
12-13-2004 07:51 AM
Re: terminfo and telnet hard question
However, SuSE 9.1 is not ignoring it, but should already have it defined. On my SuSE 9.1 host terminfo/n/network is a symlink to terminfo/n/net. Creating the symlink should resolve your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 12:03 AM
12-14-2004 12:03 AM
Re: terminfo and telnet hard question
rgds Jan