i'm trying to set up a dhcp server on my gs648p running layer 3. nothing gets a lease from it.
this is my log
0d00h07m38s:A:DHCPS: Exhausts all allocation methods, no address pool found from received port 1
0d00h07m29s:A:DHCPS: unable to find an address pool for rx port 1, dropping DHCPOFFER message
0d00h07m29s:A:DHCPS: Exhausts all allocation methods, no address pool found from received port 1
0d00h07m21s:A:DHCPS: unable to find an address pool for rx port 1, dropping DHCPOFFER message
0d00h07m21s:A:DHCPS: Exhausts all allocation methods, no address pool found from received port 1
0d00h07m13s:A:DHCPS: unable to find an address pool for rx port 1, dropping DHCPOFFER message
0d00h07m13s:A:DHCPS: Exhausts all allocation methods, no address pool found from received port 1
0d00h07m04s:A:DHCPS: unable to find an address pool for rx port 1, dropping DHCPOFFER message
0d00h07m04s:A:DHCPS: Exhausts all allocation methods, no address pool found from received port 1
0d00h07m00s:A:DHCPS: unable to find an address pool for rx port 1, dropping DHCPOFFER message
0d00h07m00s:A:DHCPS: Exhausts all allocation methods, no address pool found from received port 1
BR-r2>
here's my config
ver 07.2.02aT7e1
!
module 1 fgs-48-port-management-module
!
!
!
!
vlan 1 name DEFAULT-VLAN by port
router-interface ve 1
!
vlan 10 by port
untagged ethe 0/1/1 to 0/1/2 ethe 0/1/13 to 0/1/14
router-interface ve 10
!
!
!
!
!
!
!
!
aaa authentication web-server default local
aaa authentication enable default local
boot sys fl sec
hostname r2
ip dhcp snooping vlan 10
ip dhcp-server enable
ip dhcp-server server-identifier 192.168.1.4
!
ip dhcp-server pool studios
dhcp-default-router 192.168.1.4
dns-server 192.168.1.4
domain-name lincolncityradio.com
excluded-address 192.168.11.150
excluded-address 192.168.11.1 192.168.11.20
excluded-address 192.168.11.101 192.168.11.120
excluded-address 192.168.11.201 192.168.11.210
excluded-address 192.168.11.240 192.168.11.254
lease 0 2 0
network 192.168.11.0 255.255.255.0
deploy
!
ip dns domain-name lincolncityradio.com
username tech password .....
web-management enable vlan 1
no port bootp
interface ethernet 0/1/1
dhcp snooping trust
!
interface ethernet 0/1/2
dhcp snooping trust
!
interface ethernet 0/1/13
dhcp snooping trust
!
interface ethernet 0/1/14
dhcp snooping trust
!
interface ve 1
ip address 10.10.1.4 255.255.255.0
ip address 192.168.1.4 255.255.255.0
!
interface ve 10
ip address 10.10.10.252 255.255.255.0
ip address 192.168.11.4 255.255.255.0
!
!
!
!
!
!
ip ssh source-interface ve 1
!
!
end
as you can see i have bound the dhcp to the ports on vlan 10 bu it fails to lease. am i missing something?
thank you.