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!

NAT Issue - loosing it

Status
Not open for further replies.

ndinc

ISP
Jun 29, 2005
111
0
0
US
Well guys I have about 17 of these ASA installed so far and thought I was getting fairly good with these. I received a new ASA configured it (so i thought) installed it. NAT work on the outside interface .193 for all and assumed we were good and I would SSH in that night and open the ports for SMTP, WWW, RDP etc.

Nothing worked and I even compared my old configs to see if I was missing something.

I ended up puttin the old firewall back and I brought the unti back to my office and factory defaulted it (non production). I have now added a small block to the outside interface and I have a workstation attached to it running VNC I did this (below) so I could do a to verify the .198 IP is working. But I still cannot VNC into the workstation.

global (outside) 2 207.X.X.198
nat (inside) 2 10.1.1.10 255.255.255.255

I am loosing it...I am going into VPN's, RDP session, P2P sessions as well as working on Site to Site VPN from 5505 to 5510's.

If I cant figure this out I going to have to hang my hat up.

Any thoughts?

login as: pix
pix@207.X.X.193's password:
Type help or '?' for a list of available commands.
asatrackside> en
Password: *********
asatrackside# sh run
: Saved
:
ASA Version 8.2(1)
!
hostname asatrackside
domain-name
enable password TKMONQ4fSoJ4EQ2h encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
names
!
interface Vlan1
nameif inside
security-level 100
ip address 10.1.1.1 255.255.255.0
!
interface Vlan2
nameif outside
security-level 0
ip address 207.X.X.193 255.255.255.248
!
interface Ethernet0/0
switchport access vlan 2
!
interface Ethernet0/1
!
interface Ethernet0/2
!
interface Ethernet0/3
!
interface Ethernet0/4
!
interface Ethernet0/5
!
interface Ethernet0/6
!
interface Ethernet0/7
!
ftp mode passive
clock timezone PST -8
clock summer-time PDT recurring
dns domain-lookup inside
dns domain-lookup outside
dns server-group DefaultDNS
name-server 68.X.X.30
name-server 68.X.X.30
domain-name tracksideperformance.com
access-list outside_access_in extended permit tcp host 207.246.254.13 host 207.X.X.198 eq 5900
access-list outside_access_in extended permit tcp host 207.246.254.19 host 207.X.X.198 eq 5900
pager lines 24
logging asdm informational
mtu inside 1500
mtu outside 1500
icmp unreachable rate-limit 1 burst-size 1
no asdm history enable
arp timeout 14400
global (outside) 1 interface
global (outside) 2 207.X.X.198
nat (inside) 2 10.1.1.10 255.255.255.255
nat (inside) 1 0.0.0.0 0.0.0.0
static (outside,inside) tcp 207.X.X.198 5900 10.1.1.10 5900 netmask 255.255.255.255
access-group outside_access_in in interface outside
route outside 0.0.0.0 0.0.0.0 207.X.X.193 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
timeout tcp-proxy-reassembly 0:01:00
dynamic-access-policy-record DfltAccessPolicy
http server enable
http 10.1.1.0 255.255.255.0 inside
no snmp-server location
no snmp-server contact
snmp-server enable traps snmp authentication linkup linkdown coldstart
crypto ipsec security-association lifetime seconds 28800
crypto ipsec security-association lifetime kilobytes 4608000
no crypto isakmp nat-traversal
telnet timeout 5
ssh 10.1.1.0 255.255.255.0 inside
ssh timeout 5
ssh version 2
console timeout 0

threat-detection basic-threat
threat-detection statistics access-list
no threat-detection statistics tcp-intercept
webvpn
!
class-map inspection_default
match default-inspection-traffic
!
!
policy-map type inspect dns preset_dns_map
parameters
message-length maximum 512
message-length maximum client auto
policy-map global_policy
class inspection_default
inspect dns preset_dns_map
inspect ftp
inspect h323 h225
inspect h323 ras
inspect rsh
inspect rtsp
inspect esmtp
inspect sqlnet
inspect skinny
inspect sunrpc
inspect xdmcp
inspect sip
inspect netbios
inspect tftp
!
service-policy global_policy global
prompt hostname context
Cryptochecksum:339aa804824c87872e7e57c665393c39
: end
asatrackside#


Thanks for your help
 
right off the bat i see
Code:
static (outside,inside) tcp 207.X.X.198 5900 10.1.1.10 5900 netmask 255.255.255.255
should be
Code:
static (inside,outside) tcp 207.X.X.198 5900 10.1.1.10 5900 netmask 255.255.255.255

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top