You need to build a scheduler to apply to a policy that will allow traffic from Monday to Friday only.
What will accomplish this task?
A.
[edit schedulers]
user@host# show
scheduler no-weekends {
daily all-day;
sunday exclude;
saturday exclude;
}
B.
[edit schedulers]
user@host# show
scheduler no-weekends {
daily except weekends;
}
C.
[edit schedulers]
user@host# show
scheduler no-weekends {
daily;
sunday exclude;
saturday exclude;
}
D.
[edit schedulers]
user@host# show
scheduler no-weekends {
weekday all-day;
}