Hi Daniel,
Below is a quick example for your requirement.
Source address here is the IP address you wish to allow.
You can define destination-address as well if you want to specify as per your requirement.
entry one_allow{
if match any{
source-address 192.168.1.10/32;
source-address 10.10.10.10/32;
}
then {
permit;
}
}
entry two_deny {
if match any {
}
then {
deny;
}
}
Note:
EXOS implicitly allows the traffic, hence the second entry has been written to deny here.
Please make a note all other traffic will be denied with above ACL.
To make sure all other traffic work, please allow the subnet and define entries as required.
Below link is handy for starters in ACL:
https://gtacknowledge.extremenetworks.com/articles/How_To/How-to-create-and-apply-an-ACL-in-EXOS
Thanks & Regards,
Syed Nishath