Блог им. jam → OpenWrt: открываем доступ по ssh через wan порт
Необходимо создать правило, для этого добавим несколько строк в файл:
/etc/config/firewall
#Allow SSH
config 'rule'
option 'src' 'wan'
option 'target' 'ACCEPT'
option 'proto' 'tcp'
option 'dest_port' '22'
Можно еще так:
uci add firewall rule
uci set firewall.@rule[-1].src=wan
uci set firewall.@rule[-1].target=ACCEPT
uci set firewall.@rule[-1].proto=tcp
uci set firewall.@rule[-1].dest_port=22
uci commit firewall
/etc/init.d/firewall restart
Проверено, после перезапуска фаэрвола удачный коннект по ssh через wan порт.
/etc/config/firewall
#Allow SSH
config 'rule'
option 'src' 'wan'
option 'target' 'ACCEPT'
option 'proto' 'tcp'
option 'dest_port' '22'
Можно еще так:
uci add firewall rule
uci set firewall.@rule[-1].src=wan
uci set firewall.@rule[-1].target=ACCEPT
uci set firewall.@rule[-1].proto=tcp
uci set firewall.@rule[-1].dest_port=22
uci commit firewall
/etc/init.d/firewall restart
Проверено, после перезапуска фаэрвола удачный коннект по ssh через wan порт.
- +1
- jam
- 24 января 2011, 22:40