ISP OPERATIONAL TECHNOLOGY
Find a file
2025-08-25 11:10:16 +06:00
001-FreeBSD_Router_Build.sh Update 001-FreeBSD_Router_Build.sh 2024-03-05 07:19:21 +06:00
002-Han-notes-xpad.sh Update 002-Han-notes-xpad.sh 2024-03-07 06:48:27 +06:00
003-ait-gw1.bash Update and rename 002-ait-gw1.bash to 003-ait-gw1.bash 2023-06-28 10:49:31 +06:00
003-Unbound-Dns-LogServer.sh Update 003-Unbound-Dns-LogServer.sh 2024-07-10 11:48:27 +06:00
004-nfsen-nfdump-u20.04.sh Update 004-nfsen-nfdump-u20.04.sh 2023-05-13 14:58:16 +06:00
005-rsyslog-elk.sh Rename 005-rsyslog-elk to 005-rsyslog-elk.sh 2023-06-07 16:07:10 +06:00
006-LanCache-2024.sh Update 006-LanCache-2024.sh 2024-03-27 16:08:56 +06:00
007_observium_agent_install_ubuntu_debian.sh Create 007_observium_agent_install_ubuntu_debian.sh 2025-06-18 19:10:39 +06:00
008-rsyslog-server-ubuntu2404.sh Update 008-rsyslog-server-ubuntu2404.sh 2025-07-17 13:08:49 +06:00
009-iptables-firehol-geoip-block.sh Update 009-iptables-firehol-geoip-block.sh 2025-08-25 11:10:16 +06:00
cbl_test.txt Update cbl_test.txt 2024-08-27 23:40:12 +06:00
LICENSE Initial commit 2023-01-22 13:36:11 +06:00
README.md Update README.md 2024-12-15 16:26:19 +06:00

isp-operation

ISP OPERATIONAL TECHNOLOGY

https://www.cyberciti.biz/faq/how-to-install-a-wireguard-vpn-client-in-a-freebsd-jail/

WireGurad Client on FreeBSD


pkg update
pkg upgrade

pkg search wireguard
pkg install wireguard

cd /usr/local/etc/wireguard/

vim /usr/local/etc/wireguard/wg0.conf


sysrc wireguard_interfaces="wg0"
sysrc wireguard_enable="YES"

service wireguard start

ping -c 4 ping 172.16.0.1

BDCOM Switch LACP+TRUNK

!
interface Port-aggregator 1
switchport mode trunk
!
interface GigaEthernet0/1
switchport mode trunk
aggregator-group 1 mode lacp
!
interface GigaEthernet0/2
switchport mode trunk
aggregator-group 1 mode lacp
!
!

FREE-RADIUS-NAS AUTO RESTART (UBUNTU)

sudo apt update && apt install incron -y
echo "root" > /etc/incron.allow

sudo vim /opt/NAS_RESTART
#!/bin/bash
sleep 1
systemctl restart freeradius
sleep 3
systemctl restart incron

chmod +x /opt/NAS_RESTART

sudo incrontab -e
/var/lib/mysql/radius/nas.ibd IN_MODIFY /opt/NAS_RESTART