What is the correct PCAP filter to capture all TCP traffic going to or from host 192.168.0.125 on port 25?
 
A.
 tcp.src == 25 and ip.host == 192.168.0.125
B.
 host 192.168.0.125:25
C.
 port 25 and host 192.168.0.125
D.
 tcp.port == 25 and ip.host == 192.168.0.125
 			
			
 
                
Is that correct?