TCL: TCP Wrapper (tcp_wrappers.tcz) instalado, mas o arquivo / usr / local / bin / tcpd não está lá

1

Estou aprendendo firewall baseado em host instalando tcp_wrappers.tcz no Tiny Core Linux (TCL).

Inicialmente, os seguintes arquivos não estavam lá, o que era esperado.

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

ANTES

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

INSTALAÇÃO

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

DEPOIS

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

Depois, consegui ver os dois arquivos criados.

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.

Infelizmente, /usr/local/bin/tcpd não estava presente.

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

Obviamente, o TCP Wrapper não funciona sem tcpd , certo?

Como faço para que isso funcione?

    
por Sabrina 03.05.2018 / 14:32

1 resposta

1

Aparentemente, sshd & nc não foram compilados contra a biblioteca libwrap.a no TCL. Acabei de testar /usr/sbin/sshd no CentOS e funciona, mas não no 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 ~]# 

link

    
por 09.06.2018 / 01:44