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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is it possible to NAT 2 public IPs to 2 internal servers on a Cisco 2600

Status
Not open for further replies.

RetrogradePAK

IS-IT--Management
Apr 29, 2002
170
CA
I have an Cisco 2600 with 2 Ethernet Interfaces. Need to access my 2 DVRs (Digital Video Recorders) from the Internet. The internal IPs are 192.168.1.1 and 192.168.1.2. I have a pool of public IP addresses (v4) from my ISP. It is imperative that the 2 DVR should be accessible with different public IPs due to its software limitation. Anyway is it possible to setup my 2600 router in such a way that I map 2 public IPs, e.g 1.1.1.1 and 2.2.2.2 to specific tcp ports for 192.168.1.1 and 192.168.1.2 respectively?. Is so then can anyone share the commands/configuration plzzz
 
Let's say 1.1.1.1=192.168.1.1, 2.2.2.2=192.168.2.2, both TCP 4321

ip nat inside source static tcp 192.168.1.1 4321 1.1.1.1 4321
ip nat inside source static tcp 192.168.2.2 4321 2.2.2.2 4321

HTH

--Tim

ip access-list extended IP-Options-and-Powerball
deny ip any any winning-powerball-ticket
permit ip any any option any-options
!
class-map ACL-Options-and-Powerball
match access-group name IP-Options-and-Powerball
!
policy-map CoPP-POLICY
class ACL-Options-and-Powerball
drop
!
control-plane
service-policy input CoPP-POLICY
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top