From: "Шенцев Алексей Владимирович" <ashen@nsrz.ru> To: ALT Linux Community <community@lists.altlinux.org> Subject: Re: [Comm] http_proxy Date: Thu, 16 Mar 2006 12:26:28 +0300 Message-ID: <200603161226.28987.ashen@nsrz.ru> (raw) In-Reply-To: <web-19315872@mail15.rambler.ru> В сообщении от 16 марта 2006 12:10 Manchev Viacheslav написал(a): > По-подробней, пожалуйста...Какой синтаксис? Вроде так, хотя могу и ошибиться: #!/bin/sh # для удобства, особенно если интерфейсов несколько INET_IFACE="<eth смотрящий в инет>" LAN_IFACE="<eth смотрящий в локалку>" INET_IP="<твой ip адрес в интернете>" LAN_IP="<твой ip адрес в локалке>" LAN_MASK="<твой ip адрес в локалке/маска сети>" PROXY_PORT="<твой ip адрес в локалке : порт прокси>" # тоже для удобства IPTABLES="/sbin/iptables" ... #Преренаправляем все запросы из локалки на веб с 80-го порта на порт 8080 (прокси-сервер), #т.е. принудительно пинаем всех на проксю, чёрт с два у нас юзер полезет не через проксю ... ;) $IPTABLES -t nat -A PREROUTING -s $LAN_MASK -d ! $LAN_IP -p tcp --dport 80 -j REDIRECT --to-ports 8080 $IPTABLES -t nat -I PREROUTING -d $LAN_MASK -p tcp --dport 80 -j DNAT --to-destination $PROXY_PORT $IPTABLES -t nat -I POSTROUTING -s $LAN_MASK -o $LAN_IFACE -p tcp -j SNAT --to-source $PROXY_PORT > или сбросьте какой-то файл настроек, ман, или что-то > подобное. Смотри для начала на: http://www.iptables.ru, http://www.opennet.ru, http://iptables.org -- С уважением, Шенцев Алексей Владимирович (AShen) E-mail: ashen@nsrz.ru ICQ: 271053845
next prev parent reply other threads:[~2006-03-16 9:26 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2006-03-15 16:10 Manchev Viacheslav 2006-03-15 16:31 ` Slava Dubrovskiy 2006-03-15 19:41 ` Владимир Гусев 2006-03-16 9:10 ` Manchev Viacheslav 2006-03-16 9:26 ` Шенцев Алексей Владимирович [this message] 2006-03-16 9:41 ` Мерзляков Евгений Анатольевич
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=200603161226.28987.ashen@nsrz.ru \ --to=ashen@nsrz.ru \ --cc=community@lists.altlinux.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
ALT Linux Community general discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 community community/ http://lore.altlinux.org/community \ mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com public-inbox-index community Example config snippet for mirrors. Newsgroup available over NNTP: nntp://lore.altlinux.org/org.altlinux.lists.community AGPL code for this site: git clone https://public-inbox.org/public-inbox.git