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!

looking for a sample cisco 2621 config file for Inter-VLAN connectivty 1

Status
Not open for further replies.

jimmya

MIS
Apr 4, 2001
5
0
0
US
Need to connect 2 VLANS (same switch) thru a 2621 (one-armed), need to do this to eliminate broadcast traffic. Any sample's???
 
Are you using ISL style vlans?

If so - here is one possible solution to configure on your router :-

interface FastEthernet1/0
description VLAN Trunk
no ip address
no ip directed-broadcast
full-duplex
!
interface FastEthernet1/0.1
description Peernews
encapsulation isl 99
ip address a.b.c.d 255.255.255.252
no ip redirects
no ip directed-broadcast
!
interface FastEthernet1/0.2
encapsulation isl 100
ip address a.b.c.d 255.255.254.0
no ip redirects
no ip directed-broadcast
no cdp enable
!
interface FastEthernet1/0.3
encapsulation isl 101
ip address a.b.c.d 255.255.255.252
no ip redirects
no ip directed-broadcast
no cdp enable

In this example, from which I've removed our addresses, you set up the physical layer information on the physical interface, and use pseudo interfaces for each vlan. The encapsulation command specifies which vlan the pseudo interface is for.

Hope this helps.

Regards
Neil
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top