Is there a way to add a description when creating an ACL with 1 line?
// Normal ACL Create
entry permit_1
{ if match all {
# 1F-A side Network
source-address 10.10.10.0/24 ;
destination-address 10.10.20.0/24 ;
protocol icmp ;
}
then {
permit ;
count count_pertmit_1 ;
}
}
// 1 line command acl
entry pertmit_1 {if {source-address 10.10.10.0/24 ; destination-address 10.10.20.0/24 ; protocol icmp ; } then {permit ; count count_pertmit_1 ; }}
I want to insert the description "# 1F-A side Network" as normal.
Do you know how to type in 1 Line command?