cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Bookmark
|
Subscribe
|
790
Views
5
Helpful
2
Replies

Vlan creation on a 2960 poe 24 port

ethutchinson
Level 3
Level 3

                   I need to create a vlan on a catalyst 2960 switch, create an interface for the vlan that will be a gateway to the vlan. The interface should also have the ip address-helper command to use the DHCP scope which I  have already created on the switch. Then I need assign a port to the vlan in trunking mode.

Can anyone help?

Thanks

1 Accepted Solution

Accepted Solutions

Reza Sharifi
Hall of Fame
Hall of Fame

Here is an example with vlan 100.

I need to create a vlan on a catalyst 2960 switch

config t

vlan100

exit

create an interface for the vlan that will be a gateway to the vlan

config t

inter vlan 100

ip address 192.168.1.1 255.255.255.0

ip helper-address x.x.x.x.

no sh

exit

interface gix/x/x

switchport

switch vlan 100

interface gix/x/x

switch trunk allowed vlan add 100

HTH

View solution in original post

2 Replies 2

Reza Sharifi
Hall of Fame
Hall of Fame

Here is an example with vlan 100.

I need to create a vlan on a catalyst 2960 switch

config t

vlan100

exit

create an interface for the vlan that will be a gateway to the vlan

config t

inter vlan 100

ip address 192.168.1.1 255.255.255.0

ip helper-address x.x.x.x.

no sh

exit

interface gix/x/x

switchport

switch vlan 100

interface gix/x/x

switch trunk allowed vlan add 100

HTH

ethutchinson
Level 3
Level 3

Thanks Reza