I don't think Extreme supports EIGRP and will probably never do so.
https://community.extremenetworks.com/extremeswitching-exos-223284/eigrp-7497233
Use standards like OSPF, ISIS or BGP for routing.
Where do you plan to use the ACLs, on interfaces, VLANs, for route export, CPU protection or something else?
You can either edit a policy file that you create for a policy (ACL) or create a dynamic ACL. I think you can only have one match in a dynamic ACL, so you can do this:
create access-list ACL101a "source-address 172.16.0.0/16" "deny"
create access-list ACL101b "source-address 0.0.0.0/0" "permit"
configure access-list add ACLv101a vlan v101-engineering first
configure access-list add ACLv101b vlan v101-engineering after ACLv101a
or you can create a policy file:
edit policy ACLv101 (starts up a "vi" like editor, nasty, but that's how it's done)
i (for entering edit mode in vi, then type the following)
entry v101-deny {
if {
source-address 172.16.0.0/16;
} then {
deny;
}
}
entry v101-permit {
if {
} then {
permit;
}
}
(now, press Esc and then ZZ, that is capital Z twice, for saving and exiting)
Apply the ACL to a VLAN (if that's what you intend):
configure access-list add ACLv101 vlan v101-engineering
/Fredrik