Community discussions

MikroTik App
 
mickeylm
newbie
Topic Author
Posts: 32
Joined: Sun Dec 23, 2012 7:28 pm
Location: Germany

VPN pass through RB750 to local windows vpn server

Mon Dec 24, 2012 1:05 am

Hi all,
I have been trying to configure RB750 to forward vpn-requests from home-office via internet to the local windows vpn-server, but it seems that doesn't work. Is there a tutorial for such a requirement available? Thanks a lot for help, Greetings, Mike.
 
gotsprings
Forum Guru
Forum Guru
Posts: 2320
Joined: Mon May 14, 2012 9:30 pm

Re: VPN pass through RB750 to local windows vpn server

Thu Dec 27, 2012 6:23 pm

This is DST NAT chain in firewall.

You need to forward whatever protocol / port to the specific device inside your network.

Default Port is 1723 for built in VPN.

Lets say you have your VPN server sitting at 192.168.1.99. And your routers WAN connection is ether-1
/ip firewall filter
add action=dst-nat chain=dstnat disabled=yes in-interface=ether1 protocol=gre \
    to-addresses=192.168.1.99
add action=dst-nat chain=dstnat disabled=yes dst-port=1723 in-interface=ether1 \
    protocol=tcp to-addresses=192.168.1.99
Open new terminal and put that in.

It will add 2 rules to the dst-nat filter.
Winbox
IP
Firewall
NAT
They are both disabled.
Locate the rules and change the specifics like IP address of your VPN server and interface for your wan connection. Then enable rules.
 
mickeylm
newbie
Topic Author
Posts: 32
Joined: Sun Dec 23, 2012 7:28 pm
Location: Germany

Re: VPN pass through RB750 to local windows vpn server

Sun Dec 30, 2012 11:52 pm

Hi gotsprings,
great tip, this works for me... :D :D
Thanks !
 
gotsprings
Forum Guru
Forum Guru
Posts: 2320
Joined: Mon May 14, 2012 9:30 pm

Re: VPN pass through RB750 to local windows vpn server

Mon Dec 31, 2012 2:44 pm

Hi gotsprings,
great tip, this works for me... :D :D
Thanks !
Cool.

Glad it works for you.