Installing daloRADIUS 2024

 


This guide will take you through the process of deploying a basic open-source AAA infrastructure on a dedicated instance of Debian 11 or 12 using the following components:

Please note that this guide has been fully tested on a Debian 11 environment, and the specific versions of the components used are mentioned in the above list.


Article is edited by: Administrator - 7-03-2024, 11:41

Read more

LANBill Setup Firewall Rules

/interface bridge filter add action=accept chain=input disabled=no in-bridge=LAN ip-protocol=udp mac-protocol=ip src-address=0.0.0.0/32 src-port=67-68

/interface bridge filter add action=accept chain=input disabled=no in-bridge=LAN mac-protocol=ip src-address=172.16.0.0/24

/interface bridge filter add action=drop chain=input disabled=no in-bridge=LAN mac-protocol=ip

Read more

openvpn config file code

local 185.107.83.243
port 8443
proto tcp
dev tun
ca ca.crt
cert server.crt
key server.key
dh dh.pem
#auth SHA512
auth none
#tls-crypt tc.key
topology subnet
server 10.8.0.0 255.255.255.0
push "redirect-gateway def1 bypass-dhcp"
ifconfig-pool-persist ipp.txt
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
#push "block-outside-dns"
keepalive 10 120
#cipher AES-256-CBC
cipher none
user nobody
group nogroup
persist-key
persist-tun
verb 3
crl-verify crl.pem

Read more