Re: [LEDE-DEV] [PATCH] busybox: re-enable telnet applet

2018-02-19 Thread Paul Oranje
Who needs telnet when nc is there ?

> Op 18 feb. 2018, om 19:25 heeft Philip Prindeville 
>  het volgende geschreven:
> 
> 
> 
>> On Feb 18, 2018, at 2:27 AM, John Crispin  wrote:
>> 
>> 
>> 
>>> On 20/06/17 19:13, Stefan Tomanek wrote:
>>> While sshd should be favoured over telnetd, having a telnet client on the
>>> router is useful for connecting to other devices in the same LAN.
>>> 
>>> Signed-off-by: Stefan Tomanek 
>> 
>> sorry for the late reply, it has been discussed over and over and the 
>> decision was made to not enable telnet by default. sorry ...
>> 
>>John
> 
> Too bad.  While it’s a liability for logging in, it’s a great tool for 
> testing remote services like HTTP, SMTP, IMAP, JetDirect printers, etc.
> 
> 
>>> ---
>>> package/utils/busybox/Config-defaults.in |4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>> 
>>> diff --git a/package/utils/busybox/Config-defaults.in 
>>> b/package/utils/busybox/Config-defaults.in
>>> index 1977e7f..9e0efcf 100644
>>> --- a/package/utils/busybox/Config-defaults.in
>>> +++ b/package/utils/busybox/Config-defaults.in
>>> @@ -2289,10 +2289,10 @@ config BUSYBOX_DEFAULT_TCPSVD
>>> default n
>>> config BUSYBOX_DEFAULT_TELNET
>>> bool
>>> -default n
>>> +default y
>>> config BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE
>>> bool
>>> -default n
>>> +default y
>>> config BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN
>>> bool
>>> default n
>> 
>> 
>> ___
>> Lede-dev mailing list
>> Lede-dev@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/lede-dev
> 
> 
> ___
> Lede-dev mailing list
> Lede-dev@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/lede-dev


___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


Re: [LEDE-DEV] [PATCH] busybox: re-enable telnet applet

2018-02-18 Thread Alberto Bursi



On 02/18/2018 10:21 PM, edgar.sol...@web.de wrote:

On 2/18/2018 21:26, Philip Prindeville wrote:

On Feb 18, 2018, at 11:25 AM, Philip Prindeville 
 wrote:




On Feb 18, 2018, at 2:27 AM, John Crispin  wrote:




On 20/06/17 19:13, Stefan Tomanek wrote:
While sshd should be favoured over telnetd, having a telnet client on the
router is useful for connecting to other devices in the same LAN.

Signed-off-by: Stefan Tomanek 

sorry for the late reply, it has been discussed over and over and the decision 
was made to not enable telnet by default. sorry ...

John

Too bad.  While it’s a liability for logging in, it’s a great tool for testing 
remote services like HTTP, SMTP, IMAP, JetDirect printers, etc.

SNIP

looks like it is possible to keep the telnet applet only, not telnetd. if this 
is not wanted for size, is there an alternative to interact with a port 
pushing/receiving characters?

..ede

___



There is a closed (not merged) PR for the packages repo that adds 
telnet-bsd package, which is a commonly used telnet client, and is 
independent from Busybox. The code is still available, and should work fine.

https://github.com/openwrt/packages/pull/4509

-Alberto

___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


Re: [LEDE-DEV] [PATCH] busybox: re-enable telnet applet

2018-02-18 Thread edgar . soldin
On 2/18/2018 21:26, Philip Prindeville wrote:
> 
>> On Feb 18, 2018, at 11:25 AM, Philip Prindeville 
>>  wrote:
>>
>>
>>
>>> On Feb 18, 2018, at 2:27 AM, John Crispin  wrote:
>>>
>>>
>>>
 On 20/06/17 19:13, Stefan Tomanek wrote:
 While sshd should be favoured over telnetd, having a telnet client on the
 router is useful for connecting to other devices in the same LAN.

 Signed-off-by: Stefan Tomanek 
>>>
>>> sorry for the late reply, it has been discussed over and over and the 
>>> decision was made to not enable telnet by default. sorry ...
>>>
>>>John
>>
>> Too bad.  While it’s a liability for logging in, it’s a great tool for 
>> testing remote services like HTTP, SMTP, IMAP, JetDirect printers, etc.
> 
SNIP

looks like it is possible to keep the telnet applet only, not telnetd. if this 
is not wanted for size, is there an alternative to interact with a port 
pushing/receiving characters?

..ede

___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


Re: [LEDE-DEV] [PATCH] busybox: re-enable telnet applet

2018-02-18 Thread Philip Prindeville

> On Feb 18, 2018, at 11:25 AM, Philip Prindeville 
>  wrote:
> 
> 
> 
>> On Feb 18, 2018, at 2:27 AM, John Crispin  wrote:
>> 
>> 
>> 
>>> On 20/06/17 19:13, Stefan Tomanek wrote:
>>> While sshd should be favoured over telnetd, having a telnet client on the
>>> router is useful for connecting to other devices in the same LAN.
>>> 
>>> Signed-off-by: Stefan Tomanek 
>> 
>> sorry for the late reply, it has been discussed over and over and the 
>> decision was made to not enable telnet by default. sorry ...
>> 
>>John
> 
> Too bad.  While it’s a liability for logging in, it’s a great tool for 
> testing remote services like HTTP, SMTP, IMAP, JetDirect printers, etc.


Although we should be honest about it: the problem isn’t the host with the 
telnet client; it’s the one with the telnet server.

-Philip


>>> ---
>>> package/utils/busybox/Config-defaults.in |4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>> 
>>> diff --git a/package/utils/busybox/Config-defaults.in 
>>> b/package/utils/busybox/Config-defaults.in
>>> index 1977e7f..9e0efcf 100644
>>> --- a/package/utils/busybox/Config-defaults.in
>>> +++ b/package/utils/busybox/Config-defaults.in
>>> @@ -2289,10 +2289,10 @@ config BUSYBOX_DEFAULT_TCPSVD
>>> default n
>>> config BUSYBOX_DEFAULT_TELNET
>>> bool
>>> -default n
>>> +default y
>>> config BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE
>>> bool
>>> -default n
>>> +default y
>>> config BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN
>>> bool
>>> default n
>> 
>> 


___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


Re: [LEDE-DEV] [PATCH] busybox: re-enable telnet applet

2018-02-18 Thread Philip Prindeville


> On Feb 18, 2018, at 2:27 AM, John Crispin  wrote:
> 
> 
> 
>> On 20/06/17 19:13, Stefan Tomanek wrote:
>> While sshd should be favoured over telnetd, having a telnet client on the
>> router is useful for connecting to other devices in the same LAN.
>> 
>> Signed-off-by: Stefan Tomanek 
> 
> sorry for the late reply, it has been discussed over and over and the 
> decision was made to not enable telnet by default. sorry ...
> 
> John

Too bad.  While it’s a liability for logging in, it’s a great tool for testing 
remote services like HTTP, SMTP, IMAP, JetDirect printers, etc.


>> ---
>>  package/utils/busybox/Config-defaults.in |4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/package/utils/busybox/Config-defaults.in 
>> b/package/utils/busybox/Config-defaults.in
>> index 1977e7f..9e0efcf 100644
>> --- a/package/utils/busybox/Config-defaults.in
>> +++ b/package/utils/busybox/Config-defaults.in
>> @@ -2289,10 +2289,10 @@ config BUSYBOX_DEFAULT_TCPSVD
>>  default n
>>  config BUSYBOX_DEFAULT_TELNET
>>  bool
>> -default n
>> +default y
>>  config BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE
>>  bool
>> -default n
>> +default y
>>  config BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN
>>  bool
>>  default n
> 
> 
> ___
> Lede-dev mailing list
> Lede-dev@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/lede-dev


___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


Re: [LEDE-DEV] [PATCH] busybox: re-enable telnet applet

2018-02-18 Thread John Crispin



On 20/06/17 19:13, Stefan Tomanek wrote:

While sshd should be favoured over telnetd, having a telnet client on the
router is useful for connecting to other devices in the same LAN.

Signed-off-by: Stefan Tomanek 


sorry for the late reply, it has been discussed over and over and the 
decision was made to not enable telnet by default. sorry ...


    John

---
  package/utils/busybox/Config-defaults.in |4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/utils/busybox/Config-defaults.in 
b/package/utils/busybox/Config-defaults.in
index 1977e7f..9e0efcf 100644
--- a/package/utils/busybox/Config-defaults.in
+++ b/package/utils/busybox/Config-defaults.in
@@ -2289,10 +2289,10 @@ config BUSYBOX_DEFAULT_TCPSVD
default n
  config BUSYBOX_DEFAULT_TELNET
bool
-   default n
+   default y
  config BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE
bool
-   default n
+   default y
  config BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN
bool
default n



___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


[LEDE-DEV] [PATCH] busybox: re-enable telnet applet

2017-06-20 Thread Stefan Tomanek
While sshd should be favoured over telnetd, having a telnet client on the
router is useful for connecting to other devices in the same LAN.

Signed-off-by: Stefan Tomanek 
---
 package/utils/busybox/Config-defaults.in |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/utils/busybox/Config-defaults.in 
b/package/utils/busybox/Config-defaults.in
index 1977e7f..9e0efcf 100644
--- a/package/utils/busybox/Config-defaults.in
+++ b/package/utils/busybox/Config-defaults.in
@@ -2289,10 +2289,10 @@ config BUSYBOX_DEFAULT_TCPSVD
default n
 config BUSYBOX_DEFAULT_TELNET
bool
-   default n
+   default y
 config BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE
bool
-   default n
+   default y
 config BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN
bool
default n
-- 
1.7.10.4

___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev