"Telnetd listens for incoming TELNET connections on PORT.\n" \
"Options:\n" \
"\t-p PORT\tlisten for connections on PORT (default 23)\n" \
+ "\t-b ADDR\tlisten for connections on ADDR (default 0.0.0.0)\n"\
"\t-l LOGIN\texec LOGIN on connect (default /bin/sh)\n" \
"\t-f issue_file\tDisplay issue_file instead of /etc/issue"
#endif
#include <unistd.h>
#include <errno.h>
#include <netinet/in.h>
+#include <arpa/inet.h>
#include <fcntl.h>
#include <stdio.h>
#include <signal.h>
#ifndef CONFIG_FEATURE_TELNETD_INETD
int on = 1;
int portnbr = 23;
+ struct in_addr bind_addr = { .s_addr = 0x0 };
#endif /* CONFIG_FEATURE_TELNETD_INETD */
int c;
static const char options[] =
#ifdef CONFIG_FEATURE_TELNETD_INETD
"f:l:";
#else /* CONFIG_EATURE_TELNETD_INETD */
- "f:l:p:";
+ "f:l:p:b:";
#endif /* CONFIG_FEATURE_TELNETD_INETD */
int maxlen, w, r;
case 'p':
portnbr = atoi(optarg);
break;
+ case 'b':
+ if (inet_aton(optarg, &bind_addr) == 0)
+ bb_show_usage();
+ break;
#endif /* CONFIG_FEATURE_TELNETD_INETD */
default:
bb_show_usage();
#ifdef CONFIG_FEATURE_IPV6
sa.sin6_family = AF_INET6;
sa.sin6_port = htons(portnbr);
+ /* sa.sin6_addr = bind_addr6; */
#else
sa.sin_family = AF_INET;
sa.sin_port = htons(portnbr);
+ sa.sin_addr = bind_addr;
#endif
if (bind(master_fd, (struct sockaddr *) &sa, sizeof(sa)) < 0) {