Hello group members,
I have two PIX
PIX-A: 195.238.10.19 PIX-B: 212.217.89.23
Behing, Private LAN
PIX-A: 192.168.10.0/25 PIX-B: 192.168.20.0/25
I need a VPN between those, so, I've defined a no-nat access-list
access-list no-nat-pix-a permit ip 192.168.10.0 255.255.255.128
192.168.20.0 255.255.255.128 access-list no-nat-pix-a permit ip 192.168.20.0 255.255.255.128
192.168.10.0 255.255.255.128
and, an access-list to bound to what to encrypt to get to pix-b
access-list to-pix-b permit tcp 192.168.10.0 255.255.255.128
192.168.20.0 255.255.255.128 eq 5222 access-list to-pix-b permit tcp 192.168.20.0 255.255.255.128
192.168.10.0 255.255.255.128 access-list to-pix-b permit icmp 192.168.10.0 255.255.255.128
192.168.20.0 255.255.255.128 eq 5222 access-list to-pix-b permit icmp 192.168.20.0 255.255.255.128
192.168.10.0 255.255.255.128
It works ok,
I use the "capture" command to check if the VPN is going ok. Like
pix-a#(config)capture snoopy interface inside buffer 10000 circular
using PDM, I redirect the flow to my browser.
I my web browser using this capture command, I need to filter only what is going between the host 192.168.10.10 and remote host 192.168.20.15
How do I achieve it? It looks I need to create a third access-list and apply it against the capture command.
I've tried, I can't get it.
Can anybody light it?
Thank you very much,
Amaury