slava.trifonov Posted December 7, 2017 Share Posted December 7, 2017 Дано: lighttpd с виртуальными хостами на нестандартном порту 1088 записи в hosts: 192.168.0.1 router.local 192.168.0.200 domain1.local 192.168.0.200 domain2.local и т.д. правило в iptables iptables -t nat -A PREROUTING -s 192.168.0.0/16 -d 192.168.0.200 -p tcp --dport 80 -j DNAT --to-destination 192.168.0.1:1088 открываю в браузере domain1.local или domain2.local - вижу фигу ЧЯДНТ? Хотя router.local работает без проблем. Никакого устройства по адресу 192.168.0.200 не существует. Quote Link to comment Share on other sites More sharing options...
KorDen Posted December 7, 2017 Share Posted December 7, 2017 А не проще веб-интерфейс роутера повесить на нестандартный порт? 40 минут назад, slava.trifonov сказал: ЧЯДНТ? destination-адрес в локальном сегменте, ПК пытаеся искать хост по ARP и не находит. Нужен IP вне диапазона LAN, чтобы ПК отправлял пакеты на гейт Quote Link to comment Share on other sites More sharing options...
slava.trifonov Posted December 7, 2017 Author Share Posted December 7, 2017 О! спасибо. Переписал правило iptables -t nat -A PREROUTING -s 192.168.0.0/24 -d 192.168.1.1 -p tcp --dport 80 -j DNAT --to-destination 192.168.0.1:1088 и поправил hosts. Заработало! Quote Link to comment Share on other sites More sharing options...
Nuke Posted April 10, 2019 Share Posted April 10, 2019 (edited) Друзья, подскажите. Перестало что-либо открываться со всех устройств, если в url есть русские буквы. К примеру, раньше открывалось http://xxx.ru/logo/5 канал.png , теперь перестало. Подозреваю, что это после скрипта на удаление невостребованных зависимостей в opkg opkg list-installed | awk '{print $1}' | while read -r line; do if (opkg info $line | grep -q 'install ok installed'); then opkg --autoremove remove $line; fi; done (@https://forum.archive.openwrt.org/viewtopic.php?id=52689&p=1#p316052) Как чинить? Установлен lighttpd. Edited April 10, 2019 by Nuke Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.