Link to home
Start Free TrialLog in
Avatar of jaysonfranklin
jaysonfranklin

asked on

Can connect the vpn client but cannot access network resources

What happens, is that i can ping ip's on the inside interface of the pix, but i cant browse the servers via \\servername.

However, if i pull up a cmd line, i can do a nbtstat -A 192.168.10.x and once it resolves the name, i can then browse via \\servername.

It sounds like a dns problem, but the vpn group has the 192.168.10.2 for dns and then an outside dns from isp. this is the same dns setup that our internal lan uses. Does this need to be changed?

Here's the config

PIX Version 6.3(5)
interface ethernet0 auto
interface ethernet1 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password DjGOaLXBWWiqnfoU encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
hostname PixFirewall
domain-name brainstate.local
fixup protocol dns maximum-length 512
fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol sip 5060
fixup protocol sip udp 5060
fixup protocol skinny 2000
no fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol tftp 69
<--- More --->
               
 names
name 192.168.10.2 exchsvr
access-list Outside_In permit tcp any host x.x.49.67 eq https
access-list Outside_In permit tcp any host x.x.49.67 eq 444
access-list Outside_In permit tcp any host x.x.49.67 eq smtp
access-list Outside_In permit tcp any host x.x.49.67 eq 3389
access-list Outside_In permit tcp any host x.x.49.67 eq 4125
access-list Outside_In permit tcp any host x.x.49.67 eq pptp
access-list Outside_In permit icmp any any echo-reply
access-list Outside_In permit icmp any any time-exceeded
access-list Outside_In permit icmp any any unreachable
access-list bstvpn_splitTunnelAcl permit ip 192.168.10.0 255.255.255.0 any
access-list inside_outbound_nat0_acl permit ip 192.168.10.0 255.255.255.0 192.168.20.0 255.255.255.0
access-list outside_cryptomap_dyn_20 permit ip any 192.168.20.0 255.255.255.0
pager lines 24
icmp deny any outside
icmp permit any inside
mtu outside 1500
mtu inside 1500
ip address outside x.x.49.66 255.255.255.224
ip address inside 192.168.10.1 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
ip local pool bstvpnpool 192.168.20.1-192.168.20.254
<--- More --->
               
 pdm location exchsvr 255.255.255.255 inside
pdm logging informational 100
pdm history enable
arp timeout 14400
global (outside) 10 interface
nat (inside) 0 access-list inside_outbound_nat0_acl
nat (inside) 10 0.0.0.0 0.0.0.0 0 0
static (inside,outside) tcp x.x.49.67 www exchsvr www netmask 255.255.255.255 0 0
static (inside,outside) tcp x.x.49.67 https exchsvr https netmask 255.255.255.255 0 0
static (inside,outside) tcp x.x.49.67 444 exchsvr 444 netmask 255.255.255.255 0 0
static (inside,outside) tcp x.x.49.67 smtp exchsvr smtp netmask 255.255.255.255 0 0
access-group Outside_In in interface outside
route outside 0.0.0.0 0.0.0.0 x.x.49.65 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 sip-disconnect 0:02:00 sip-invite 0:03:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server TACACS+ max-failed-attempts 3
aaa-server TACACS+ deadtime 10
aaa-server RADIUS protocol radius
aaa-server RADIUS max-failed-attempts 3
aaa-server RADIUS deadtime 10
<--- More --->
               
 aaa-server LOCAL protocol local
http server enable
http 192.168.10.0 255.255.255.0 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
tftp-server inside 192.168.10.49 /c:\TFTP-Root\
floodguard enable
sysopt connection permit-ipsec
crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
crypto dynamic-map outside_dyn_map 20 match address outside_cryptomap_dyn_20
crypto dynamic-map outside_dyn_map 20 set transform-set ESP-DES-MD5
crypto map outside_map 65535 ipsec-isakmp dynamic outside_dyn_map
crypto map outside_map interface outside
isakmp enable outside
isakmp nat-traversal 800
isakmp policy 20 authentication pre-share
isakmp policy 20 encryption des
isakmp policy 20 hash md5
isakmp policy 20 group 2
isakmp policy 20 lifetime 86400
vpngroup bstvpn address-pool bstvpnpool
vpngroup bstvpn dns-server exchsvr 65.106.1.196
<--- More --->
               
 vpngroup bstvpn default-domain brainstate.local
vpngroup bstvpn split-tunnel bstvpn_splitTunnelAcl
vpngroup bstvpn idle-time 1800
vpngroup bstvpn password ********
telnet 192.168.10.0 255.255.255.0 inside
telnet timeout 10
ssh timeout 5
console timeout 0
dhcpd address 192.168.10.61-192.168.10.254 inside
dhcpd dns exchsvr 65.106.1.196
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd domain brainstate.local
dhcpd auto_config outside
dhcpd enable inside
username $$$ password $$$ encrypted privilege 2
terminal width 80
banner motd Brain State Technologies Security Message - Terms of Use
banner motd
banner motd The Brain State Technologies computer system is RESTRICTED to official business by authorized users only. Unauthorized entry is prohibited by law and subject to prosecution. All activities and access attempts are monitored and logged for auditing.
banner motd
banner motd Use of this system is your consent to the current Terms of Use. If you are not authorized to use this system, or do not agree to the current Terms of Use, please exit now.
Cryptochecksum:3bda5b186466c06d8ca8024dd4b556e6
: end
<--- More --->
               
 
 PixFirewall#
ASKER CERTIFIED SOLUTION
Avatar of Les Moore
Les Moore
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