Access list question [7:36166]

2002-02-21 Thread Amit Gupta

Hello All,


I want to set up an access list on the MSFC so that
traffic from a particular vlan or a range of IP
addresses is forwarded through another serial
interface.

My Ip range is x.x.x.240 - x.x.x.255 
We are using a Subnet Mask of /28

Any Clues ?


Thanks in Advance

Regards

Amit


__
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7&i=36166&t=36166
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Access list question [7:36166]

2002-02-21 Thread Ranma

How about using Policy Route ?

""Amit Gupta""  wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello All,
>
>
> I want to set up an access list on the MSFC so that
> traffic from a particular vlan or a range of IP
> addresses is forwarded through another serial
> interface.
>
> My Ip range is x.x.x.240 - x.x.x.255
> We are using a Subnet Mask of /28
>
> Any Clues ?
>
>
> Thanks in Advance
>
> Regards
>
> Amit
>
>
> __
> Do You Yahoo!?
> Yahoo! Sports - Coverage of the 2002 Olympic Games
> http://sports.yahoo.com




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7&i=36181&t=36166
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



RE: Access list question [7:36166]

2002-02-22 Thread Georg Pauwen

Hello Amit,

Ranma is right, you could use policy routing. Let's say you want to have all
traffic from xxx.xxx.xxx.240/28 routed through interface serial1. The config
would look like this:

route-map MAP1 permit 10
 match ip address 1
 set interface serial1 
!
access-list 1 permit xxx.xxx.xxx.240 255.255.255.240
!
interface serial1
 ip policy route-map MAP1

Actually, thinking about it, wouldn't it be easier to just add a static
route:

ip route xxx.xxx.xxx.240 255.255.255.240 serial1

Regards,

Georg



Message Posted at:
http://www.groupstudy.com/form/read.php?f=7&i=36193&t=36166
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]