cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
522
Views
8
Helpful
4
Replies

Routing on 3750

toyinsekoni
Level 1
Level 1

Hi,

I have one 3750 switch and i intend to use this as an edge router as well as access switch. I can't sem to get it to work. I configured a port with NO SWITCHPORT and assigned apublic IP to it, IP DEFAULT_GATEWAY was also configured. I am able to ping outside addresses from the swith. How can i get inside hosts to access the internet then.

Secondly, how is INTER-VLAN rounting configured on one 3750 switch without an external router?

Thanks.

D

4 Replies 4

spremkumar
Level 9
Level 9

Hi

Can you revert back on the ip addresing scheme being used in your network over there ?

can you also post the config of your switch over here ?

you just need to have ip routing command configured in your switch to have inter vlan routing function...

regds

ankbhasi
Cisco Employee
Cisco Employee

Hi Toyin,

For intervlan routing you have to configure vlan interface which are layer 3 logical interface and then assign them an ip address and further your clients who belong to that vlan should have the gateway address as what you have configured on vlan interface on switch and once enbale "ip routing" on global config mode you are done with intervlan routing.

Something like this

interface vlan x

ip address

Now this ip address should be assigned as a gateway address for client in those respective vlans.

NOTE:3750 does not support NAT so your clients on lan cannot hit internet with private ip address.

HTH

Ankur

*Pls rate all helpfull post

Thanks guys. ip routing sure did. I actually had ip default-gateway set, and with the ip rounting command, i could/can no longer ping the default gateway thru the L3 port.

Is it possible to do dhcp with VLAN. I have the 4 vlans where the host should use DHCP. How do i do dhcp for each vlan host and at the same time route the hosts to the internet through a PIX/Router?

Thanks

D

Hi,

You can configure the vlan as follows:

int vlan XX

ip helper-address

You need to create 4 network pools on the DHCP server according to the 4 vlan network ranges.

For example:

vlan1 - 192.168.1.0/24

vlan2 - 192.168.2.0/24

vlan3 - 192.168.3.0/24

vlan4 - 192.168.4.0/24

DHCP server IP address - 192.168.1.5

int vlan1

ip address 192.168.1.1 255.255.255.0

ip helper-address 192.168.1.5

int vlan2

ip address 192.168.2.1 255.255.255.0

ip helper-address 192.168.1.5

int vlan3

ip address 192.168.3.1 255.255.255.0

ip helper-address 192.168.1.5

int vlan4

ip address 192.168.4.1 255.255.255.0

ip helper-address 192.168.1.5

ip routing

ip route 0.0.0.0 0.0.0.0

Hope this helps.

-Amolak

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card