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

CounterSpy and Pix

Status
Not open for further replies.

recycle

Programmer
Jan 17, 2002
2
GB
Hello.

I'm a newbie to Cisco firewalls and have just inherited a network using a PIX 506 as the central office firewall and a PIX 837 connecting a remote office via a VPN. We also have remote users who log into the 506 using the Cisco VPN Client.

We are trying to implement an Anti-Spyware application (Counterspy) to be centrally managed in the central office.

According to Counterspy we need to open ports in our firewall

----------------------------------------------------


You will need to speak to your firewall guy to configure your PIX. I have looked through the logs and it looks as though your PIX is not allowing SOAP traffic over HTTP and it looks like its stripping the XML documents from the traffic. You will need to open ports 18082 to 18085 for UDP and TCP. Also you may need to add a custom filter to allow the traffic mentioned above through.

-----------------------------------------------------

Here is the configuration from our 506


CODE
show config
: Saved
: Written by enable_15 at 07:28:13.426 UTC Fri Apr 29 2005
PIX Version 6.3(4)
interface ethernet0 auto
interface ethernet1 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password xxx encrypted
passwd xxx encrypted
hostname xxx
domain-name crn.org.uk
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
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol tftp 69
names
access-list inbound permit tcp any host 217.37.31.170 eq 11543
access-list inbound permit icmp any any
access-list BIRMVPN permit ip 10.0.0.0 255.255.255.0 192.168.1.0 255.255.255.0
access-list nonat permit ip 10.0.0.0 255.255.255.0 192.168.1.0 255.255.255.0
access-list nonat permit ip 10.0.0.0 255.255.255.0 172.16.0.0 255.255.255.0
access-list RemoteVPN permit ip any 172.16.0.0 255.255.255.0
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside 217.37.31.170 255.255.255.248
ip address inside 10.0.0.4 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
ip local pool mypool 172.16.0.1-172.16.0.254
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 0 access-list nonat
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
access-group inbound in interface outside
route outside 0.0.0.0 0.0.0.0 217.37.31.174 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 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
aaa-server LOCAL protocol local
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
sysopt connection permit-ipsec
crypto ipsec transform-set TRANSFORM esp-3des esp-md5-hmac
crypto dynamic-map dynmap 10 set transform-set TRANSFORM
crypto map MYMAP 10 ipsec-isakmp
crypto map MYMAP 10 match address BIRMVPN
crypto map MYMAP 10 set peer 80.168.138.44
crypto map MYMAP 10 set transform-set TRANSFORM
crypto map MYMAP 100 ipsec-isakmp dynamic dynmap
crypto map MYMAP interface outside
isakmp enable outside
isakmp key ************ address 80.168.138.44 netmask 255.255.255.255
isakmp nat-traversal 20
isakmp policy 10 authentication pre-share
isakmp policy 10 encryption 3des
isakmp policy 10 hash md5
isakmp policy 10 group 2
isakmp policy 10 lifetime 86400
vpngroup RemoteVPN address-pool mypool
vpngroup RemoteVPN dns-server 10.0.0.1
vpngroup RemoteVPN wins-server 10.0.0.1
vpngroup RemoteVPN default-domain crn.org.uk
vpngroup RemoteVPN idle-time 1800
vpngroup RemoteVPN password ************
telnet timeout 5
ssh 0.0.0.0 0.0.0.0 outside
ssh 0.0.0.0 0.0.0.0 inside
ssh timeout 5
console timeout 0
terminal width 80
Cryptochecksum:2520287d2753c448b334cb16dd40f0ef
----------------------------------------------------

Can anyone help please?

Russ.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top