Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

RDP access using cisco soho 97

Status
Not open for further replies.

ChunderPants

Technical User
Jan 14, 2004
9
0
0
GB
I have an Cisco Soho 97 with a public IP address. My lan address is a 192.168.x.x I want to RDP to my home pc remotly is this possible. Do I have to configure an access-list or NAT? Cheers
 
If you haven't enabled any IP security features, NAT will likely suffice.

Something as follows may do the trick for you:

int ethernet0
ip nat inside

int dialer0
ip nat outside

ip nat inside source static tcp 192.168.x.x 3389 a.b.c.d 3389


where 192.168.x.x is the IP address your internal machine and a.b.c.d is the IP address of your ADSL WAN interface (which I've assumed is Dialer0).

You'll need the following as well of course to allow your internal host to communicate with the outside world:


ip nat inside source list 1 interface dialer0 overload

access-list 1 permit 192.168.x.x 0.0.255.255
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top