SlideShare una empresa de Scribd logo
1 de 18
Descargar para leer sin conexión
Advanced Captive Portal
pfSense 2.3/2.4
June 2017 Hangout
Jim Pingle
About this Hangout
● Project News
● Brief Captive Portal Review
● Pass-Through Credits
● Pass-Through MAC Auto
Entry
● Pre-Auth Redirect
● Advanced Voucher Topics
● FreeRADIUS Package Basics
● RADIUS Time Limits
● RADIUS Data Limits
● RADIUS Primary and
Secondary Sources
● RADIUS MAC Authentication
● RADIUS Reply Attributes
Project News
●
OpenVPN update, patch ASAP
– https://www.netgate.com/blog/important-update-for-openvpn.html
●
2.3.4-p1-RELEASE Coming Soon
– Security/Errata fixes (XSS, Stack Clash, OpenVPN update)
– Will be released once FreeBSD completes fixes for Stack Clash and they are merged and tested
●
Netgate Global Support
– New support structure, moving away from incidents to a per-device support model
– 24x7, several SLA and contact method options
– https://www.netgate.com/blog/announcing-netgate-global-support.html
●
pfSense Brand Refresh
– New logos for both pfSense and Netgate to more closely align the two
– https://www.netgate.com/blog/pfsense-brand-refresh.html
●
pfSense article in FreeBSD Journal
●
BSDCan was earlier this month
●
Minnowboard Turbot Dual-E models shipping now, on Amazon and Netgate store pages
●
New book featuring pfSense: Building Virtual Machine Labs: A Hands-On Guide, by Tony V Robinson
– Available also as an add-on item when ordering certain hardware models from the Netgate store
Captive Portal Review
● Captive Portal prevents user traffic from exiting the local network until the user authenticates using the
portal login page
● The portal captures HTTP/HTTPS requests and redirects unauthenticated users to the Captive Portal
login page
● Captive Portals are often used to present users with a ToS or User Agreement, etc
● Operates primarily at Layer 2, checks the user’s MAC address and/or IP address
● Zones define different portals, and each zone can have one or more interfaces
● Bypass lists for sources/destinations based on MAC or IP address to skip auth
● Can use local auth, RADIUS, vouchers, or no auth at all
● Once a user is authenticated, their traffic flows based on regular firewall rules, as if the portal were not
there
● See last month’s hangout for details, prerequisites, basic setup, etc.
Pass-Through Credits
●
Pass-Through Credits allow a user to “login” to the portal a number of times without prompting for a password.
●
Combined with hard timeouts, this can effectively allow configurations such as “3 hours of access, then require a
login”
●
Pass-Through Credits Per MAC Address:
– The number of times the MAC can pass through the portal login process per “waiting period” without redirecting to the portal
login page
●
Waiting period to restore pass-through credits:
– A time, specified in hours, after which pass-through credits reset
– Example: “24” would be per day
– Starts counting after the first pass-through
– Must be a non-zero number if pass-through credits are enabled
●
Reset waiting period
– When enabled, attempting to access the portal again resets the user’s waiting period start time, making them wait longer for
access
– Useful to curtail abusers
Pass-Through MAC Auto Entry
● Useful for user self-registration style setups
– Allows the portal admin to force a login just once, without requiring a login each and every time
– Useful for networks that do not change often, but still require authenticating each device
– Another potential use cases is WISP networks where knowing which user has a MAC is important,
but repeated logins would be undesirable
● Cannot be combined with RADIUS MAC Authentication
● Will not show a logout pop-up or page
● To remove a user, manually remove them from the MAC tab, or setup a script to POST
the proper parameters
● “… with username” option
– The username is stored along with the MAC address in the pass-through entry
Pre-Auth Redirect
● Forces users to a page outside the firewall before the portal login screen
● Flow is:
– User attempts to load page, user is redirected to the portal page
– Portal page sees that the user is trying to reach some other site, sends them to the pre-auth URL instead
– User clicks link on pre-auth page
– Portal page sees the link it expects coming from the pre-auth page
– User receives the portal login page
– User logs in, and is redirected back to the pre-auth URL
● Outside page links back to portal URL
● If the site is remote, you must add it and any assets it needs as a bypass (host or IP address)
● Requires a special block of PHP at the start of the login page
– In the book, also will be in the example page posted with this hangout
● Upload custom page, set URL to landing page in Pre-Auth Redirect box
● In the supplied example, the landing page must also include itself as the final redirect URL so users return to that same
landing page after login
– The code could be adjusted for other cases
Advanced Vouchers - Bits
● Voucher bits must add up to less than the key size, which by default is 64
– Default values add up to only 31
– Default is:
● 16 roll bits (2^16-1 or 65535 rolls)
●
10 ticket bits (2^10-1 or 1023 tickets per roll)
– When adjusting numbers, reduce one to increase another
– More tickets in a roll:
● Decrease roll bits, increase ticket bits
– More rolls with less tickets
● Decrease ticket bits, increase roll bits
Advanced Vouchers – Code Sizes
● Simpler voucher codes
– Change character set to only include a limited set of characters (e.g. uppercase letters)
– This will make codes longer, as it needs more bits of entropy
● Shorter voucher codes
– Either a more complex character set… OR
– Generate a shorter key and adjust bits to fit new size
● Shorter key means less randomness, which means vouchers could be more predictable/crackable, less
secure!
● openssl genrsa 31 > /tmp/private.key
● openssl rsa -pubout -outform PEM < /tmp/private.key > /tmp/public.key
● Edit/open/download /tmp/private.key and /tmp/public.key and copy to appropriate fields in the GUI
● Reduce roll/ticket/checksum bits to fit under the new size
RADIUS Basics
● Next sections are specific to RADIUS and require a RADIUS server
● RADIUS is a system that provides Authentication, Authorization,
and Accounting (AAA)
● FreeRADIUS package on pfSense can fill this role for most
installations, but more complicated setups would benefit from a
dedicated external RADIUS server that ties into other systems
(accounts, billing, payment cards, 2FA, etc)
● Active Directory can also be accessed via RADIUS using NPS
FreeRADIUS Package
● Examples in later slides will be shown specifically using the pfSense FreeRADIUS 3.x
package, for simplicity
● The same features are usable in other RADIUS servers, but YMMV
● Install the FreeRADIUS 3.x package from System > Package Manager
● Visit Services > FreeRADIUS, EAP tab, pick SSL CA and Server Cert. Make one first if you
don’t have one, or leave it on “auto”
● Interfaces Tab: Add two instances, one for Authentication on 1812, one for Accounting on 1813
● NAS/Clients Tab: Add at least one entry for localhost (127.0.0.1), set shortname (usually
firewall hostname), shared secret, others can be left blank/default
● Users: Salt to taste (wait until covered on later slides)
● Add entry under System > User Manager and test from Diagnostics > Authentication
Captive Portal RADIUS Auth
● Set Authentication to RADIUS Authentication
●
Set RADIUS Protocol to MSCHAPv2
● Set Primary RADIUS Server…
– IP Address: 127.0.0.1 (or other RADIUS server)
– RADIUS Port: 1812
– Shared Secret: Password set for this NAS entry in RADIUS
● Accounting…
– Check enable
– Accounting Port: 1813
– Accounting Updates: Stop/Start (FreeRADIUS)
● RADIUS Options: Will vary depending on what features are required, see later slides
RADIUS Time Limits
● In addition to settings mentioned previously…
● Check Captive Portal RADIUS Option for Reauthenticate connected users every minute
● Services > FreeRADIUS, Settings tab, check Disable Acct_Unique
● FreeRADIUS User entries are limited based on a set amount of time within a period using the
Time Configuration section
● Set Amount of Time to a number, in minutes, of the duration the user is allowed to be logged
in
● Set the Time Period after which the user’s Amount of Time resets
– Daily resets at midnight every day
– Weekly resets at midnight on Sunday
– Monthly resets at midnight the first day of each month
– Forever never resets until the database files are removed/reset manually
RADIUS Data Limits
● Basic setup the same as Time Limits on last slide (Disable Acct_Unique in
FreeRADIUS, set to Reauth every minute, etc)
● In FreeRADIUS Users, set values in the Traffic and Bandwidth section
● Set the Amount of Download and Upload Traffic, in Megabytes, to control
how much a user can transfer, total upload and download, within the alotted
Time Period
● Set the Time Period to when the counters should reset (see previous slide)
● It does only check once per minute, so depending on circuit speed they
could exceed the limit significantly in under a minute
RADIUS Pri & Sec Sources
● Not a backup! This is a second, separate, source for
authentication
● Two authentication sources, needs two different login fields
on the page
● Primary source uses auth_user / auth_pass fields
● Secondary source uses auth_user2 / auth_pass2 fields
● Can be used for different sources, such as Primary = AD,
Secondary = External card number+pin provider
RADIUS MAC Authentication
● Automatically sends the MAC address of a client to RADIUS with a standard password to check if it’s OK before
presenting a login page
● If it fails, the user is given the normal portal login screen
● Allows for centralized MAC-based authentication without needing to populate the MACs for pass-through on
pfSense
● In FreeRADIUS, disable Plain MAC Auth on the Settings tab.
● In FreeRADIUS, add entries to Users tab, using the dash-separator notation (xx-xx-xx-xx-xx-xx) and the
common password set in Captive Portal
● In Captive Portal settings, enable RADIUS MAC Authentication
● Enter the common MAC authentication secret which must be the same for all MAC entries for this portal
● Set the MAC Address Format to IETF
● NOTE: Do not use the MACs tab in FreeRADIUS or the Plain MAC Auth option, those are for older 802.1x
equipment which cannot send usernames or passwords, only MAC address as Calling-Station-Id
RADIUS Reply Attributes
● Several user control options can be sent back as RADIUS Reply Attributes
● Per-user session length value
– “Session-Timeout” Reply Attribute
– Must be checked on Captive Portal settings
– Set Session Timeout field on FreeRADIUS User entry
● Per-user idle timeout value
– “Idle-Timeout” Reply Attribute
● Per-user data limits can be set, crafts automatic limiters
– In FreeRADIUS user entries, “Maximum Bandwidth” down/up fields
– WISPr-Bandwidth-Max-Up/WISPr-Bandwidth-Max-Down, or ChilliSpot-Bandwidth-Max-Up/ChilliSpot-Bandwidth-
Max-Down
● Per-user redirection URL:
– “WISPr-Redirection-URL” Reply Attribute
– Set manually in the REPLY-ITEM box on a FreeRADIUS user
Conclusion
● Questions?
● Ideas for hangout topics? Post on forum, comment on the blog
posts, Reddit, etc

Más contenido relacionado

La actualidad más candente

Custom policies in mule 4 and a circuit breaker example
Custom policies in mule 4 and a circuit breaker exampleCustom policies in mule 4 and a circuit breaker example
Custom policies in mule 4 and a circuit breaker exampleRoyston Lobo
 
CloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingCloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingShapeBlue
 
IBM Integration Bus & WebSphere MQ - High Availability & Disaster Recovery
IBM Integration Bus & WebSphere MQ - High Availability & Disaster RecoveryIBM Integration Bus & WebSphere MQ - High Availability & Disaster Recovery
IBM Integration Bus & WebSphere MQ - High Availability & Disaster RecoveryRob Convery
 
Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...
Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...
Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...Netgate
 
NGINX: Basics & Best Practices - EMEA Broadcast
NGINX: Basics & Best Practices - EMEA BroadcastNGINX: Basics & Best Practices - EMEA Broadcast
NGINX: Basics & Best Practices - EMEA BroadcastNGINX, Inc.
 
Certificate Management on pfSense 2.4 - pfSense Hangout September 2017
Certificate Management on pfSense 2.4 - pfSense Hangout September 2017Certificate Management on pfSense 2.4 - pfSense Hangout September 2017
Certificate Management on pfSense 2.4 - pfSense Hangout September 2017Netgate
 
Using eBPF for High-Performance Networking in Cilium
Using eBPF for High-Performance Networking in CiliumUsing eBPF for High-Performance Networking in Cilium
Using eBPF for High-Performance Networking in CiliumScyllaDB
 
High Availability on pfSense 2.4 - pfSense Hangout March 2017
High Availability on pfSense 2.4 - pfSense Hangout March 2017High Availability on pfSense 2.4 - pfSense Hangout March 2017
High Availability on pfSense 2.4 - pfSense Hangout March 2017Netgate
 
Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016
Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016
Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016Netgate
 
[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개
[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개
[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개OpenStack Korea Community
 
Linux-HA with Pacemaker
Linux-HA with PacemakerLinux-HA with Pacemaker
Linux-HA with PacemakerKris Buytaert
 
Foreman in your datacenter
Foreman in your datacenterForeman in your datacenter
Foreman in your datacenterlzap
 
OpenTelemetry For Architects
OpenTelemetry For ArchitectsOpenTelemetry For Architects
OpenTelemetry For ArchitectsKevin Brockhoff
 
Linux Locking Mechanisms
Linux Locking MechanismsLinux Locking Mechanisms
Linux Locking MechanismsKernel TLV
 
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and Knative
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and KnativeBuild and Deploy Cloud Native Camel Quarkus routes with Tekton and Knative
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and KnativeOmar Al-Safi
 
pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018
pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018
pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018Netgate
 
Cilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDPCilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDPThomas Graf
 
Prometheus design and philosophy
Prometheus design and philosophy   Prometheus design and philosophy
Prometheus design and philosophy Docker, Inc.
 
OpenTelemetry For Operators
OpenTelemetry For OperatorsOpenTelemetry For Operators
OpenTelemetry For OperatorsKevin Brockhoff
 

La actualidad más candente (20)

Custom policies in mule 4 and a circuit breaker example
Custom policies in mule 4 and a circuit breaker exampleCustom policies in mule 4 and a circuit breaker example
Custom policies in mule 4 and a circuit breaker example
 
CloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingCloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and Troubleshooting
 
HAProxy
HAProxy HAProxy
HAProxy
 
IBM Integration Bus & WebSphere MQ - High Availability & Disaster Recovery
IBM Integration Bus & WebSphere MQ - High Availability & Disaster RecoveryIBM Integration Bus & WebSphere MQ - High Availability & Disaster Recovery
IBM Integration Bus & WebSphere MQ - High Availability & Disaster Recovery
 
Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...
Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...
Squid, SquidGuard, and Lightsquid on pfSense 2.3 & 2.4 - pfSense Hangout Janu...
 
NGINX: Basics & Best Practices - EMEA Broadcast
NGINX: Basics & Best Practices - EMEA BroadcastNGINX: Basics & Best Practices - EMEA Broadcast
NGINX: Basics & Best Practices - EMEA Broadcast
 
Certificate Management on pfSense 2.4 - pfSense Hangout September 2017
Certificate Management on pfSense 2.4 - pfSense Hangout September 2017Certificate Management on pfSense 2.4 - pfSense Hangout September 2017
Certificate Management on pfSense 2.4 - pfSense Hangout September 2017
 
Using eBPF for High-Performance Networking in Cilium
Using eBPF for High-Performance Networking in CiliumUsing eBPF for High-Performance Networking in Cilium
Using eBPF for High-Performance Networking in Cilium
 
High Availability on pfSense 2.4 - pfSense Hangout March 2017
High Availability on pfSense 2.4 - pfSense Hangout March 2017High Availability on pfSense 2.4 - pfSense Hangout March 2017
High Availability on pfSense 2.4 - pfSense Hangout March 2017
 
Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016
Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016
Multi-WAN on pfSense 2.3 - pfSense Hangout March 2016
 
[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개
[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개
[OpenInfra Days Korea 2018] (Track 2) Neutron LBaaS 어디까지 왔니? - Octavia 소개
 
Linux-HA with Pacemaker
Linux-HA with PacemakerLinux-HA with Pacemaker
Linux-HA with Pacemaker
 
Foreman in your datacenter
Foreman in your datacenterForeman in your datacenter
Foreman in your datacenter
 
OpenTelemetry For Architects
OpenTelemetry For ArchitectsOpenTelemetry For Architects
OpenTelemetry For Architects
 
Linux Locking Mechanisms
Linux Locking MechanismsLinux Locking Mechanisms
Linux Locking Mechanisms
 
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and Knative
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and KnativeBuild and Deploy Cloud Native Camel Quarkus routes with Tekton and Knative
Build and Deploy Cloud Native Camel Quarkus routes with Tekton and Knative
 
pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018
pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018
pfSense 2.4.4 Short Topic Miscellany - pfSense Hangout August 2018
 
Cilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDPCilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDP
 
Prometheus design and philosophy
Prometheus design and philosophy   Prometheus design and philosophy
Prometheus design and philosophy
 
OpenTelemetry For Operators
OpenTelemetry For OperatorsOpenTelemetry For Operators
OpenTelemetry For Operators
 

Similar a Advanced Captive Portal - pfSense Hangout June 2017

Engineering Domain Team Bootstrap
Engineering Domain Team BootstrapEngineering Domain Team Bootstrap
Engineering Domain Team BootstrapGunnarHolwerda
 
OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...
OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...
OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...OpenIDFoundation
 
Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017
Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017
Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017Netgate
 
Postgres connections at scale
Postgres connections at scalePostgres connections at scale
Postgres connections at scaleMydbops
 
KubeCon NA 2018 - NATS Deep Dive: The Evolution of NATS
KubeCon NA 2018 - NATS Deep Dive: The Evolution of NATSKubeCon NA 2018 - NATS Deep Dive: The Evolution of NATS
KubeCon NA 2018 - NATS Deep Dive: The Evolution of NATSwallyqs
 
Tracing and profiling my sql (percona live europe 2019) draft_1
Tracing and profiling my sql (percona live europe 2019) draft_1Tracing and profiling my sql (percona live europe 2019) draft_1
Tracing and profiling my sql (percona live europe 2019) draft_1Valerii Kravchuk
 
What I Learned About SQL Server at Ignite 2015
What I Learned About SQL Server at Ignite 2015What I Learned About SQL Server at Ignite 2015
What I Learned About SQL Server at Ignite 2015Brent Ozar
 
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018Netgate
 
Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014
Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014
Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014Netgate
 
Neoito — Secure coding practices
Neoito — Secure coding practicesNeoito — Secure coding practices
Neoito — Secure coding practicesNeoito
 
Securing your MySQL / MariaDB Server data
Securing your MySQL / MariaDB Server dataSecuring your MySQL / MariaDB Server data
Securing your MySQL / MariaDB Server dataColin Charles
 
Common schema my sql uc 2012
Common schema   my sql uc 2012Common schema   my sql uc 2012
Common schema my sql uc 2012Roland Bouman
 
Common schema my sql uc 2012
Common schema   my sql uc 2012Common schema   my sql uc 2012
Common schema my sql uc 2012Roland Bouman
 
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)Sam Bowne
 
What's new in NGINX Plus R19
What's new in NGINX Plus R19What's new in NGINX Plus R19
What's new in NGINX Plus R19NGINX, Inc.
 
Graphing for Security
Graphing for SecurityGraphing for Security
Graphing for Securitymr_secure
 
Resource Monitoring and Management II
Resource Monitoring and Management IIResource Monitoring and Management II
Resource Monitoring and Management IIDuressa Teshome
 

Similar a Advanced Captive Portal - pfSense Hangout June 2017 (20)

Fletcher "Browser Changes Impacting Identity Flows"
Fletcher "Browser Changes Impacting Identity Flows"Fletcher "Browser Changes Impacting Identity Flows"
Fletcher "Browser Changes Impacting Identity Flows"
 
Engineering Domain Team Bootstrap
Engineering Domain Team BootstrapEngineering Domain Team Bootstrap
Engineering Domain Team Bootstrap
 
OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...
OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...
OIDF Workshop at Verizon Media -- 9/30/2019 -- Browser Changes Impacting Iden...
 
Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017
Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017
Server Load Balancing on pfSense 2.4 - pfSense Hangout July 2017
 
Adapting to evolving user, security, and business needs with aruba clear pass
Adapting to evolving user, security, and business needs with aruba clear passAdapting to evolving user, security, and business needs with aruba clear pass
Adapting to evolving user, security, and business needs with aruba clear pass
 
Scaling GraphQL Subscriptions
Scaling GraphQL SubscriptionsScaling GraphQL Subscriptions
Scaling GraphQL Subscriptions
 
Postgres connections at scale
Postgres connections at scalePostgres connections at scale
Postgres connections at scale
 
KubeCon NA 2018 - NATS Deep Dive: The Evolution of NATS
KubeCon NA 2018 - NATS Deep Dive: The Evolution of NATSKubeCon NA 2018 - NATS Deep Dive: The Evolution of NATS
KubeCon NA 2018 - NATS Deep Dive: The Evolution of NATS
 
Tracing and profiling my sql (percona live europe 2019) draft_1
Tracing and profiling my sql (percona live europe 2019) draft_1Tracing and profiling my sql (percona live europe 2019) draft_1
Tracing and profiling my sql (percona live europe 2019) draft_1
 
What I Learned About SQL Server at Ignite 2015
What I Learned About SQL Server at Ignite 2015What I Learned About SQL Server at Ignite 2015
What I Learned About SQL Server at Ignite 2015
 
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018
RADIUS and LDAP on pfSense 2.4 - pfSense Hangout February 2018
 
Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014
Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014
Squid, SquidGuard, and Lightsquid - pfSense Hangout March 2014
 
Neoito — Secure coding practices
Neoito — Secure coding practicesNeoito — Secure coding practices
Neoito — Secure coding practices
 
Securing your MySQL / MariaDB Server data
Securing your MySQL / MariaDB Server dataSecuring your MySQL / MariaDB Server data
Securing your MySQL / MariaDB Server data
 
Common schema my sql uc 2012
Common schema   my sql uc 2012Common schema   my sql uc 2012
Common schema my sql uc 2012
 
Common schema my sql uc 2012
Common schema   my sql uc 2012Common schema   my sql uc 2012
Common schema my sql uc 2012
 
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
CNIT 128: 6: Mobile services and mobile Web (part 1: Beginning Through OAuth)
 
What's new in NGINX Plus R19
What's new in NGINX Plus R19What's new in NGINX Plus R19
What's new in NGINX Plus R19
 
Graphing for Security
Graphing for SecurityGraphing for Security
Graphing for Security
 
Resource Monitoring and Management II
Resource Monitoring and Management IIResource Monitoring and Management II
Resource Monitoring and Management II
 

Más de Netgate

Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...
Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...
Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...Netgate
 
Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...
Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...
Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...Netgate
 
Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018
Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018
Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018Netgate
 
Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018
Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018
Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018Netgate
 
User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018
User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018
User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018Netgate
 
Dynamic Routing with FRR - pfSense Hangout December 2017
Dynamic Routing with FRR - pfSense Hangout December 2017Dynamic Routing with FRR - pfSense Hangout December 2017
Dynamic Routing with FRR - pfSense Hangout December 2017Netgate
 
Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017
Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017
Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017Netgate
 
Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017
Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017
Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017Netgate
 
Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017
Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017
Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017Netgate
 
Console Menu - pfSense Hangout December 2016
Console Menu - pfSense Hangout December 2016Console Menu - pfSense Hangout December 2016
Console Menu - pfSense Hangout December 2016Netgate
 
OpenVPN as a WAN - pfSense Hangout October 2016
OpenVPN as a WAN - pfSense Hangout October 2016OpenVPN as a WAN - pfSense Hangout October 2016
OpenVPN as a WAN - pfSense Hangout October 2016Netgate
 
DHCP Server - pfSense Hangout September 2016
DHCP Server - pfSense Hangout September 2016DHCP Server - pfSense Hangout September 2016
DHCP Server - pfSense Hangout September 2016Netgate
 
High Availability Part 2 - pfSense Hangout July 2016
High Availability Part 2 - pfSense Hangout July 2016High Availability Part 2 - pfSense Hangout July 2016
High Availability Part 2 - pfSense Hangout July 2016Netgate
 
Connectivity Troubleshooting - pfSense Hangout June 2016
Connectivity Troubleshooting - pfSense Hangout June 2016Connectivity Troubleshooting - pfSense Hangout June 2016
Connectivity Troubleshooting - pfSense Hangout June 2016Netgate
 
NAT on pfSense 2.3 - pfSense Hangout May 2016
NAT on pfSense 2.3 - pfSense Hangout May 2016NAT on pfSense 2.3 - pfSense Hangout May 2016
NAT on pfSense 2.3 - pfSense Hangout May 2016Netgate
 
Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016
Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016
Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016Netgate
 
pfSense 2.3 Preview - pfSense Hangout December 2015
pfSense 2.3 Preview - pfSense Hangout December 2015pfSense 2.3 Preview - pfSense Hangout December 2015
pfSense 2.3 Preview - pfSense Hangout December 2015Netgate
 
Site-to-Site VPNs - pfSense Hangout November 2015
Site-to-Site VPNs - pfSense Hangout November 2015Site-to-Site VPNs - pfSense Hangout November 2015
Site-to-Site VPNs - pfSense Hangout November 2015Netgate
 
Remote Access VPNs Part 2 - pfSense Hangout October 2015
Remote Access VPNs Part 2 - pfSense Hangout October 2015Remote Access VPNs Part 2 - pfSense Hangout October 2015
Remote Access VPNs Part 2 - pfSense Hangout October 2015Netgate
 

Más de Netgate (19)

Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...
Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...
Using Google Cloud Identity Secure LDAP with pfSense - Netgate Hangout Octobe...
 
Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...
Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...
Configuring Netgate Appliance Integrated Switches on pfSense 2.4.4 - pfSense ...
 
Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018
Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018
Routed IPsec on pfSense 2.4.4 - pfSense Hangout June 2018
 
Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018
Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018
Monitoring pfSense 2.4 with SNMP - pfSense Hangout March 2018
 
User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018
User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018
User Management and Privileges on pfSense 2.4 - pfSense Hangout January 2018
 
Dynamic Routing with FRR - pfSense Hangout December 2017
Dynamic Routing with FRR - pfSense Hangout December 2017Dynamic Routing with FRR - pfSense Hangout December 2017
Dynamic Routing with FRR - pfSense Hangout December 2017
 
Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017
Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017
Firewall Best Practices for VoIP on pfSense - pfSense Hangout October 2017
 
Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017
Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017
Backup and Restore with pfSense 2.4 - pfSense Hangout August 2017
 
Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017
Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017
Advanced OpenVPN Concepts on pfSense 2.4 & 2.3.3 - pfSense Hangout February 2017
 
Console Menu - pfSense Hangout December 2016
Console Menu - pfSense Hangout December 2016Console Menu - pfSense Hangout December 2016
Console Menu - pfSense Hangout December 2016
 
OpenVPN as a WAN - pfSense Hangout October 2016
OpenVPN as a WAN - pfSense Hangout October 2016OpenVPN as a WAN - pfSense Hangout October 2016
OpenVPN as a WAN - pfSense Hangout October 2016
 
DHCP Server - pfSense Hangout September 2016
DHCP Server - pfSense Hangout September 2016DHCP Server - pfSense Hangout September 2016
DHCP Server - pfSense Hangout September 2016
 
High Availability Part 2 - pfSense Hangout July 2016
High Availability Part 2 - pfSense Hangout July 2016High Availability Part 2 - pfSense Hangout July 2016
High Availability Part 2 - pfSense Hangout July 2016
 
Connectivity Troubleshooting - pfSense Hangout June 2016
Connectivity Troubleshooting - pfSense Hangout June 2016Connectivity Troubleshooting - pfSense Hangout June 2016
Connectivity Troubleshooting - pfSense Hangout June 2016
 
NAT on pfSense 2.3 - pfSense Hangout May 2016
NAT on pfSense 2.3 - pfSense Hangout May 2016NAT on pfSense 2.3 - pfSense Hangout May 2016
NAT on pfSense 2.3 - pfSense Hangout May 2016
 
Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016
Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016
Traffic Shaping Basics with PRIQ - pfSense Hangout February 2016
 
pfSense 2.3 Preview - pfSense Hangout December 2015
pfSense 2.3 Preview - pfSense Hangout December 2015pfSense 2.3 Preview - pfSense Hangout December 2015
pfSense 2.3 Preview - pfSense Hangout December 2015
 
Site-to-Site VPNs - pfSense Hangout November 2015
Site-to-Site VPNs - pfSense Hangout November 2015Site-to-Site VPNs - pfSense Hangout November 2015
Site-to-Site VPNs - pfSense Hangout November 2015
 
Remote Access VPNs Part 2 - pfSense Hangout October 2015
Remote Access VPNs Part 2 - pfSense Hangout October 2015Remote Access VPNs Part 2 - pfSense Hangout October 2015
Remote Access VPNs Part 2 - pfSense Hangout October 2015
 

Último

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 

Último (20)

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 

Advanced Captive Portal - pfSense Hangout June 2017

  • 1. Advanced Captive Portal pfSense 2.3/2.4 June 2017 Hangout Jim Pingle
  • 2. About this Hangout ● Project News ● Brief Captive Portal Review ● Pass-Through Credits ● Pass-Through MAC Auto Entry ● Pre-Auth Redirect ● Advanced Voucher Topics ● FreeRADIUS Package Basics ● RADIUS Time Limits ● RADIUS Data Limits ● RADIUS Primary and Secondary Sources ● RADIUS MAC Authentication ● RADIUS Reply Attributes
  • 3. Project News ● OpenVPN update, patch ASAP – https://www.netgate.com/blog/important-update-for-openvpn.html ● 2.3.4-p1-RELEASE Coming Soon – Security/Errata fixes (XSS, Stack Clash, OpenVPN update) – Will be released once FreeBSD completes fixes for Stack Clash and they are merged and tested ● Netgate Global Support – New support structure, moving away from incidents to a per-device support model – 24x7, several SLA and contact method options – https://www.netgate.com/blog/announcing-netgate-global-support.html ● pfSense Brand Refresh – New logos for both pfSense and Netgate to more closely align the two – https://www.netgate.com/blog/pfsense-brand-refresh.html ● pfSense article in FreeBSD Journal ● BSDCan was earlier this month ● Minnowboard Turbot Dual-E models shipping now, on Amazon and Netgate store pages ● New book featuring pfSense: Building Virtual Machine Labs: A Hands-On Guide, by Tony V Robinson – Available also as an add-on item when ordering certain hardware models from the Netgate store
  • 4. Captive Portal Review ● Captive Portal prevents user traffic from exiting the local network until the user authenticates using the portal login page ● The portal captures HTTP/HTTPS requests and redirects unauthenticated users to the Captive Portal login page ● Captive Portals are often used to present users with a ToS or User Agreement, etc ● Operates primarily at Layer 2, checks the user’s MAC address and/or IP address ● Zones define different portals, and each zone can have one or more interfaces ● Bypass lists for sources/destinations based on MAC or IP address to skip auth ● Can use local auth, RADIUS, vouchers, or no auth at all ● Once a user is authenticated, their traffic flows based on regular firewall rules, as if the portal were not there ● See last month’s hangout for details, prerequisites, basic setup, etc.
  • 5. Pass-Through Credits ● Pass-Through Credits allow a user to “login” to the portal a number of times without prompting for a password. ● Combined with hard timeouts, this can effectively allow configurations such as “3 hours of access, then require a login” ● Pass-Through Credits Per MAC Address: – The number of times the MAC can pass through the portal login process per “waiting period” without redirecting to the portal login page ● Waiting period to restore pass-through credits: – A time, specified in hours, after which pass-through credits reset – Example: “24” would be per day – Starts counting after the first pass-through – Must be a non-zero number if pass-through credits are enabled ● Reset waiting period – When enabled, attempting to access the portal again resets the user’s waiting period start time, making them wait longer for access – Useful to curtail abusers
  • 6. Pass-Through MAC Auto Entry ● Useful for user self-registration style setups – Allows the portal admin to force a login just once, without requiring a login each and every time – Useful for networks that do not change often, but still require authenticating each device – Another potential use cases is WISP networks where knowing which user has a MAC is important, but repeated logins would be undesirable ● Cannot be combined with RADIUS MAC Authentication ● Will not show a logout pop-up or page ● To remove a user, manually remove them from the MAC tab, or setup a script to POST the proper parameters ● “… with username” option – The username is stored along with the MAC address in the pass-through entry
  • 7. Pre-Auth Redirect ● Forces users to a page outside the firewall before the portal login screen ● Flow is: – User attempts to load page, user is redirected to the portal page – Portal page sees that the user is trying to reach some other site, sends them to the pre-auth URL instead – User clicks link on pre-auth page – Portal page sees the link it expects coming from the pre-auth page – User receives the portal login page – User logs in, and is redirected back to the pre-auth URL ● Outside page links back to portal URL ● If the site is remote, you must add it and any assets it needs as a bypass (host or IP address) ● Requires a special block of PHP at the start of the login page – In the book, also will be in the example page posted with this hangout ● Upload custom page, set URL to landing page in Pre-Auth Redirect box ● In the supplied example, the landing page must also include itself as the final redirect URL so users return to that same landing page after login – The code could be adjusted for other cases
  • 8. Advanced Vouchers - Bits ● Voucher bits must add up to less than the key size, which by default is 64 – Default values add up to only 31 – Default is: ● 16 roll bits (2^16-1 or 65535 rolls) ● 10 ticket bits (2^10-1 or 1023 tickets per roll) – When adjusting numbers, reduce one to increase another – More tickets in a roll: ● Decrease roll bits, increase ticket bits – More rolls with less tickets ● Decrease ticket bits, increase roll bits
  • 9. Advanced Vouchers – Code Sizes ● Simpler voucher codes – Change character set to only include a limited set of characters (e.g. uppercase letters) – This will make codes longer, as it needs more bits of entropy ● Shorter voucher codes – Either a more complex character set… OR – Generate a shorter key and adjust bits to fit new size ● Shorter key means less randomness, which means vouchers could be more predictable/crackable, less secure! ● openssl genrsa 31 > /tmp/private.key ● openssl rsa -pubout -outform PEM < /tmp/private.key > /tmp/public.key ● Edit/open/download /tmp/private.key and /tmp/public.key and copy to appropriate fields in the GUI ● Reduce roll/ticket/checksum bits to fit under the new size
  • 10. RADIUS Basics ● Next sections are specific to RADIUS and require a RADIUS server ● RADIUS is a system that provides Authentication, Authorization, and Accounting (AAA) ● FreeRADIUS package on pfSense can fill this role for most installations, but more complicated setups would benefit from a dedicated external RADIUS server that ties into other systems (accounts, billing, payment cards, 2FA, etc) ● Active Directory can also be accessed via RADIUS using NPS
  • 11. FreeRADIUS Package ● Examples in later slides will be shown specifically using the pfSense FreeRADIUS 3.x package, for simplicity ● The same features are usable in other RADIUS servers, but YMMV ● Install the FreeRADIUS 3.x package from System > Package Manager ● Visit Services > FreeRADIUS, EAP tab, pick SSL CA and Server Cert. Make one first if you don’t have one, or leave it on “auto” ● Interfaces Tab: Add two instances, one for Authentication on 1812, one for Accounting on 1813 ● NAS/Clients Tab: Add at least one entry for localhost (127.0.0.1), set shortname (usually firewall hostname), shared secret, others can be left blank/default ● Users: Salt to taste (wait until covered on later slides) ● Add entry under System > User Manager and test from Diagnostics > Authentication
  • 12. Captive Portal RADIUS Auth ● Set Authentication to RADIUS Authentication ● Set RADIUS Protocol to MSCHAPv2 ● Set Primary RADIUS Server… – IP Address: 127.0.0.1 (or other RADIUS server) – RADIUS Port: 1812 – Shared Secret: Password set for this NAS entry in RADIUS ● Accounting… – Check enable – Accounting Port: 1813 – Accounting Updates: Stop/Start (FreeRADIUS) ● RADIUS Options: Will vary depending on what features are required, see later slides
  • 13. RADIUS Time Limits ● In addition to settings mentioned previously… ● Check Captive Portal RADIUS Option for Reauthenticate connected users every minute ● Services > FreeRADIUS, Settings tab, check Disable Acct_Unique ● FreeRADIUS User entries are limited based on a set amount of time within a period using the Time Configuration section ● Set Amount of Time to a number, in minutes, of the duration the user is allowed to be logged in ● Set the Time Period after which the user’s Amount of Time resets – Daily resets at midnight every day – Weekly resets at midnight on Sunday – Monthly resets at midnight the first day of each month – Forever never resets until the database files are removed/reset manually
  • 14. RADIUS Data Limits ● Basic setup the same as Time Limits on last slide (Disable Acct_Unique in FreeRADIUS, set to Reauth every minute, etc) ● In FreeRADIUS Users, set values in the Traffic and Bandwidth section ● Set the Amount of Download and Upload Traffic, in Megabytes, to control how much a user can transfer, total upload and download, within the alotted Time Period ● Set the Time Period to when the counters should reset (see previous slide) ● It does only check once per minute, so depending on circuit speed they could exceed the limit significantly in under a minute
  • 15. RADIUS Pri & Sec Sources ● Not a backup! This is a second, separate, source for authentication ● Two authentication sources, needs two different login fields on the page ● Primary source uses auth_user / auth_pass fields ● Secondary source uses auth_user2 / auth_pass2 fields ● Can be used for different sources, such as Primary = AD, Secondary = External card number+pin provider
  • 16. RADIUS MAC Authentication ● Automatically sends the MAC address of a client to RADIUS with a standard password to check if it’s OK before presenting a login page ● If it fails, the user is given the normal portal login screen ● Allows for centralized MAC-based authentication without needing to populate the MACs for pass-through on pfSense ● In FreeRADIUS, disable Plain MAC Auth on the Settings tab. ● In FreeRADIUS, add entries to Users tab, using the dash-separator notation (xx-xx-xx-xx-xx-xx) and the common password set in Captive Portal ● In Captive Portal settings, enable RADIUS MAC Authentication ● Enter the common MAC authentication secret which must be the same for all MAC entries for this portal ● Set the MAC Address Format to IETF ● NOTE: Do not use the MACs tab in FreeRADIUS or the Plain MAC Auth option, those are for older 802.1x equipment which cannot send usernames or passwords, only MAC address as Calling-Station-Id
  • 17. RADIUS Reply Attributes ● Several user control options can be sent back as RADIUS Reply Attributes ● Per-user session length value – “Session-Timeout” Reply Attribute – Must be checked on Captive Portal settings – Set Session Timeout field on FreeRADIUS User entry ● Per-user idle timeout value – “Idle-Timeout” Reply Attribute ● Per-user data limits can be set, crafts automatic limiters – In FreeRADIUS user entries, “Maximum Bandwidth” down/up fields – WISPr-Bandwidth-Max-Up/WISPr-Bandwidth-Max-Down, or ChilliSpot-Bandwidth-Max-Up/ChilliSpot-Bandwidth- Max-Down ● Per-user redirection URL: – “WISPr-Redirection-URL” Reply Attribute – Set manually in the REPLY-ITEM box on a FreeRADIUS user
  • 18. Conclusion ● Questions? ● Ideas for hangout topics? Post on forum, comment on the blog posts, Reddit, etc