Hi Guys
I want to allow PPTP VPN connection to an internal PPTP server but I'm not getting the nating quite right.
Below is my config:
RDP is working so I know it's just protocol GRE 47 that I need to allow.
It has something to do with using Access-list 101 but I'm not sure how it fits together.
I want to allow PPTP VPN connection to an internal PPTP server but I'm not getting the nating quite right.
Below is my config:
ROUTER1#show run
Building configuration...
Current configuration : 924 bytes
!
version 12.1
no service single-slot-reload-enable
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname ROUTER 1
!
!
!
!
!
!
ip subnet-zero
!
!
!
!
interface Ethernet0
ip address 192.168.1.1 255.255.255.0
ip nat inside
!
interface Serial0
ip address 196.1.1.1 255.255.255.252
ip nat outside
!
ip nat inside source list 1 interface Serial0 overload
ip nat inside source static udp 192.1.1.2 1723 196.1.1.1 1723 extendable
ip nat inside source static tcp 192.1.1.2 1723 196.1.1.1 1723 extendable
ip nat inside source static tcp 192.1.1.2 1721 196.1.1.1 1721 extendable
ip nat inside source static tcp 192.1.1.2 3389 196.1.1.1 3389 extendable
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0
no ip http server
!
access-list 1 permit 192.1.1.2
access-list 1 permit 192.1.1.1
!
end
RDP is working so I know it's just protocol GRE 47 that I need to allow.
It has something to do with using Access-list 101 but I'm not sure how it fits together.