Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Extreme 450 ACL question

Status
Not open for further replies.

T3LP2011

IS-IT--Management
May 2, 2011
1
0
0
US
We have an Extreme 450 running XOS v11.2.2.4 and have never done any policy based routing but have several VLANS setup.

We now need to route all traffic from 3 ip addresses on one of our vlans over to one of our other routers so the traffic can be routed out to one of our circuits to our vendors site.

We have a ACL setup on our Cisco router but not sure what to enter in on the Extreme to forward it to our Cisco to go out our T1.

What I need to setup is all traffic coming from these three address:
192.0.0.226
192.0.0.227
192.0.0.228
And set the next hop to 172.20.60.249

So how do I create a ACL and accomplish this.
 
you need to build a policy and it can have many entries in it. here is a policy with just 1 of your entries and it would like something like this. the x.x.x.x/y would be where you are attemtping to go to.

#Policy: nameyoucreate
#comment area
entry nameyoucreate {
if {
source-address 192.0.0.226 ;
destination-address x.x.x.x/y ;
}
then {
redirect 172.20.60.249 ;
}
}

make sure you verify the policy before enabling it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top