Проброс портов на Raspberry

Автор _Ilya_, 14 июня 2020, 15:59:10

« назад - далее »

0 Пользователи и 1 гость просматривают эту тему.

_Ilya_

Здравствуйте! Помогите, пожалуйста настроить переадресацию портов на Rasbian, raspberry pi подключена к роутеру по кабелю.
На роутери нужные порты открыл, но на малине, что не пробовал ничего не выходит! Пытаюсь пробросить 32440:32449
ufw не определяется, хотя я нашёл пару файлов с прописанными правилам:
/etc/ufw/applications.d/ufw-webserver
[WWW]
title=Web Server
description=Web server
ports=80/tcp

[WWW Secure]
title=Web Server (HTTPS)
description=Web Server (HTTPS)
ports=443/tcp

[WWW Full]
title=Web Server (HTTP,HTTPS)
description=Web Server (HTTP,HTTPS)
ports=80,443/tcp

[WWW Cache]
title=Web Server (8080)
description=Web Server (8080)
ports=8080/tcp

/etc/ufw/applications.d/ufw-proxyserver
[Socks]
title=Socks proxy
description=Socks proxy
ports=1080/tcp

[Transparent Proxy]
title=Transparent proxy
description=Transparent proxy
ports=8081/tcp

IPTABLES вроде как правило прописывает, но порты всё равно остаются закрытыми, а после перезагрузки правило исчезают, хотя я после правил iptables прописываю save.
sudo iptables -A INPUT -p tcp -m tcp --dport 32440:32449 -j ACCEPT
sudo iptables -A FORWARD -i eth0 -p tcp --dport 32440:32449 -j ACCEPT

interface:
# interfaces(5) file used by ifup(8) and ifdown(8)

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
iface eth0 inet6 auto

А в файле iptables.rules прравила остались
[attach=1]
[attach=2]