I'm trying to setup a vlan between two offices. I followed the following tutorial http://wiki.mikrotik.com/wiki/Manual:BCP_bridging_(PPP_tunnel_bridging). However, I get a pptp:terminated - could not connect - timeout on the client side
here are my settings for the client side.
client config
IP address
ADDRESS NETWORK BROADCAST INTERFACE
0 ;;; default configuration
192.168.1.1/24 192.168.1.0 192.168.1.255 ether2
1 ;;; Public Interface
192.168.2.1/24 192.168.2.0 192.168.2.255 ether5
2 ;;; Private Interface
192.168.3.20/24 192.168.3.0 192.168.3.255 bridge
3 D 2.2.2.66/24 2.2.2.0 2.2.2.255 ether1-gateway
[admin@office2] /interface> print
Flags: D - dynamic, X - disabled, R - running, S - slave
NAME TYPE MTU L2MTU
0 R ether1-gateway ether 1500 1526
1 ;;; Local Config
ether2 ether 1500 1524
2 R ;;; Private Interface
ether3 ether 1500 1524
3 ;;; Public Interface
ether4 ether 1500 1524
4 ;;; Public Interface
ether5 ether 1500 1524
5 R bridge bridge 1500 1524
6 pptp-out1 pptp-out
[admin@office2] /interface bridge> print
Flags: X - disabled, R - running
0 R name="bridge" mtu=1500 l2mtu=1524 arp=enabled mac-address=00:0C:42:A4:06:DD protocol-mode=rstp
priority=0x8000 auto-mac=no admin-mac=00:0C:42:A4:06:DD max-message-age=20s forward-delay=15s
transmit-hold-count=6 ageing-time=5m
[admin@office2] /ppp profile> print
Flags: * - default
0 * name="default" use-compression=default use-vj-compression=default use-encryption=default
only-one=default change-tcp-mss=yes
1 name="ppp-bridge" bridge=bridge use-compression=default use-vj-compression=default use-encryption=yes
only-one=default change-tcp-mss=default
2 * name="default-encryption" use-compression=default use-vj-compression=default use-encryption=yes
only-one=default change-tcp-mss=yes
NAME SERVICE CALLER-ID PASSWORD PROFILE REMOTE-ADDRESS
0 office2 any xxxxxxxxx... ppp-bridge
[admin@office2] /interface pptp-client> print
Flags: X - disabled, R - running
0 name="pptp-out1" max-mtu=1460 max-mru=1460 mrru=disabled connect-to=209.221.206.131 user="office2"
password="xxxxxxxxxxxxx" profile=ppp-bridge add-default-route=yes dial-on-demand=no
allow=pap,chap,mschap1,mschap2
The Server Settings
[admin@office1] /interface bridge> print
Flags: X - disabled, R - running
0 R name="bridge" mtu=1500 l2mtu=1522 arp=enabled mac-address=00:0C:42:75:6F:3E
protocol-mode=rstp priority=0x8000 auto-mac=yes
admin-mac=00:0C:42:75:6F:3E max-message-age=20s forward-delay=15s
transmit-hold-count=6 ageing-time=5m
[admin@office1] /interface bridge port> print
Flags: X - disabled, I - inactive, D - dynamic
INTERFACE BRIDGE PRIORITY PATH-COST HORIZON
0 ether3 bridge 0x80 10 none
[admin@office1] /ip address> print
Flags: X - disabled, I - invalid, D - dynamic
ADDRESS NETWORK BROADCAST INTERFACE
0 192.168.3.1/24 192.168.3.0 192.168.3.255 ether3
1 192.168.1.1/24 192.168.1.0 192.168.1.255 ether2
2 192.168.3.1/24 192.168.3.0 192.168.3.255 mlfd
3 192.168.2.1/24 192.168.2.0 192.168.2.255 ether9
4 5.5.5.131/24 5.5.5.0 5.5.5.255 ether1
[admin@office1] /ppp profile> print
Flags: * - default
1 name="ppp-bridge" bridge=bridge use-compression=default
use-vj-compression=default use-encryption=yes only-one=default
change-tcp-mss=default
[admin@office1] /ppp secret> print
Flags: X - disabled
NAME SERVICE CALLER-ID PASSWORD PROFILE REMOTE-ADDRESS
0 office2 any xxxxxxxx... ppp-bridge
I was thinking of moving office 2 onto a different vlan. Any thoughts.