I am trying to run tshark in a perl script, simply by doing the following -
my $filter = "port 68 or 67";
my $capture = "tshark -i eth0 -f $filter -a duration:120 -w pcapture.pcap&";
system($capture);
This code is not starting the tshark process. Any changes recommended?