My confs: 

networks.conf


[10.2.201.0]
domain-name=vlan-registration
gateway=10.2.201.254
dhcp_max_lease_time=30
named=enabled
type=vlan-registration
fake_mac_enabled=disabled
dhcp_end=10.2.201.30
netmask=255.255.255.0
dns=10.252.2.45
dhcp_default_lease_time=30
dhcp_start=10.2.201.10
nat_enabled=disabled
dhcpd=enabled


dhcpd.conf: 

# This file is manipulated on PacketFence's startup
before being given to dhcpd
authoritative;
ddns-update-style
none;
ignore client-updates;
log-facility local6; 

# Captive-Portal
DHCP option (RFC7710)
option captive-portal-rfc7710 code 160 = string;


# OMAPI for IP <-> MAC lookup
omapi-port 7911;
key pf_omapi_key {

algorithm HMAC-MD5;
 secret
"h2iCERAxGgdRkGK5S947zCSFwCFI8gRR+DRjbfkABg0=";
};
omapi-key
pf_omapi_key; 

subnet 10.2.201.0 netmask 255.255.255.0 {
 option
routers 10.2.201.254;
 option subnet-mask 255.255.255.0;
 option
domain-name "vlan-registration";
 option domain-name-servers
10.252.2.45;
 option captive-portal-rfc7710
"https://packetfence.packetfence.org";;
 range 10.2.201.10 10.2.201.30;

default-lease-time 30;
 max-lease-time 30;
} 

# parking feature
group
parking {
 default-lease-time 3600;
 max-lease-time 3600;
} 

Em
2017-07-28 15:37, Luís Torres via PacketFence-users escreveu: 

> Hello,

> 
> Im new to packetfence and Im trynig to put the captive portal
working..., Im integrating with a Cisco WLC5500. 
> 
> If I use a dhcp
server , other then PF, works fine .., but with the pf dhcpd , I can see
the requests to the server but it wont reply any IP. 
> 
> Can you guys
give me a help? 
> 
> cheers 
> 
>
------------------------------------------------------------------------------
>
Check out the vibrant tech community on one of the world's most
>
engaging tech sites, Slashdot.org! http://sdm.link/slashdot [1]
> 
>
_______________________________________________
> PacketFence-users
mailing list
> [email protected]
>
https://lists.sourceforge.net/lists/listinfo/packetfence-users [2]




Links:
------
[1] http://sdm.link/slashdot
[2]
https://lists.sourceforge.net/lists/listinfo/packetfence-users
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
PacketFence-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/packetfence-users

Reply via email to