web-dev-qa-db-ja.com

TCL:TCPラッパー(tcp_wrappers.tcz)はインストールされていますが、/ usr / local / bin / tcpdファイルがありません

Tiny Core Linux(TCL)にtcp_wrappers.tczをインストールして、ホストベースのファイアウォールを学習しています。

当初、予想されていた次のファイルはありませんでした。

/etc/hosts.allow
/etc/hosts.deny

tc@linux:/etc$ date; ls -lh /etc/Host*
Thu May  3 20:20:51 UTC 2018
-rw-rw-r--    1 root     staff         26 Jul  4  2016 /etc/Host.conf
-rw-r--r--    1 root     root           4 May  3 20:18 /etc/hostname
-rw-r--r--    1 root     root         290 May  3 20:18 /etc/hosts

INSTALLATION

tc@linux:/etc$ tce-load -wi tcp_wrappers.tcz
Downloading: tcp_wrappers.tcz
Connecting to repo.tinycorelinux.net (89.22.99.37:80)
tcp_wrappers.tcz     100% |****************************************************************************************************************************************| 40960   0:00:00 ETA
tcp_wrappers.tcz: OK

tc@linux:/etc$ date; ls -lh /etc/Host*
Thu May  3 20:21:14 UTC 2018
-rw-rw-r--    1 root     staff         26 Jul  4  2016 /etc/Host.conf
-rw-r--r--    1 root     root           4 May  3 20:18 /etc/hostname
-rw-r--r--    1 root     root         290 May  3 20:18 /etc/hosts
-rw-r--r--    1 root     root         121 Nov 27  2008 /etc/hosts.allow
-rw-r--r--    1 root     root         119 Nov 27  2008 /etc/hosts.deny

その後、作成された両方のファイルを見ることができました。

tc@linux:/etc$ cat /etc/hosts.allow
# hosts.allow   This file describes the names of the hosts which are allowed access by the '/usr/local/bin/tcpd' server.

tc@linux:/etc$ cat /etc/hosts.deny
# hosts.deny   This file describes the names of the hosts which are denied access by the '/usr/local/bin/tcpd' server.

残念ながら、/usr/local/bin/tcpdはありませんでした。

tc@linux:/etc$ ls -lh /usr/local/bin/tcpd
ls: /usr/local/bin/tcpd: No such file or directory

明らかに、TCPラッパーはtcpdなしでは機能しませんよね?

これを機能させるにはどうすればよいですか?

1
Sabrina

どうやら、sshdとncはTCLのlibwrap.aライブラリに対してコンパイルされていませんでした。テストしたばかりです/usr/sbin/sshd CentOSで動作しますが、TCLでは動作しません。

[root@CentOS ~]# whereis sshd
sshd: /usr/sbin/sshd /usr/share/man/man8/sshd.8.gz
[root@CentOS ~]#

[root@CentOS ~]# ldd /usr/sbin/sshd | grep libwrap
        libwrap.so.0 => /lib64/libwrap.so.0 (0x00007f506b6e2000)
[root@CentOS ~]# 

http://forum.tinycorelinux.net/index.php/topic,21917.msg137160.html#msg13716

1
Sabrina