In part 2 of this topic, I will show how to configure the Switch Virtual Interfaces and IP Helper addresses on the Cisco 3750G EMI:
L3Switch(config)#interface vlan 20
L3Switch(config-if)# ip address 10.0.2.1 255.255.255.0 (Configure IP Address on the vlan 20 interface)
L3Switch(config)# exit
It is not necessary to specify an IP Helper address for the Interface vlan 20, because the DHCP server is in the same subnet as this vlan.
L3Switch(config)#interface vlan 30
L3Switch(config-if)# ip address 10.0.3.1 255.255.255.0 (Configure IP Address on the vlan 30 interface)
L3Switch(config-if)# ip helper-address 10.0.2.14 (Configures DHCP IP Helper address for devices on vlan 30 subnet)
L3Switch(config)# exit
L3Switch(config)#interface vlan 40
L3Switch(config-if)# ip address 10.0.4.1 255.255.255.0 (Configure IP Address on the vlan 40 interface)
L3Switch(config-if)# ip helper-address 10.0.2.14 (Configures DHCP IP Helper address for devices on vlan 40 subnet)
L3Switch(config)# exit
The IP Helper address configured on the vlan interfaces, directs dhcp request packets to the specified DHCP server ip address. Without going into details in this post, the dhcp scope for each subnet should have been created on the Microsoft DHCP server as shown below:
A number of Microsoft documentations instruct that you create the scope for each subnet within a superscope. In my experience, that is not necessary.
The Switch Virtual Interfaces will serve as the gateway for the hosts/devices in each subnet. In the Scope Option for each subnet in the DHCP server, the Router option with code 003 will be configured with the SVI ip address.Scope options configuration for vlan 30 is shown in the screen shot:
The next line will configure 2 switchports on the C3750G as trunk ports between this switch and the C2960 Access switches:
L3Switch(config)#interface GigabitEthernet1/0/1
L3Switch(config-if)#description Connection to Accounting Switch .
L3Switch(config-if)#switchport trunk encapsulation dot1q
L3Switch(config-if)#switchport mode trunk
L3Switch(config)#interface GigabitEthernet1/0/2
L3Switch(config-if)#description Connection to HR Switch .
L3Switch(config-if)#switchport trunk encapsulation dot1q
L3Switch(config-if)#switchport mode trunk
In the next post, I will show my config for the Access switches directly connected to the end/user devices.


Leave a reply to jbernec Cancel reply