02-13-2012 11:13 PM
Hello. I'm new in Junos and Juniper, and I have question, how to enable traffic monitor via jweb in Monitor->Reports->Traffic? It show only zeros. ![]()
Solved! Go to Solution.
02-14-2012 10:23 AM
To use J-Web packet capture:
Select Troubleshoot>Packet Capture.
Enter information into the Packet Capture.
To save the captured packets to a file, or specify other advanced options, click the expand icon next to Advanced options,
Click Start.
Capturing and Viewing Packets with the J-Web Interface
http://www.juniper.net/techpubs/software/junos-sec
Hope this helps
02-14-2012 10:26 AM
Seems like you were just trying to view reports as opposed to capturing traffic. The J-Web can be a little daunting trying to find things just by looking around. You may want to grab the guide and save it, then search for topics in it, If you don't find what you are looking for, or you don't understand it, then here would be a good place to continue.
02-14-2012 09:41 PM
No, it's a not traffic capture,it's a traffic monitor, and I don't know how to enable it.

02-29-2012 04:50 AM
Simlpe, all I need, it's a configure what to log and count in policies, something like this:
policies {
from-zone local to-zone vpn {
policy to_vpn {
match {
source-address any;
destination-address any;
application any;
}
then {
permit;
log {
session-init;
session-close;
}
count {
alarm per-second-threshold 1 per-minute-threshold 4;
}
}
}
}
}