Create Date: Mar 11 2013 9:17PM
This is pretty easy - I recommend downloading the XOS concepts guide and command reference for the version you're using as a reference for how these work, but an ACL for this purpose would look something like this:
entry restrict-to-these-IPs {
if {
destination-address x.x.x.x/q;
destination-address y.y.y.y/z;
...
} then {
permit;
}
entry default-deny {
if {
destination-address 0.0.0.0/0;
} then {
deny;
}
Save on your switch and apply to a port/VLAN combo.
There's a free program called Extreme Networks Policy Manager that works very well for constructing these, I believe it's still available on the Extreme site. (from Ansley_Barnes)