Fortinet Conversion Guide | Helium Documentation

Prerequisites

On an Intel-based Machine with Docker Installed:

RadSecProxy Container Deployment

  1. Un-zip and untar the Helium_RadSec_Docker.tar.gz file into the directory of your choice on the host machine.
   tar -xvzf  Helium_RadSec_Docker.tar.gz

This will unpack the following items:

  1. Dockerfile - The docker instructions on how to build the container
  2. Radsecproxy.conf - The radsecproxy config file is pre-populated to connect to Helium Network AAA servers
  3. docker-compose.yml - File to start and stop the container as a daemon.

Into the same directory, copy the 3 certificates obtained from Helium

Start the container using sudo docker compose up -d. If/when needed, stop the container using: sudo docker compose down.

Configure Fortinet FortiGate

On the FortiGate CLI with FortiOS 7.0.2+

  1. Add the local RadSecProxy as the RADIUS server by replacing the to the current RadSecProxy container IP address. Also, use the NAS ID used during onboarding to Helium for
   config user radius

edit "Helium RadSecProxy"

set server "<radsecproxy-ip-addr>"

set secret mysecret

set nas-id-type custom

set nas-id "<custom-nas-id>"

set radius-coa enable

set radius-port 1812

config accounting-server

edit 1

set status enable

set server "<radsecproxy-ip-addr>"

set secret mysecret

set port 1813

next

end

next

end
  1. Set the type of IP address available to subscribers connecting to your Hotspot 2.0 network.
   config wireless-controller hotspot20 anqp-ip-address-type

edit "ipv4-single-NATed-private"

set ipv4-address-type single-NATed-private

next

end
  1. Define a Venue Name and configure its duple by replacing to the desired value.
   config wireless-controller hotspot20 anqp-venue-name

edit "<any-venue-name>"

config value-list

edit 1

set value "<any-venue-name>"

next

end

next

end
  1. Define “Helium” as the Operator Name.
   config wireless-controller hotspot20 h2qp-operator-name

edit "Helium"

config value-list

edit 1

set value "Helium"

next

end

next

end
  1. Add Helium Mobile's NAI Realms.
   config wireless-controller hotspot20 anqp-nai-realm

edit "Helium_NAI_Realm"

config nai-list

edit "freedomfi.com"

set nai-realm "freedomfi.com"

config eap-method

edit 1

set method eap-tls

config auth-param

edit 1

set id credential

set val cred-certificate

next

end

next

end

next

edit "hellohelium.com"

set nai-realm "hellohelium.com"

config eap-method

edit 1

set method eap-tls

config auth-param

edit 1

set id credential

set val cred-certificate

next

end

next

end

next

end

next

end
  1. Configure the Passpoint Profile by linking the previously added NAI Realms, 3GPP Cellular Networks, and the type of IP address available to subscribers connecting to your Hotspot 2.0, among other parameters.
   config wireless-controller hotspot20 hs-profile

edit "Helium"

set access-network-type chargeable-public-network

set access-network-internet enable

set venue-group business

set domain-name "freedomfi.com"

set venue-name "<any-venue-name>"

set nai-realm "Helium_NAI_Realm"

set ip-addr-type "ipv4-single-NATed-private"

next

end
  1. As the final step, set a Virtual Access Point (VAP) by linking the previously added “Helium RadSecProxy” RADIUS server, and the “Helium” Passpoint Profile, among other parameters.
   config wireless-controller vap

edit "Helium"

set ssid "Helium"

set security wpa2-only-enterprise

set auth radius

set radius-server "Helium RadSecProxy"

set intra-vap-privacy enable

set schedule "always"

set hotspot20-profile "Helium"

next

end