Link to home
Start Free TrialLog in
Avatar of PatrickDoman
PatrickDomanFlag for United States of America

asked on

Cisco Pix 501 with PC Anywhere 10.x

I have a client in a remote state that is having issues with their Pix 501.  

I changed out a DSL service for cable modem service this past weekend while traveling to the customer sites which are out of state.

At this time, the customer has an address range of 58.24.236.145 - 58.24.236.151

.145 is the Gateway. .147 is the first usable.
I have a single PC on the LAN that has the local IP of 192.168.6.200 / 24
The external address I want to assign it is 58.24.236.149

I have several points of code here in the config which I believed would solve this.
access-list in_out permit udp any host 58.24.236.149 eq 5632
access-list in_out permit tcp any host 58.24.236.149 eq 5631

static (inside,outside) tcp 58.24.236.149 pcanywhere-data 192.168.6.200 pcanywhere-data netmask 255.255.255.255 0 0
static (inside,outside) udp 58.24.236.149 pcanywhere-status 192.168.6.200 pcanywhere-status netmask 255.255.255.255 0 0

I have tried other support sites, I have nowhere else to go to ask this without potentially risking my clients site security. Am I close on the config?

 show config
: Saved
: Written by enable_15 at 14:11:32.376 UTC Tue Dec 6 2011
PIX Version 6.3(1)
interface ethernet0 10baset
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
fixup protocol ils 389
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol sip 5060
fixup protocol sip udp 5060
fixup protocol skinny 2000
fixup protocol smtp 25
fixup protocol sqlnet 1521
names
access-list 100 permit ip 192.168.6.0 255.255.255.0 192.168.1.0 255.255.255.0
access-list nonat permit ip 192.168.6.0 255.255.255.0 192.168.1.0 255.255.255.0
access-list fwinout permit icmp any any echo-reply
access-list fwinout permit icmp any any time-exceeded
access-list fwinout permit icmp any any unreachable
access-list in_out permit udp any host 58.24.236.149 eq 5632
access-list in_out permit tcp any host 58.24.236.149 eq 5631
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside 58.24.236.147 255.255.255.240
ip address inside 192.168.6.254 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm location 192.168.1.0 255.255.255.0 inside
pdm location 192.168.6.200 255.255.255.255 inside
pdm location 192.168.6.201 255.255.255.255 inside
pdm location 192.168.1.0 255.255.255.0 outside
pdm location 192.168.6.202 255.255.255.255 inside
pdm history enable
arp timeout 14400
global (outside) 1 58.24.236.149
nat (inside) 0 access-list nonat
nat (inside) 1 0.0.0.0 0.0.0.0 dns 0 0
static (inside,outside) tcp 58.24.236.149 pcanywhere-data 192.168.6.200 pcanywhere-data netmask 255.255.255.255 0 0
static (inside,outside) udp 58.24.236.149 pcanywhere-status 192.168.6.200 pcanywhere-status netmask 255.255.255.255 0 0
route outside 0.0.0.0 0.0.0.0 58.24.236.145 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h225 1:00:00
timeout h323 0:05:00 mgcp 0:05:00 sip 0:30:00 sip_media 0:02:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server RADIUS protocol radius
aaa-server LOCAL protocol local
http server enable
http 192.168.6.0 255.255.255.0 inside
http 192.168.6.200 255.255.255.255 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
no floodguard enable
sysopt connection permit-ipsec
onfig-mode
telnet 192.168.6.0 255.255.255.0 inside
telnet 192.168.1.0 255.255.255.0 inside
telnet timeout 5
ssh timeout 5
management-access inside
console timeout 0

 show ip
System IP Addresses:
        ip address outside 58.24.236.147 255.255.255.240
        ip address inside 192.168.6.254 255.255.255.0
Current IP Addresses:
        ip address outside 58.24.236.147 255.255.255.240
        ip address inside 192.168.6.254 255.255.255.0

This was working before I switched internet out.

When I go to www.whatismyip.com I see   58.24.236.147
Because of the NAT I put in I think I should be seeing 58.24.236.149


Am I missing something?
Avatar of PatrickDoman
PatrickDoman
Flag of United States of America image

ASKER

I got the NAT to work by removing the static (inside,outside) commands I had in place and putting in

static (inside,outside) 58.24.236.149 192.168.6.200 netmask 255.255.255.0 0 0
Now when I go to www.whatismyip.com I show that the computer is now Nat'd to the correct IP.

But I still can't get PC Anywhere to work. I don't even know if the traffic is hitting the computer.

Now that I have the IP address Nat'd to the internal interface of the mainpc, what is my next step to get PC Anywhere forwarding there? when I try to setup another rule allowing PC Anywhere to the same interface it bawks at me saying that another rule is already bound to this interface.

ASKER CERTIFIED SOLUTION
Avatar of PatrickDoman
PatrickDoman
Flag of United States of America image

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
I resolved my own issue.