Allow RDP from Specific IP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2019 10:11 AM
Hi,
we have cisco 2900 series router, how can I setup a nat through cli where I can allow RDP from specific public IPs only to internal network resource. Version on router is 15.6
Thanks
- Labels:
-
Routing Protocols
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2019 11:05 AM - edited 10-04-2019 11:17 AM
Try using port forwarding:
ACL 10 matches 10.0.0.0/8 (Private range)
Gi2/0 is public space interface:
ip nat inside source list 10 interface GigabitEthernet2/0 overload
ip nat inside source static tcp 10.1.1.1 3389 23.23.23.2 9066 extendable
Where:
10.1.1.1 is the LAN; Network resource where RDP will be used to
3389 is the RDP port by default
23.23.23.2 is the public IP address of your interface or pool range.
9066 is the RDP port that will be used for external resources to RDP to 10.1.1.1
