Hi Guys,
I’ve been Mikrotik for a while, I’m looking at upgrading some core pieces of equipment from Mikrotik to Cisco.
I need to have this Cisco router working as a PPTP server just like the Mikrotik was:
Mikrotik Config:
/ppp secret
add local-address=10.10.10.254 name=Customer1 password=Customer1 \
remote-address=10.10.10.1
add local-address=10.20.20.254 name=Customer2 password=Customer2 \
remote-address=10.20.20.1
/interface pptp-server server
set default-profile=PPTP enabled=yes
And here is my attempt to mimic this in Cisco:
vpdn-group Customer1
! Default PPTP VPDN group
accept-dialin
protocol pptp
virtual-template 1
session-limit 1
local name Customer1
no source vpdn-template
l2tp tunnel timeout no-session 15
vpdn-group Customer2
accept-dialin
protocol pptp
virtual-template 2
local name Customer2
no source vpdn-template
l2tp tunnel timeout no-session 15
!
interface Virtual-Template1
description Customer1
ip unnumbered Loopback0
peer default ip address pool Customer1
no keepalive
ppp encrypt mppe 128
ppp authentication ms-chap ms-chap-v2
!
interface Virtual-Template2
description Customer2
ip unnumbered Loopback0
peer default ip address pool Customer2
no keepalive
ppp encrypt mppe 128
ppp authentication ms-chap ms-chap-v2
ip local pool Customer1 10.10.10.1
ip local pool Customer2 10.20.20.1
username customer1 password 0 customer1
username customer2 password 0 customer2
This works, but is will only Authenticate to the first VPDN-Group/Virtual Interface, why can’t this be easy like Mikrotik. Please help!