Link to home
Start Free TrialLog in
Avatar of avfc88
avfc88

asked on

Opening a port for Remote Access Software

I'd like to open up a port for some software that I recently installed on my home PC.  I have a Cisco 1700 series and I'm not sure of the command for this.
Avatar of badrox
badrox

It would depend on the config of the 1700...can you post your config?  (please remove all passwords) thanks.

Avatar of Netman66
You need to create an Access Control List, then add it to the external interface.

Avatar of avfc88

ASKER

Current configuration:
!
version 12.1
service timestamps debug uptime
service timestamps log uptime

memory-size iomem 25
clock timezone EST -5
clock summer-time EDT recurring
ip subnet-zero
no ip source-route
ip name-server x.x.x.x
ip name-server y.y.y.y
!
interface Serial0
 description
 ip address z.z.z.z 255.255.255.252
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 ip nat outside
 no fair-queue
 no cdp enable
!
interface Serial1
 no ip address
 shutdown
 no cdp enable
!
interface FastEthernet0
description
 ip address 192.168.1.1 255.255.255.0
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 ip nat inside
 speed auto
 no cdp enable
!
ip nat pool INTERNET x.x.x.x y.y.y.y  netmask 255.255.255.252
ip nat inside source list OUTSIDE pool INTERNET overload
ip nat inside source static tcp 192.168.1.254 8080 y.y.y.y 8080 extendable
ip nat inside source static tcp 192.168.1.254 80 x.x.x.x 80 extendable
ip classless
ip route 0.0.0.0 0.0.0.0 x.x.x.x
no ip http server
!
!
ip access-list extended OUTSIDE
 permit ip 192.168.1.0 0.0.0.255 any
no cdp run
banner motd ^CC
ASKER CERTIFIED SOLUTION
Avatar of badrox
badrox

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial