From owner-freebsd-bugs Wed Feb 21 16:40:04 1996 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id QAA14646 for bugs-outgoing; Wed, 21 Feb 1996 16:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id QAA14604 Wed, 21 Feb 1996 16:40:02 -0800 (PST) Date: Wed, 21 Feb 1996 16:40:02 -0800 (PST) Message-Id: <199602220040.QAA14604@freefall.freebsd.org> To: freebsd-bugs Cc: From: Bill Fenner Subject: Re: bin/1038: TERM-type inconsitency Reply-To: Bill Fenner Sender: owner-bugs@FreeBSD.ORG Precedence: bulk The following reply was made to PR bin/1038; it has been noted by GNATS. From: Bill Fenner To: mi@aldan.algebra.com Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: bin/1038: TERM-type inconsitency Date: Wed, 21 Feb 1996 16:34:00 PST In message <199602211527.KAA03420@aldan>you write: > When connecting to other machines via telnet, telnet-client > tells the whatever server, that my TERM-type is ANSI80X30 . Can you do the following: % telnet telnet> set option telnet> open (wherever) It is likely that your whatever server is asking for a different name for your terminal type, like so: RCVD IAC SB TERMINAL-TYPE SEND SENT IAC SB TERMINAL-TYPE IS "CONS30" RCVD IAC SB TERMINAL-TYPE SEND SENT IAC SB TERMINAL-TYPE IS "ANSI80X30" RCVD IAC SB TERMINAL-TYPE SEND SENT IAC SB TERMINAL-TYPE IS "ANSI80X30" RCVD IAC SB TERMINAL-TYPE SEND SENT IAC SB TERMINAL-TYPE IS "CONS30" It looks like the whatever server keeps asking until it gets either a terminal type that it recognizes or the first terminal type that I sent. The FreeBSD client seems to be behaving as specified in RFC1091, perhaps it is your whatever server that is behaving incorrectly? ("cons30" and "ansi80x30" are synonyms in /usr/share/misc/termcap) Bill