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!

Im stuck, example config for Cisco 3560 please

Status
Not open for further replies.

jlmdata

IS-IT--Management
Aug 9, 2007
31
0
0
SE
Hello!

I have some issues setting up cisco 3560.

This is what I plan to achieve:

Internet provider linknetwork 83.x.x.100/30
IP 83.x.x.102, gw 83.x.x.101.

RIPE NCC network assigned 193.xx.2.0-193.xx.3.255

I want the 3560 on top of the network.

And the ASA5510 after that. With network 193.xx.2.0

In the Cisco 3560 I want the network to be splitted into 2 vlans, vlan2 with network 193.xx.2.0 and another vlan3 with 193.xx.3.0

vlan2 connects to ASA5510 and delivers 193.xx.2.0 addresses.

Any examples? How do I best achieve this? The reason why I want a 3560 on top, is that Im planning to add another ASA5510 later, and one more Internetprovider aswell!

Br
Adrian
 
ip routing
!
vlan 69 name vlan69
!
vlan 2 name vlan2
!
vlan 3 name vlan3
!
ip routing
!
interface range fa0/1 - 10
description vlan-2
switchport
switchport mode access
switchport access vlan 2
!
interface range fa0/11 - 20
description vlan-3
switchport
switchport mode access
switchport access vlan 3
!
interface fa0/24
description to-internet
switchport
switchport mode access
switchport access vlan 69
!
interface fa0/1
description ASA5510
!
interface vlan 2
ip address 193.xx.2.1 255.255.255.0
!
interface vlan 3
ip address 193.xx.3.1 255.255.255.0
!
interface vlan 69
ip address 83.x.x.102 255.255.255.252
!
ip default-gateway 83.x.x.101
!
ip route 0.0.0.0 0.0.0.0 83.x.x.101
!

wr mem

Not a very smart design, but there ya go...

/



tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Forgot to add---one, the ASA(s) should go on the edge---no problems with that with design or configuration, and is definitely recommended, and two---I tried making the fa0/24 a non-switchport and giving it an IP address in my lab for kicks, and the nodes could reach the switch but not the directly connected link nor anything beyond that, which makes sense. Scott ("landester") seems to want $$$, but all I want is a star. :)

/

tim@tim-laptop ~ $ sudo apt-get install windows
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package windows...Thank Goodness!
 
Hello Burtsbees!

Thanks alot for the example! It was something like this I tried to achieve. But I did use internet Fa0/24 without vlan, How about adding a second ISP provider?

I guess these would change?

ip default-gateway 83.x.x.101
ip route 0.0.0.0 0.0.0.0 83.x.x.101

Any clues?

Thanks Dude!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top