- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2013 11:46 AM - edited 03-07-2019 05:10 PM
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
Solved! Go to Solution.
- Labels:
-
LAN Switching
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2013 01:08 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2013 01:08 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2013 06:23 AM
Thanks Reza
