<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mikrotik RouterOS transparent bridge using PPtP and EoIP</title>
	<atom:link href="http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/</link>
	<description>WISP Tutorials by Butch Evans</description>
	<lastBuildDate>Tue, 10 Jan 2012 14:25:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Jagugo</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-56</link>
		<dc:creator>Jagugo</dc:creator>
		<pubDate>Sun, 03 Jul 2011 19:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-56</guid>
		<description>Butch, I have a question: Why I can´t setup DHCP server in neither Mikrotik when I use transparent bridge using PPtP and EoIP?

This is the IP addresses list in the Mikrotik-2 that connect to the Mikrotik-1 pptp server:

Address                      Network                Interfase
190.254.xxx.xx3/29    190.254.xxx.200    ether1-gateway
190.168.10.2              192.168.10.1         pptp-tunnel1
192.168.15.253/24      192.168.15.0        ether2-local-master

I can´t setup DHCP server in the Mikrotik-2 (or Mikrotik-1),  when use WinBox interfase and I give the ether2-local-master and the IP 192.168.15.253, the DHCP server turn red and don´t work. Or when I configure it in terminal mode I receive those messages:

_____________________________________
[admin@MikroTik-2] &gt; ip dhcp-server
[admin@MikroTik-2] /ip dhcp-server&gt; setup
Select interface to run DHCP server on 

dhcp server interface: ether2-local-master
Select network for DHCP addresses 

dhcp address space: 192.168.15.0/24 
Select gateway for given network 

gateway for dhcp network: 192.168.15.253
If this is remote network, enter address of DHCP relay 

There is no such IP network on selected interface
interrupted 192.168.15.253
[admin@MikroTik-2] /ip dhcp-server&gt; 
_____________________________________

Why?</description>
		<content:encoded><![CDATA[<p>Butch, I have a question: Why I can´t setup DHCP server in neither Mikrotik when I use transparent bridge using PPtP and EoIP?</p>
<p>This is the IP addresses list in the Mikrotik-2 that connect to the Mikrotik-1 pptp server:</p>
<p>Address                      Network                Interfase<br />
190.254.xxx.xx3/29    190.254.xxx.200    ether1-gateway<br />
190.168.10.2              192.168.10.1         pptp-tunnel1<br />
192.168.15.253/24      192.168.15.0        ether2-local-master</p>
<p>I can´t setup DHCP server in the Mikrotik-2 (or Mikrotik-1),  when use WinBox interfase and I give the ether2-local-master and the IP 192.168.15.253, the DHCP server turn red and don´t work. Or when I configure it in terminal mode I receive those messages:</p>
<p>_____________________________________<br />
[admin@MikroTik-2] &gt; ip dhcp-server<br />
[admin@MikroTik-2] /ip dhcp-server&gt; setup<br />
Select interface to run DHCP server on </p>
<p>dhcp server interface: ether2-local-master<br />
Select network for DHCP addresses </p>
<p>dhcp address space: 192.168.15.0/24<br />
Select gateway for given network </p>
<p>gateway for dhcp network: 192.168.15.253<br />
If this is remote network, enter address of DHCP relay </p>
<p>There is no such IP network on selected interface<br />
interrupted 192.168.15.253<br />
[admin@MikroTik-2] /ip dhcp-server&gt;<br />
_____________________________________</p>
<p>Why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jagugo</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-50</link>
		<dc:creator>Jagugo</dc:creator>
		<pubDate>Mon, 28 Mar 2011 22:40:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-50</guid>
		<description>Hi Alexandru MARIN. The correct line in the scrip is:

/interface bridge port add bridge=bridge1 interface=ether2

Look, ether2, not ether1. You are bridging the LAN interface (ether2) not the WAN interface (ether1). I had the same problem and when changed the script to ether2 it worked.

You must add two Firewall Filter Rules, in the PPtP server, the ports 1723 in TCP and UDP in the default configuration in the ether1-gateway, Chain: input, Protocol: 6 (tcp) and 17 (udp), Dst Port: 1723, Action: accept.</description>
		<content:encoded><![CDATA[<p>Hi Alexandru MARIN. The correct line in the scrip is:</p>
<p>/interface bridge port add bridge=bridge1 interface=ether2</p>
<p>Look, ether2, not ether1. You are bridging the LAN interface (ether2) not the WAN interface (ether1). I had the same problem and when changed the script to ether2 it worked.</p>
<p>You must add two Firewall Filter Rules, in the PPtP server, the ports 1723 in TCP and UDP in the default configuration in the ether1-gateway, Chain: input, Protocol: 6 (tcp) and 17 (udp), Dst Port: 1723, Action: accept.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jagugo</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-48</link>
		<dc:creator>Jagugo</dc:creator>
		<pubDate>Mon, 28 Mar 2011 02:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-48</guid>
		<description>I had found a solution, you must open ports 1723 in TCP and UDP in the Firewall Filter Rules, uffff....!!!</description>
		<content:encoded><![CDATA[<p>I had found a solution, you must open ports 1723 in TCP and UDP in the Firewall Filter Rules, uffff&#8230;.!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jagugo</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-47</link>
		<dc:creator>Jagugo</dc:creator>
		<pubDate>Fri, 25 Mar 2011 03:08:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-47</guid>
		<description>I need help with a configuration of two RB750G. 

I try to make a connection like this post about EoIP-PPtP, but failed to establish the PPTP tunnel. There is no way to connect the tunnel. If you configure each router as a client to connect to another VPN (not MikroTik/RouterOS) the conecction can be done, but if configure one or the other router as the PPTP server can not connect clients with either a RB750G or Windows client.

Both RB750G are connected to the LAN ports of a router D-Link Dir 300, which provides internet service, only for setup and testing, then go with fixed IP on the Internet.
 
Left side (PPTP Server): 

Router 1: 
IP WAN (ether1): 192.168.0.51 
Gateway: 192.168.0.1 
LAN IP (ether2): 192.168.88.1 
Tunnel IP EoIP (Local side): 192.168.10.1 

PC 1: 

IP: 192.138.88.10 
Mask: 255.255.255.0 
Gateway: 192.168.88.1 
DNS: 192.168.88.1 

Right side (PPTP client): 

Router 2: 
IP WAN (ether1): 192.168.0.52 
Gateway: 192.168.0.1 
LAN IP (ether2): 192.168.88.2 
EoIP IP tunnel (Remote side): 192.168.10.2 

PC 2: 

IP: 192.168.88.12 
Mask: 255.255.255.0 
Gateway: 192.168.88.2 
DNS: 192.168.88.2 

Any PPP server that enable (PPTP (PPTP, L2TP, OVPN, or whatever) does not work. No client is able to connect. 

I want to know what I&#039;m doing wrong, because I follow the example of this blog and the MikroTik Wiki, but nothing works. I tried with RouterOS 4.17 and now 5.0rc11, but no way. The scripts are simmilar to this post.

I would appreciate any help on this case.</description>
		<content:encoded><![CDATA[<p>I need help with a configuration of two RB750G. </p>
<p>I try to make a connection like this post about EoIP-PPtP, but failed to establish the PPTP tunnel. There is no way to connect the tunnel. If you configure each router as a client to connect to another VPN (not MikroTik/RouterOS) the conecction can be done, but if configure one or the other router as the PPTP server can not connect clients with either a RB750G or Windows client.</p>
<p>Both RB750G are connected to the LAN ports of a router D-Link Dir 300, which provides internet service, only for setup and testing, then go with fixed IP on the Internet.</p>
<p>Left side (PPTP Server): </p>
<p>Router 1:<br />
IP WAN (ether1): 192.168.0.51<br />
Gateway: 192.168.0.1<br />
LAN IP (ether2): 192.168.88.1<br />
Tunnel IP EoIP (Local side): 192.168.10.1 </p>
<p>PC 1: </p>
<p>IP: 192.138.88.10<br />
Mask: 255.255.255.0<br />
Gateway: 192.168.88.1<br />
DNS: 192.168.88.1 </p>
<p>Right side (PPTP client): </p>
<p>Router 2:<br />
IP WAN (ether1): 192.168.0.52<br />
Gateway: 192.168.0.1<br />
LAN IP (ether2): 192.168.88.2<br />
EoIP IP tunnel (Remote side): 192.168.10.2 </p>
<p>PC 2: </p>
<p>IP: 192.168.88.12<br />
Mask: 255.255.255.0<br />
Gateway: 192.168.88.2<br />
DNS: 192.168.88.2 </p>
<p>Any PPP server that enable (PPTP (PPTP, L2TP, OVPN, or whatever) does not work. No client is able to connect. </p>
<p>I want to know what I&#8217;m doing wrong, because I follow the example of this blog and the MikroTik Wiki, but nothing works. I tried with RouterOS 4.17 and now 5.0rc11, but no way. The scripts are simmilar to this post.</p>
<p>I would appreciate any help on this case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandru MARIN</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-42</link>
		<dc:creator>Alexandru MARIN</dc:creator>
		<pubDate>Fri, 24 Dec 2010 18:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-42</guid>
		<description>hello,
           can&#039;t ping the remote computers with the one&#039;s on the other side

i am new in setting up mikrotik routerboard, and i need some help. I have made all setting according to what you have wrote,I have tryed to bridge two networks, but i don&#039;t know where did i go wrong, i have 2 rb750, and i can&#039;t ping the computers from one side to another. the config i have made on each router, in the winbox it shows that there are conected to each other but still i can&#039;t ping each them, i want from two computers on one side i could ping the other computers on the other side. if i am conected through telnet  on the server router i can ping the ISP public adresses (95.77.9.206/24 and 89.39.197.248/23)the adresses i have received from my ISP&#039;s, and can ping the tunnel private adresses 192.168.10.1 and 192.168.10.2, but i can not ping the private adresses 192.168.1.2 attached to the computers i work with on one side with the 192.168.1.3 from the other.
 I haven&#039;t modified anything in firewall or other rules, just setting up the internet connection and the settings above.
on one server router i have :

this router has the ip adress 95.77.9.206/24 on eth1
ip adress 192.168.1.1/24 on eth2
 
/interface pptp-server server set enabled=yes  
/ppp secret 
add name=&quot;USERNAME&quot; service=pptp password=&quot;PASS&quot; local-address=192.168.10.1 remote-address=192.168.10.2 disabled=no
/interface eoip add name=eoiptunnel remote-address=192.168.10.2 tunnel-id=101 disabled=no
/interface bridge add name=bridge1 
/interface bridge port add bridge=bridge1 interface=ether1 
/interface bridge port add bridge=bridge1 interface=eoiptunnel 
 
on routes it has
AS    0.0.0.0/0          95.77.9.1 reachable bridge1    distance 1
DS    0.0.0.0/0          89.137.205.193 reachable bridge1    distance 1    
DAC    95.77.9.0/24      bridge1 reachable                distance 0     pref source 95.77.9.206
DAC    182.168.1.0/24    ether2 reachable                 distance 0     pref source 192.168.1.1      

and on the other remote router:
this router it has 89.39.197.248/23 on eth1

it has 192.168.1.254/24 on eth2

/interface pptp-client add name=&quot;pptp-tunnel1&quot; connect-to=95.77.9.206 user=&quot;USERNAME&quot; password=&quot;PASS&quot; profile=default-encryption add-default-route=no disabled=no
interface eoip add name=eoiptunnel remote-address=192.168.10.1 \ tunnel-id=101 disabled=no 
interface bridge add name=bridge1 
interface bridge port add bridge=bridge1 interface=ether1 
/interface bridge port add bridge=bridge1 interface=eoiptunnel 


on routes it has

AS    0.0.0.0/0          89.39.196.1 reachable bridge1    distance 1
DAC    89.39.196.0/23    bridge1 reachable                distance 0     pref source 89.39.197.248
DAC    182.168.1.0/24    ether2 reachable                 distance 0     pref source 192.168.1.254      

 
please help me ,
good day and happy holydays,</description>
		<content:encoded><![CDATA[<p>hello,<br />
           can&#8217;t ping the remote computers with the one&#8217;s on the other side</p>
<p>i am new in setting up mikrotik routerboard, and i need some help. I have made all setting according to what you have wrote,I have tryed to bridge two networks, but i don&#8217;t know where did i go wrong, i have 2 rb750, and i can&#8217;t ping the computers from one side to another. the config i have made on each router, in the winbox it shows that there are conected to each other but still i can&#8217;t ping each them, i want from two computers on one side i could ping the other computers on the other side. if i am conected through telnet  on the server router i can ping the ISP public adresses (95.77.9.206/24 and 89.39.197.248/23)the adresses i have received from my ISP&#8217;s, and can ping the tunnel private adresses 192.168.10.1 and 192.168.10.2, but i can not ping the private adresses 192.168.1.2 attached to the computers i work with on one side with the 192.168.1.3 from the other.<br />
 I haven&#8217;t modified anything in firewall or other rules, just setting up the internet connection and the settings above.<br />
on one server router i have :</p>
<p>this router has the ip adress 95.77.9.206/24 on eth1<br />
ip adress 192.168.1.1/24 on eth2</p>
<p>/interface pptp-server server set enabled=yes<br />
/ppp secret<br />
add name=&#8221;USERNAME&#8221; service=pptp password=&#8221;PASS&#8221; local-address=192.168.10.1 remote-address=192.168.10.2 disabled=no<br />
/interface eoip add name=eoiptunnel remote-address=192.168.10.2 tunnel-id=101 disabled=no<br />
/interface bridge add name=bridge1<br />
/interface bridge port add bridge=bridge1 interface=ether1<br />
/interface bridge port add bridge=bridge1 interface=eoiptunnel </p>
<p>on routes it has<br />
AS    0.0.0.0/0          95.77.9.1 reachable bridge1    distance 1<br />
DS    0.0.0.0/0          89.137.205.193 reachable bridge1    distance 1<br />
DAC    95.77.9.0/24      bridge1 reachable                distance 0     pref source 95.77.9.206<br />
DAC    182.168.1.0/24    ether2 reachable                 distance 0     pref source 192.168.1.1      </p>
<p>and on the other remote router:<br />
this router it has 89.39.197.248/23 on eth1</p>
<p>it has 192.168.1.254/24 on eth2</p>
<p>/interface pptp-client add name=&#8221;pptp-tunnel1&#8243; connect-to=95.77.9.206 user=&#8221;USERNAME&#8221; password=&#8221;PASS&#8221; profile=default-encryption add-default-route=no disabled=no<br />
interface eoip add name=eoiptunnel remote-address=192.168.10.1 \ tunnel-id=101 disabled=no<br />
interface bridge add name=bridge1<br />
interface bridge port add bridge=bridge1 interface=ether1<br />
/interface bridge port add bridge=bridge1 interface=eoiptunnel </p>
<p>on routes it has</p>
<p>AS    0.0.0.0/0          89.39.196.1 reachable bridge1    distance 1<br />
DAC    89.39.196.0/23    bridge1 reachable                distance 0     pref source 89.39.197.248<br />
DAC    182.168.1.0/24    ether2 reachable                 distance 0     pref source 192.168.1.254      </p>
<p>please help me ,<br />
good day and happy holydays,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rede roteada nao acessa uma rb no meio da rede</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-39</link>
		<dc:creator>Rede roteada nao acessa uma rb no meio da rede</dc:creator>
		<pubDate>Tue, 14 Dec 2010 06:04:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-39</guid>
		<description>[...] via radius. com a rede roteada e autenticação direto no servidor teria de fazer isso: Mikrotik RouterOS transparent bridge using PPtP and EoIP &#124; Butch Evans Blog qualquer coisa estamos ai...  clica na estrelinha pra agradecer.           Citar              + [...]</description>
		<content:encoded><![CDATA[<p>[...] via radius. com a rede roteada e autenticação direto no servidor teria de fazer isso: Mikrotik RouterOS transparent bridge using PPtP and EoIP | Butch Evans Blog qualquer coisa estamos ai&#8230;  clica na estrelinha pra agradecer.           Citar              + [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Butch Evans</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-34</link>
		<dc:creator>Butch Evans</dc:creator>
		<pubDate>Tue, 21 Sep 2010 06:11:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-34</guid>
		<description>Are you wanting to have all 70 stores on the same subnet?  If not, then you only need the 70 pptp tunnels.  If you DO need them all on the same subnet, then you would need to have one pptp/eoip tunnel per store.</description>
		<content:encoded><![CDATA[<p>Are you wanting to have all 70 stores on the same subnet?  If not, then you only need the 70 pptp tunnels.  If you DO need them all on the same subnet, then you would need to have one pptp/eoip tunnel per store.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doublecaps</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-33</link>
		<dc:creator>doublecaps</dc:creator>
		<pubDate>Mon, 20 Sep 2010 16:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-33</guid>
		<description>Great illustration. It works flawlessly.

I need to implement EoIP over PPtP to connect 70 stores to corporate offices. Do I need to create 70 different tunnels or can I point all the routers at the remote sites to the same EoIP tunnel @ corporate office?</description>
		<content:encoded><![CDATA[<p>Great illustration. It works flawlessly.</p>
<p>I need to implement EoIP over PPtP to connect 70 stores to corporate offices. Do I need to create 70 different tunnels or can I point all the routers at the remote sites to the same EoIP tunnel @ corporate office?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Interligar redes físicas independentes apenas para um IP!</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-32</link>
		<dc:creator>Interligar redes físicas independentes apenas para um IP!</dc:creator>
		<pubDate>Fri, 17 Sep 2010 17:31:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-32</guid>
		<description>[...] redes físicas independentes apenas para um IP!   GA_googleFillSlot(&quot;300x250-forum-fistpost&quot;);     Mikrotik RouterOS transparent bridge using PPtP and EoIP &#124; Butch Evans Blog    Celso Domingues Consultoria técnica em TI Tel.: +55 71 9957-3698 سوف يوفر اليسوع [...]</description>
		<content:encoded><![CDATA[<p>[...] redes físicas independentes apenas para um IP!   GA_googleFillSlot(&quot;300&#215;250-forum-fistpost&quot;);     Mikrotik RouterOS transparent bridge using PPtP and EoIP | Butch Evans Blog    Celso Domingues Consultoria técnica em TI Tel.: +55 71 9957-3698 سوف يوفر اليسوع [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Butch Evans</title>
		<link>http://blog.butchevans.com/2008/09/mikrotik_routeros_transparent_bridge_pptp_eoip/comment-page-1/#comment-13</link>
		<dc:creator>Butch Evans</dc:creator>
		<pubDate>Tue, 30 Jun 2009 16:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.butchevans.com/?p=56#comment-13</guid>
		<description>This depends a little on how your access works.  I&#039;m assuming that it works via a PPtP connection.  If that is the case, then I suspect that the reason it is not working is either related to your NAT rule or default route.  This isn&#039;t really the place to troubleshoot these things, but you can find my contact information at my consulting website at http://www.butchevans.com/</description>
		<content:encoded><![CDATA[<p>This depends a little on how your access works.  I&#8217;m assuming that it works via a PPtP connection.  If that is the case, then I suspect that the reason it is not working is either related to your NAT rule or default route.  This isn&#8217;t really the place to troubleshoot these things, but you can find my contact information at my consulting website at <a href="http://www.butchevans.com/" rel="nofollow">http://www.butchevans.com/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

