<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Mikrotik.moscow [тема: Маршрутизация пакетов - ошибка или что-то не так с моими настройками?]</title>
		<link>http://mikrotik.moscow</link>
		<description>Новое в теме Маршрутизация пакетов - ошибка или что-то не так с моими настройками? форума RouterOS на сайте Mikrotik.moscow [mikrotik.moscow]</description>
		<language>ru</language>
		<docs>http://backend.userland.com/rss2</docs>
		<pubDate>Mon, 03 Aug 2026 04:58:48 -0400</pubDate>
		<item>
			<title>Маршрутизация пакетов - ошибка или что-то не так с моими настройками?</title>
			<description><![CDATA[<b><a href="http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248042">Маршрутизация пакетов - ошибка или что-то не так с моими настройками?</a></b> <i>RouterOS</i> в форуме <a href="http://mikrotik.moscow/forum/forum57/">RouterOS</a>. <br />
			Надо сопоставить соединения, приходящие из внешней сети WAN, чтобы они не потеряли обратный путь. Добавить chain=prerouting in-interface=ISP1 connection-mark=no-mark action=mark-connection new-connection-mark=ISP1_conn. Добавить chain=prerouting in-interface=ISP2 connection-mark=no-mark action=mark-connection new-connection-mark=ISP2_conn. <br />
			<i>20.01.2022 17:47:00, gadriv.</i>]]></description>
			<link>http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248042</link>
			<guid>http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248042</guid>
			<pubDate>Thu, 20 Jan 2022 17:47:00 -0500</pubDate>
			<category>RouterOS</category>
		</item>
		<item>
			<title>Маршрутизация пакетов - ошибка или что-то не так с моими настройками?</title>
			<description><![CDATA[<b><a href="http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248041">Маршрутизация пакетов - ошибка или что-то не так с моими настройками?</a></b> <i>RouterOS</i> в форуме <a href="http://mikrotik.moscow/forum/forum57/">RouterOS</a>. <br />
			Никто из Mikrotik не может подтвердить эту ошибку? Ну, пожалуйста… Не могу заставить load-balancing работать. Спасибо. <br />
			<i>06.10.2006 09:32:00, Hellbound.</i>]]></description>
			<link>http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248041</link>
			<guid>http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248041</guid>
			<pubDate>Fri, 06 Oct 2006 09:32:00 -0400</pubDate>
			<category>RouterOS</category>
		</item>
		<item>
			<title>Маршрутизация пакетов - ошибка или что-то не так с моими настройками?</title>
			<description><![CDATA[<b><a href="http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248040">Маршрутизация пакетов - ошибка или что-то не так с моими настройками?</a></b> <i>RouterOS</i> в форуме <a href="http://mikrotik.moscow/forum/forum57/">RouterOS</a>. <br />
			Привет, ребята! Я пытаюсь настроить балансировку нагрузки на своем основном роутере, чтобы объединить две линии интернета, используя эту настройку из вики: <noindex><a href="http://wiki.mikrotik.com/wiki/Load_Balancing" target="_blank" rel="nofollow" >http://wiki.mikrotik.com/wiki/Load_Balancing</a></noindex>. Но, к сожалению, пакеты, предназначенные для шлюза WAN1, отправляются через шлюз WAN2. И я не понимаю почему. То есть, шлюз 211.24.149.41 находится на WAN2, а 211.24.139.113 – на WAN1, но когда пакет предназначен для 211.24.139.113, он отправляется через WAN2 (что неправильно!).<br /><br />Вот мои настройки файрвола:<br /><br />mangle:<br />7 &nbsp; ;;; Mangle New Connection as ODD<br /> &nbsp; &nbsp; chain=prerouting in-interface=LAN connection-state=new nth=1,1,0 <br /> &nbsp; &nbsp; action=mark-connection new-connection-mark=odd passthrough=yes <br /><br /> 8 &nbsp; ;;; Routing mark on marked package with 'ODD'<br /> &nbsp; &nbsp; chain=prerouting in-interface=LAN connection-mark=odd <br /> &nbsp; &nbsp; action=mark-routing new-routing-mark=odd passthrough=no <br /><br /> 9 &nbsp; ;;; mangle new connection as 'EVEN'<br /> &nbsp; &nbsp; chain=prerouting in-interface=LAN connection-state=new nth=1,1,1 <br /> &nbsp; &nbsp; action=mark-connection new-connection-mark=even passthrough=yes <br /><br />10 &nbsp; ;;; mark packets to route 'EVEN'<br /> &nbsp; &nbsp; chain=prerouting in-interface=LAN connection-mark=even <br /> &nbsp; &nbsp; action=mark-routing new-routing-mark=even passthrough=no<br /><br />NAT:<br />0 X chain=dstnat in-interface=LAN src-address=10.1.1.0/24 <br /> &nbsp; &nbsp; dst-address=!10.1.1.1 protocol=tcp dst-port=80 hotspot=auth <br /> &nbsp; &nbsp; action=redirect to-ports=3128 <br /><br /> 1 &nbsp; ;;; emule<br /> &nbsp; &nbsp; chain=dstnat dst-address=211.24.149.43 protocol=tcp dst-port=18669 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.101 to-ports=5669 <br /><br /> 2 &nbsp; ;;; emule<br /> &nbsp; &nbsp; chain=dstnat dst-address=211.24.139.114 protocol=tcp dst-port=18669 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.101 to-ports=5669 <br /><br /> 3 X ;;; srcnat telekom<br /> &nbsp; &nbsp; chain=srcnat action=src-nat to-addresses=60.52.138.14 to-ports=0-65535 <br /><br /> 4 &nbsp; ;;; srcnat 211.24.139.114 - odd<br /> &nbsp; &nbsp; chain=srcnat out-interface=WAN1 src-address=10.1.0.0/16 <br /> &nbsp; &nbsp; connection-mark=odd action=src-nat to-addresses=211.24.139.114 <br /> &nbsp; &nbsp; to-ports=0-65535 <br /><br /> 5 &nbsp; ;;; srcnat 211.24.149.43 - even<br /> &nbsp; &nbsp; chain=srcnat src-address=10.1.0.0/16 connection-mark=even action=src-nat <br /> &nbsp; &nbsp; to-addresses=211.24.149.43 to-ports=0-65535 <br /><br /> 6 &nbsp; ;;; emule<br /> &nbsp; &nbsp; chain=dstnat dst-address=211.24.139.114 protocol=udp dst-port=17565 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.101 to-ports=5669 <br /><br /> 7 &nbsp; ;;; emule<br /> &nbsp; &nbsp; chain=dstnat dst-address=211.24.149.43 protocol=udp dst-port=17565 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.101 to-ports=5568 <br /><br /> 8 &nbsp; ;;; bittorrent<br /> &nbsp; &nbsp; chain=dstnat dst-address=211.24.149.43 protocol=tcp dst-port=6881 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.101 to-ports=6881 <br /><br /> 9 &nbsp; ;;; bittorrent<br /> &nbsp; &nbsp; chain=dstnat dst-address=211.24.139.114 protocol=tcp dst-port=6881 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.101 to-ports=6881 <br /><br />10 &nbsp; chain=dstnat dst-address=211.24.139.113 protocol=tcp dst-port=3030 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.106 to-ports=80 <br /><br />11 &nbsp; ;;; ftp<br /> &nbsp; &nbsp; chain=dstnat dst-address=211.24.149.43 protocol=tcp dst-port=20-21 <br /> &nbsp; &nbsp; action=dst-nat to-addresses=10.1.1.101 to-ports=20-21 <br /><br />12 X ;;; masquerade hotspot network<br /> &nbsp; &nbsp; chain=srcnat src-address=10.1.1.0/24 action=masquerade<br /><br />ROUTE:<br /># &nbsp; &nbsp; DST-ADDRESS &nbsp; &nbsp; &nbsp; &nbsp;PREF-SRC &nbsp; &nbsp; &nbsp; &nbsp;G GATEWAY &nbsp; &nbsp; &nbsp; &nbsp; DISTANCE INTERFACE<br /> 0 ADC 10.1.1.0/24 &nbsp; &nbsp; &nbsp; &nbsp;10.1.1.1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; LAN &nbsp; &nbsp; &nbsp;<br /> 1 A S 64.233.189.104/32 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;r 211.24.149.41 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;WAN2 &nbsp; &nbsp; <br /> 2 A S 66.118.136.67/32 &nbsp; 192.168.0.1 &nbsp; &nbsp; r 192.168.0.255 &nbsp; WAN1 &nbsp; &nbsp; <br /> 3 &nbsp; ;;; tbbh - 2358 2mb (1024)<br /> &nbsp; &nbsp; 211.24.149.43/29 &nbsp; 211.24.149.40 &nbsp; 211.24.149.47 &nbsp; WAN2 <br />
			<i>05.10.2006 08:22:00, Hellbound.</i>]]></description>
			<link>http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248040</link>
			<guid>http://mikrotik.moscow/forum/forum57/64249-marshrutizatsiya-paketov-_-oshibka-ili-chto_to-ne-tak-s-moimi-nastroykami/message248040</guid>
			<pubDate>Thu, 05 Oct 2006 08:22:00 -0400</pubDate>
			<category>RouterOS</category>
		</item>
	</channel>
</rss>
