├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── CONTRIBUTING.md ├── Keywords ├── sample.ucl └── shadow.ucl ├── LICENSE ├── Makefile ├── Mk ├── common.mk ├── contrib.mk ├── defaults.mk ├── devel.mk ├── git.mk ├── lint.mk ├── plugins.mk ├── style.mk └── sweep.mk ├── README.md ├── Scripts ├── license ├── revbump.sh ├── update-list.sh └── version.sh ├── Templates ├── actions.d ├── configure ├── models ├── rc.loader.d ├── templates └── version ├── benchmarks └── iperf │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ ├── inc │ │ └── plugins.inc.d │ │ │ └── iperf.inc │ └── rc.d │ │ └── iperf │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── iperf │ │ │ ├── Api │ │ │ ├── InstanceController.php │ │ │ └── ServiceController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ └── instance_settings.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── iperf │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── FakeInstance.php │ │ │ ├── FakeInstance.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── OPNsense │ │ └── iperf │ │ └── index.volt │ ├── scripts │ └── iperf │ │ └── ruby_iperf.rb │ └── service │ └── conf │ └── actions.d │ └── actions_iperf.conf ├── databases └── redis │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── redis.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Redis │ │ │ ├── Api │ │ │ ├── ServiceController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ └── settings.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── Redis │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Menu │ │ │ └── Menu.xml │ │ │ ├── Redis.php │ │ │ └── Redis.xml │ │ └── views │ │ └── OPNsense │ │ └── Redis │ │ └── index.volt │ ├── scripts │ └── redis │ │ └── setup.sh │ └── service │ ├── conf │ └── actions.d │ │ └── actions_redis.conf │ └── templates │ └── OPNsense │ └── Redis │ ├── +TARGETS │ ├── redis │ └── redis.conf ├── devel ├── debug │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── bin │ │ └── qyua │ │ ├── etc │ │ └── php │ │ │ └── ext-20-xdebug-settings.ini │ │ └── man │ │ └── man1 │ │ └── qyua.1 ├── grid_example │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── mvc │ │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── GridExample │ │ │ ├── Api │ │ │ ├── ServiceController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ └── dialogAddress.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── GridExample │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── GridExample.php │ │ │ ├── GridExample.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── OPNsense │ │ └── GridExample │ │ └── index.volt └── helloworld │ ├── Makefile │ ├── pkg-descr │ └── src │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── HelloWorld │ │ │ ├── Api │ │ │ ├── ServiceController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ └── general.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── HelloWorld │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── HelloWorld.php │ │ │ ├── HelloWorld.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── OPNsense │ │ └── HelloWorld │ │ └── index.volt │ ├── scripts │ └── helloworld │ │ └── testConnection.py │ └── service │ ├── conf │ └── actions.d │ │ └── actions_helloworld.conf │ └── templates │ └── OPNsense │ └── HelloWorld │ ├── +TARGETS │ └── helloworld.conf ├── dns ├── bind │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── bind.inc │ │ └── namedb │ │ │ └── named.conf.d │ │ │ └── 00-README.conf │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Bind │ │ │ │ ├── Api │ │ │ │ ├── AclController.php │ │ │ │ ├── DnsblController.php │ │ │ │ ├── DomainController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── RecordController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── LogsController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditBindAcl.xml │ │ │ │ ├── dialogEditBindForwardDomain.xml │ │ │ │ ├── dialogEditBindPrimaryDomain.xml │ │ │ │ ├── dialogEditBindRecord.xml │ │ │ │ ├── dialogEditBindSecondaryDomain.xml │ │ │ │ ├── dnsbl.xml │ │ │ │ └── general.xml │ │ │ ├── library │ │ │ └── OPNsense │ │ │ │ └── System │ │ │ │ └── Status │ │ │ │ └── BindOverrideStatus.php │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Bind │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Acl.php │ │ │ │ ├── Acl.xml │ │ │ │ ├── Dnsbl.php │ │ │ │ ├── Dnsbl.xml │ │ │ │ ├── Domain.php │ │ │ │ ├── Domain.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Migrations │ │ │ │ └── M1_1_0.php │ │ │ │ ├── Record.php │ │ │ │ └── Record.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Bind │ │ │ ├── general.volt │ │ │ └── logs.volt │ │ ├── scripts │ │ ├── OPNsense │ │ │ └── Bind │ │ │ │ ├── dnsbl.sh │ │ │ │ ├── setup.sh │ │ │ │ ├── zoneCheck.sh │ │ │ │ └── zoneShow.py │ │ └── syslog │ │ │ └── logformats │ │ │ └── bind.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_bind.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Bind │ │ ├── +TARGETS │ │ ├── bing.db │ │ ├── blacklist.db │ │ ├── domain.db │ │ ├── duckduckgo.db │ │ ├── google.db │ │ ├── named │ │ ├── named.conf │ │ ├── rndc.conf │ │ ├── whitelist.db │ │ ├── whitelist.inc │ │ └── youtube.db │ │ └── Syslog │ │ └── local │ │ └── named.conf ├── ddclient │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── ddclient.inc │ │ └── rc.d │ │ │ └── ddclient_opn │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── DynDNS │ │ │ │ ├── Api │ │ │ │ ├── AccountsController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ ├── dialogAccount.xml │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── DynDNS │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── DynDNS.php │ │ │ │ ├── DynDNS.xml │ │ │ │ ├── FieldTypes │ │ │ │ ├── AccountField.php │ │ │ │ ├── CheckipField.php │ │ │ │ └── ServiceField.php │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ └── Migrations │ │ │ │ └── M1_2_0.php │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── DynDNS │ │ │ └── index.volt │ │ ├── scripts │ │ └── ddclient │ │ │ ├── checkip │ │ │ ├── ddclient_opn.py │ │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── account │ │ │ │ ├── __init__.py │ │ │ │ ├── aws.py │ │ │ │ ├── azure.py │ │ │ │ ├── cloudflare.py │ │ │ │ ├── digitalocean.py │ │ │ │ ├── domeneshop.py │ │ │ │ ├── duckdns.py │ │ │ │ ├── dyndns2.py │ │ │ │ ├── gandi.py │ │ │ │ ├── netcup.py │ │ │ │ └── powerdns.py │ │ │ ├── address.py │ │ │ └── poller.py │ │ │ ├── setup.sh │ │ │ └── stats │ │ ├── service │ │ ├── conf │ │ │ └── actions.d │ │ │ │ └── actions_ddclient.conf │ │ └── templates │ │ │ └── OPNsense │ │ │ ├── Syslog │ │ │ └── local │ │ │ │ └── ddclient.conf │ │ │ └── ddclient │ │ │ ├── +TARGETS │ │ │ ├── ddclient.conf │ │ │ ├── ddclient.json │ │ │ ├── ddclient_opn.rc.conf.d │ │ │ └── rc.conf.d │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── Dyndns.js │ │ └── Metadata │ │ └── Dyndns.xml ├── dnscrypt-proxy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── dnscryptproxy.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Dnscryptproxy │ │ │ │ ├── Api │ │ │ │ ├── CloakController.php │ │ │ │ ├── DnsblController.php │ │ │ │ ├── ForwardController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── ServerController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── WhitelistController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditDnscryptproxyCloak.xml │ │ │ │ ├── dialogEditDnscryptproxyForward.xml │ │ │ │ ├── dialogEditDnscryptproxyServer.xml │ │ │ │ ├── dialogEditDnscryptproxyWhitelist.xml │ │ │ │ ├── dnsbl.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Dnscryptproxy │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Cloak.php │ │ │ │ ├── Cloak.xml │ │ │ │ ├── Dnsbl.php │ │ │ │ ├── Dnsbl.xml │ │ │ │ ├── Forward.php │ │ │ │ ├── Forward.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Server.php │ │ │ │ ├── Server.xml │ │ │ │ ├── Whitelist.php │ │ │ │ └── Whitelist.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Dnscryptproxy │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Dnscryptproxy │ │ │ ├── dnsbl.sh │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_dnscryptproxy.conf │ │ └── templates │ │ └── OPNsense │ │ └── Dnscryptproxy │ │ ├── +TARGETS │ │ ├── cloaking-rules.txt │ │ ├── dnscrypt-proxy.toml │ │ ├── dnscrypt_proxy │ │ ├── forwarding-rules.txt │ │ └── whitelist.txt └── rfc2136 │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ ├── inc │ │ └── plugins.inc.d │ │ │ └── rfc2136.inc │ └── rc.rfc2136 │ ├── opnsense │ ├── mvc │ │ └── app │ │ │ └── models │ │ │ └── OPNsense │ │ │ └── RFC2136 │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ └── service │ │ └── conf │ │ └── actions.d │ │ └── actions_rfc2136.conf │ └── www │ ├── services_rfc2136.php │ └── services_rfc2136_edit.php ├── emulators └── qemu-guest-agent │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ ├── inc │ │ └── plugins.inc.d │ │ │ └── qemuguestagent.inc │ └── rc.syshook.d │ │ └── early │ │ └── 50-qemu-guest-agent │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── QemuGuestAgent │ │ │ ├── Api │ │ │ ├── ServiceController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ └── general.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── QemuGuestAgent │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Menu │ │ │ └── Menu.xml │ │ │ ├── QemuGuestAgent.php │ │ │ └── QemuGuestAgent.xml │ │ └── views │ │ └── OPNsense │ │ └── QemuGuestAgent │ │ └── index.volt │ ├── scripts │ └── OPNsense │ │ └── QemuGuestAgent │ │ └── setup.sh │ └── service │ ├── conf │ └── actions.d │ │ └── actions_qemuguestagent.conf │ └── templates │ └── OPNsense │ └── QemuGuestAgent │ ├── +TARGETS │ └── rc.conf.d ├── ftp └── tftp │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── tftp.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Tftp │ │ │ ├── Api │ │ │ ├── GeneralController.php │ │ │ └── ServiceController.php │ │ │ ├── GeneralController.php │ │ │ └── forms │ │ │ └── general.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── Tftp │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── General.php │ │ │ ├── General.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── OPNsense │ │ └── Tftp │ │ └── general.volt │ └── service │ ├── conf │ └── actions.d │ │ └── actions_tftp.conf │ └── templates │ └── OPNsense │ └── Tftp │ ├── +TARGETS │ └── tftpd ├── mail ├── postfix │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── postfix.inc │ │ └── opnsense │ │ ├── data │ │ └── OPNsense │ │ │ └── Postfix │ │ │ └── dh-parameters.2048.rfc7919 │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Postfix │ │ │ │ ├── AddressController.php │ │ │ │ ├── Api │ │ │ │ ├── AddressController.php │ │ │ │ ├── AntispamController.php │ │ │ │ ├── DomainController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── HeaderchecksController.php │ │ │ │ ├── RecipientController.php │ │ │ │ ├── RecipientbccController.php │ │ │ │ ├── SenderController.php │ │ │ │ ├── SenderbccController.php │ │ │ │ ├── SendercanonicalController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── DomainController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── HeaderchecksController.php │ │ │ │ ├── RecipientController.php │ │ │ │ ├── RecipientbccController.php │ │ │ │ ├── SenderController.php │ │ │ │ ├── SenderbccController.php │ │ │ │ ├── SendercanonicalController.php │ │ │ │ └── forms │ │ │ │ ├── antispam.xml │ │ │ │ ├── dialogEditPostfixAddress.xml │ │ │ │ ├── dialogEditPostfixDomain.xml │ │ │ │ ├── dialogEditPostfixHeadercheck.xml │ │ │ │ ├── dialogEditPostfixRecipient.xml │ │ │ │ ├── dialogEditPostfixRecipientbcc.xml │ │ │ │ ├── dialogEditPostfixSender.xml │ │ │ │ ├── dialogEditPostfixSenderbcc.xml │ │ │ │ ├── dialogEditPostfixSendercanonical.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Postfix │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Address.php │ │ │ │ ├── Address.xml │ │ │ │ ├── Antispam.php │ │ │ │ ├── Antispam.xml │ │ │ │ ├── Domain.php │ │ │ │ ├── Domain.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Headerchecks.php │ │ │ │ ├── Headerchecks.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Recipient.php │ │ │ │ ├── Recipient.xml │ │ │ │ ├── Recipientbcc.php │ │ │ │ ├── Recipientbcc.xml │ │ │ │ ├── Sender.php │ │ │ │ ├── Sender.xml │ │ │ │ ├── Senderbcc.php │ │ │ │ ├── Senderbcc.xml │ │ │ │ ├── Sendercanonical.php │ │ │ │ └── Sendercanonical.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Postfix │ │ │ ├── address.volt │ │ │ ├── apply.volt │ │ │ ├── domain.volt │ │ │ ├── general.volt │ │ │ ├── headerchecks.volt │ │ │ ├── recipient.volt │ │ │ ├── recipientbcc.volt │ │ │ ├── sender.volt │ │ │ ├── senderbcc.volt │ │ │ └── sendercanonical.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Postfix │ │ │ ├── generate_certs.php │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_postfix.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Postfix │ │ ├── +TARGETS │ │ ├── header_checks_delivering │ │ ├── header_checks_receiving │ │ ├── main.cf │ │ ├── master.cf │ │ ├── postfix │ │ ├── recipient_access │ │ ├── recipientbcc │ │ ├── sender_access │ │ ├── senderbcc │ │ ├── sendercanonical │ │ ├── smtp_auth │ │ ├── transport │ │ └── virtual │ │ └── Syslog │ │ └── local │ │ └── postfix.conf └── rspamd │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── rspamd.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Rspamd │ │ │ ├── Api │ │ │ ├── ServiceController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ └── settings.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── Rspamd │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Menu │ │ │ └── Menu.xml │ │ │ ├── RSpamd.php │ │ │ └── RSpamd.xml │ │ └── views │ │ └── OPNsense │ │ └── Rspamd │ │ └── index.volt │ ├── scripts │ └── rspamd │ │ └── setup.sh │ └── service │ ├── conf │ └── actions.d │ │ └── actions_rspamd.conf │ └── templates │ └── OPNsense │ └── Rspamd │ ├── +TARGETS │ ├── 2tld.inc.local │ ├── actions.conf │ ├── antivirus.conf │ ├── antivirus.wl │ ├── bad_file_extensions-map │ ├── classifier-bayes.conf │ ├── dkim.conf │ ├── dkim_signing.conf │ ├── greylist.conf │ ├── greylist_ip.wl │ ├── history_redis.conf │ ├── milter_headers.conf │ ├── multimap.conf │ ├── mx_check.conf │ ├── options.inc │ ├── phishing.conf │ ├── phishing_whitelist.inc │ ├── ratelimit.conf │ ├── redis.conf │ ├── rspamd │ ├── spamtrap-map │ ├── spamtrap.conf │ ├── spf.conf │ ├── surbl-whitelist.inc.local │ ├── whitelist_sender_domains-map │ ├── worker-normal.inc │ └── worker-proxy.inc ├── misc ├── theme-advanced │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── www │ │ └── themes │ │ └── advanced │ │ ├── assets │ │ ├── fonts │ │ │ └── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── stylesheets │ │ │ ├── _bootstrap-compass.scss │ │ │ ├── _bootstrap-mincer.scss │ │ │ ├── _bootstrap-sprockets.scss │ │ │ ├── bootstrap-dialog.less │ │ │ ├── bootstrap-select │ │ │ ├── less │ │ │ │ ├── bootstrap-select.less │ │ │ │ └── variables.less │ │ │ └── sass │ │ │ │ ├── bootstrap-select.css │ │ │ │ ├── bootstrap-select.scss │ │ │ │ └── variables.scss │ │ │ ├── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _progress-bar.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-overflow.scss │ │ │ │ └── _vendor-prefixes.scss │ │ │ ├── dashboard.scss │ │ │ ├── main.scss │ │ │ └── opnsense-bootgrid.scss │ │ └── build │ │ ├── css │ │ ├── bootstrap-dialog.css │ │ ├── bootstrap-select.css │ │ ├── dashboard.css │ │ ├── main.css │ │ └── opnsense-bootgrid.css │ │ ├── fonts │ │ ├── UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2 │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── images │ │ ├── caret.png │ │ ├── default-logo.svg │ │ ├── favicon.png │ │ └── icon-logo.svg ├── theme-cicada │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── www │ │ └── themes │ │ └── cicada │ │ ├── LICENSE │ │ ├── assets │ │ ├── fonts │ │ │ ├── SourceSansPro-Bold │ │ │ │ ├── SourceSansPro-Bold.eot │ │ │ │ ├── SourceSansPro-Bold.otf │ │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ │ └── SourceSansPro-Bold.woff │ │ │ ├── SourceSansPro-Regular │ │ │ │ ├── SourceSansPro-Regular.eot │ │ │ │ ├── SourceSansPro-Regular.otf │ │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ │ └── SourceSansPro-Regular.woff │ │ │ ├── SourceSansPro-Semibold │ │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ │ └── SourceSansPro-Semibold.woff │ │ │ └── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── stylesheets │ │ │ ├── _bootstrap-compass.scss │ │ │ ├── _bootstrap-mincer.scss │ │ │ ├── _bootstrap-sprockets.scss │ │ │ ├── bootstrap-dialog.less │ │ │ ├── bootstrap-select.scss │ │ │ ├── bootstrap-select │ │ │ ├── css │ │ │ │ ├── bootstrap-select.css │ │ │ │ └── variables.css │ │ │ └── less │ │ │ │ ├── bootstrap-select.less │ │ │ │ └── variables.less │ │ │ ├── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _progress-bar.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-overflow.scss │ │ │ │ └── _vendor-prefixes.scss │ │ │ ├── dashboard.scss │ │ │ ├── dns-overview.scss │ │ │ ├── main.scss │ │ │ └── tokenize2.scss │ │ └── build │ │ ├── css │ │ ├── bootstrap-dialog.css │ │ ├── bootstrap-select.css │ │ ├── dashboard.css │ │ ├── dns-overview.css │ │ ├── jquery.bootgrid.css │ │ ├── main.css │ │ ├── nv.d3.css │ │ ├── opnsense-bootgrid.css │ │ ├── pick-a-color-1.2.3.min.css │ │ ├── tabulator.min.css │ │ └── tokenize2.css │ │ ├── fonts │ │ ├── LICENSE.SourceSansPro.txt │ │ ├── SourceSansPro-Bold │ │ │ ├── SourceSansPro-Bold.eot │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ └── SourceSansPro-Bold.woff │ │ ├── SourceSansPro-Regular │ │ │ ├── SourceSansPro-Regular.eot │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Regular.woff │ │ ├── SourceSansPro-Semibold │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ └── SourceSansPro-Semibold.woff │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── images │ │ ├── caret.png │ │ ├── default-logo.png │ │ ├── favicon.png │ │ └── icon-logo.svg ├── theme-flexcolor │ ├── +POST_INSTALL.post │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── rc.d │ │ │ └── flexcolor │ │ └── rc.syshook.d │ │ │ └── early │ │ │ └── 50-flexcolor │ │ └── opnsense │ │ └── www │ │ └── themes │ │ └── flexcolor │ │ ├── LICENSE │ │ ├── assets │ │ ├── fonts │ │ │ ├── SourceSansPro-Bold │ │ │ │ ├── SourceSansPro-Bold.eot │ │ │ │ ├── SourceSansPro-Bold.otf │ │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ │ └── SourceSansPro-Bold.woff │ │ │ ├── SourceSansPro-Regular │ │ │ │ ├── SourceSansPro-Regular.eot │ │ │ │ ├── SourceSansPro-Regular.otf │ │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ │ └── SourceSansPro-Regular.woff │ │ │ ├── SourceSansPro-Semibold │ │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ │ └── SourceSansPro-Semibold.woff │ │ │ └── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── stylesheets │ │ │ └── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ ├── _alerts.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _buttons.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _image.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _opacity.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _resize.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-overflow.scss │ │ │ └── _vendor-prefixes.scss │ │ └── build │ │ ├── color_schemes │ │ ├── black │ │ │ └── default_scheme.css │ │ ├── darklight │ │ │ └── default_scheme.css │ │ └── light │ │ │ └── default_scheme.css │ │ ├── css │ │ ├── bootstrap-dialog.css.shadow │ │ ├── bootstrap-select.css.shadow │ │ ├── dashboard.css.shadow │ │ ├── dns-overview.css.shadow │ │ ├── jquery.bootgrid.css.shadow │ │ ├── main.css.shadow │ │ ├── nv.d3.css.shadow │ │ ├── opnsense-bootgrid.css.shadow │ │ └── tokenize2.css.shadow │ │ ├── fonts │ │ ├── LICENSE.SourceSansPro.txt │ │ ├── SourceSansPro-Bold │ │ │ ├── SourceSansPro-Bold.eot │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ └── SourceSansPro-Bold.woff │ │ ├── SourceSansPro-Regular │ │ │ ├── SourceSansPro-Regular.eot │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Regular.woff │ │ ├── SourceSansPro-Semibold │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ └── SourceSansPro-Semibold.woff │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── images │ │ ├── caret.png │ │ ├── default-logo.svg │ │ ├── favicon.png │ │ └── icon-logo.svg ├── theme-rebellion │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── www │ │ └── themes │ │ └── rebellion │ │ ├── assets │ │ ├── fonts │ │ │ ├── SourceSansPro-Bold │ │ │ │ ├── SourceSansPro-Bold.eot │ │ │ │ ├── SourceSansPro-Bold.otf │ │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ │ └── SourceSansPro-Bold.woff │ │ │ ├── SourceSansPro-Regular │ │ │ │ ├── SourceSansPro-Regular.eot │ │ │ │ ├── SourceSansPro-Regular.otf │ │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ │ └── SourceSansPro-Regular.woff │ │ │ ├── SourceSansPro-Semibold │ │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ │ └── SourceSansPro-Semibold.woff │ │ │ └── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── stylesheets │ │ │ ├── _bootstrap-compass.scss │ │ │ ├── _bootstrap-mincer.scss │ │ │ ├── _bootstrap-sprockets.scss │ │ │ ├── bootstrap-dialog.less │ │ │ ├── bootstrap-select.scss │ │ │ ├── bootstrap-select │ │ │ ├── css │ │ │ │ ├── bootstrap-select.css │ │ │ │ └── variables.css │ │ │ └── less │ │ │ │ ├── bootstrap-select.less │ │ │ │ └── variables.less │ │ │ ├── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _progress-bar.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-overflow.scss │ │ │ │ └── _vendor-prefixes.scss │ │ │ ├── main.scss │ │ │ └── tokenize2.scss │ │ └── build │ │ ├── css │ │ ├── bootstrap-dialog.css │ │ ├── bootstrap-select.css │ │ ├── dashboard.css │ │ ├── dns-overview.css │ │ ├── jqtree.css │ │ ├── jquery.bootgrid.css │ │ ├── main.css │ │ ├── nv.d3.css │ │ └── tokenize2.css │ │ ├── fonts │ │ ├── LICENSE.SourceSansPro.txt │ │ ├── SourceSansPro-Bold │ │ │ ├── SourceSansPro-Bold.eot │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ └── SourceSansPro-Bold.woff │ │ ├── SourceSansPro-Regular │ │ │ ├── SourceSansPro-Regular.eot │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Regular.woff │ │ ├── SourceSansPro-Semibold │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ └── SourceSansPro-Semibold.woff │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── images │ │ ├── caret.png │ │ ├── default-logo.png │ │ ├── favicon.png │ │ └── icon-logo.png ├── theme-tukan │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── www │ │ └── themes │ │ └── tukan │ │ ├── LICENSE │ │ ├── assets │ │ ├── fonts │ │ │ ├── SourceSansPro-Bold │ │ │ │ ├── SourceSansPro-Bold.eot │ │ │ │ ├── SourceSansPro-Bold.otf │ │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ │ └── SourceSansPro-Bold.woff │ │ │ ├── SourceSansPro-Regular │ │ │ │ ├── SourceSansPro-Regular.eot │ │ │ │ ├── SourceSansPro-Regular.otf │ │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ │ └── SourceSansPro-Regular.woff │ │ │ ├── SourceSansPro-Semibold │ │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ │ └── SourceSansPro-Semibold.woff │ │ │ └── bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── stylesheets │ │ │ ├── _bootstrap-compass.scss │ │ │ ├── _bootstrap-mincer.scss │ │ │ ├── _bootstrap-sprockets.scss │ │ │ ├── bootstrap-dialog.less │ │ │ ├── bootstrap-select │ │ │ ├── css │ │ │ │ ├── bootstrap-select.css │ │ │ │ └── variables.css │ │ │ └── less │ │ │ │ ├── bootstrap-select.less │ │ │ │ └── variables.less │ │ │ ├── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-embed.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── _wells.scss │ │ │ └── mixins │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _progress-bar.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-overflow.scss │ │ │ │ └── _vendor-prefixes.scss │ │ │ ├── main.scss │ │ │ └── tokenizer2.scss │ │ └── build │ │ ├── css │ │ ├── bootstrap-dialog.css │ │ ├── bootstrap-select.css │ │ ├── dns-overview.css │ │ ├── jquery.bootgrid.css │ │ ├── main.css │ │ ├── nv.d3.css │ │ ├── opnsense-bootgrid.css │ │ ├── pick-a-color-1.2.3.min.css │ │ ├── tabulator.min.css │ │ └── tokenize2.css │ │ ├── fonts │ │ ├── LICENSE.SourceSansPro.txt │ │ ├── SourceSansPro-Bold │ │ │ ├── SourceSansPro-Bold.eot │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ └── SourceSansPro-Bold.woff │ │ ├── SourceSansPro-Regular │ │ │ ├── SourceSansPro-Regular.eot │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Regular.woff │ │ ├── SourceSansPro-Semibold │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ └── SourceSansPro-Semibold.woff │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── images │ │ ├── caret.png │ │ ├── default-logo.png │ │ ├── favicon.png │ │ └── icon-logo.svg └── theme-vicuna │ ├── Makefile │ ├── pkg-descr │ └── src │ └── opnsense │ └── www │ └── themes │ └── vicuna │ ├── LICENSE │ ├── assets │ ├── fonts │ │ ├── SourceSansPro-Bold │ │ │ ├── SourceSansPro-Bold.eot │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ └── SourceSansPro-Bold.woff │ │ ├── SourceSansPro-Regular │ │ │ ├── SourceSansPro-Regular.eot │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── SourceSansPro-Regular.woff │ │ ├── SourceSansPro-Semibold │ │ │ ├── SourceSansPro-Semibold.eot │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ ├── SourceSansPro-Semibold.ttf │ │ │ └── SourceSansPro-Semibold.woff │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ └── stylesheets │ │ ├── _bootstrap-compass.scss │ │ ├── _bootstrap-mincer.scss │ │ ├── _bootstrap-sprockets.scss │ │ ├── bootstrap-dialog.less │ │ ├── bootstrap-select.scss │ │ ├── bootstrap-select │ │ ├── css │ │ │ ├── bootstrap-select.css │ │ │ └── variables.css │ │ └── less │ │ │ ├── bootstrap-select.less │ │ │ └── variables.less │ │ ├── bootstrap │ │ ├── _alerts.scss │ │ ├── _badges.scss │ │ ├── _breadcrumbs.scss │ │ ├── _button-groups.scss │ │ ├── _buttons.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _component-animations.scss │ │ ├── _dropdowns.scss │ │ ├── _forms.scss │ │ ├── _glyphicons.scss │ │ ├── _grid.scss │ │ ├── _input-groups.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _navbar.scss │ │ ├── _navs.scss │ │ ├── _normalize.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _popovers.scss │ │ ├── _print.scss │ │ ├── _progress-bars.scss │ │ ├── _responsive-embed.scss │ │ ├── _responsive-utilities.scss │ │ ├── _scaffolding.scss │ │ ├── _tables.scss │ │ ├── _theme.scss │ │ ├── _thumbnails.scss │ │ ├── _tooltip.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── _wells.scss │ │ └── mixins │ │ │ ├── _alerts.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _buttons.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _image.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _opacity.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _resize.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-overflow.scss │ │ │ └── _vendor-prefixes.scss │ │ ├── dashboard.scss │ │ ├── dns-overview.scss │ │ ├── main.scss │ │ └── tokenizer2.scss │ └── build │ ├── css │ ├── bootstrap-dialog.css │ ├── bootstrap-select.css │ ├── dashboard.css │ ├── dns-overview.css │ ├── jquery.bootgrid.css │ ├── main.css │ ├── nv.d3.css │ ├── opnsense-bootgrid.css │ ├── pick-a-color-1.2.3.min.css │ ├── tabulator.min.css │ └── tokenize2.css │ ├── fonts │ ├── LICENSE.SourceSansPro.txt │ ├── SourceSansPro-Bold │ │ ├── SourceSansPro-Bold.eot │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-Bold.ttf │ │ └── SourceSansPro-Bold.woff │ ├── SourceSansPro-Regular │ │ ├── SourceSansPro-Regular.eot │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Regular.ttf │ │ └── SourceSansPro-Regular.woff │ ├── SourceSansPro-Semibold │ │ ├── SourceSansPro-Semibold.eot │ │ ├── SourceSansPro-Semibold.otf │ │ ├── SourceSansPro-Semibold.ttf │ │ └── SourceSansPro-Semibold.woff │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── images │ ├── caret.png │ ├── default-logo.png │ ├── favicon.png │ └── icon-logo.svg ├── net-mgmt ├── collectd │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── collectd.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Collectd │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Collectd │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Collectd │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Collectd │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_collectd.conf │ │ └── templates │ │ └── OPNsense │ │ └── Collectd │ │ ├── +TARGETS │ │ ├── collectd │ │ └── collectd.conf ├── lldpd │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── lldpd.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Lldpd │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Lldpd │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Lldpd │ │ │ └── general.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_lldpd.conf │ │ └── templates │ │ └── OPNsense │ │ └── Lldpd │ │ ├── +TARGETS │ │ ├── lldpd │ │ └── lldpd.conf ├── net-snmp │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── netsnmp.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Netsnmp │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── UserController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditNetsnmpUser.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Netsnmp │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── User.php │ │ │ │ └── User.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Netsnmp │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Netsnmp │ │ │ ├── distro.sh │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_netsnmp.conf │ │ └── templates │ │ └── OPNsense │ │ └── Netsnmp │ │ ├── +TARGETS │ │ ├── snmpd │ │ ├── snmpd.conf │ │ └── snmpd_usercredentials.conf ├── netdata │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── netdata.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Netdata │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Netdata │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Netdata │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Netdata │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_netdata.conf │ │ └── templates │ │ └── OPNsense │ │ └── Netdata │ │ ├── +TARGETS │ │ ├── netdata │ │ └── netdata.conf ├── nrpe │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── nrpe.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Nrpe │ │ │ │ ├── Api │ │ │ │ ├── CommandController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditNrpeCommand.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Nrpe │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Command.php │ │ │ │ ├── Command.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Nrpe │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Nrpe │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_nrpe.conf │ │ └── templates │ │ └── OPNsense │ │ └── Nrpe │ │ ├── +TARGETS │ │ ├── nrpe │ │ ├── nrpe.cfg │ │ └── nrpe_commands.cfg ├── telegraf │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── telegraf.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Telegraf │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ ├── InputController.php │ │ │ │ ├── KeyController.php │ │ │ │ ├── OutputController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── InputController.php │ │ │ │ ├── OutputController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditTelegrafKey.xml │ │ │ │ ├── general.xml │ │ │ │ ├── input.xml │ │ │ │ └── output.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Telegraf │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Input.php │ │ │ │ ├── Input.xml │ │ │ │ ├── Key.php │ │ │ │ ├── Key.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Output.php │ │ │ │ └── Output.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Telegraf │ │ │ ├── general.volt │ │ │ ├── input.volt │ │ │ └── output.volt │ │ ├── scripts │ │ ├── OPNsense │ │ │ └── Telegraf │ │ │ │ └── setup.sh │ │ └── syslog │ │ │ └── logformats │ │ │ └── telegraf.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_telegraf.conf │ │ └── templates │ │ └── OPNsense │ │ └── Telegraf │ │ ├── +TARGETS │ │ ├── telegraf │ │ └── telegraf.conf ├── zabbix-agent │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── zabbixagent.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── ZabbixAgent │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ ├── dialogAlias.xml │ │ │ │ ├── dialogUserparameter.xml │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── ZabbixAgent │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── ZabbixAgent.php │ │ │ │ └── ZabbixAgent.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── ZabbixAgent │ │ │ └── index.volt │ │ ├── scripts │ │ ├── OPNsense │ │ │ └── ZabbixAgent │ │ │ │ └── setup.sh │ │ └── syslog │ │ │ └── logformats │ │ │ └── zabbix_agentd.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_zabbixagent.conf │ │ └── templates │ │ └── OPNsense │ │ └── ZabbixAgent │ │ ├── +TARGETS │ │ ├── rc.conf.d │ │ ├── sudo_rules │ │ ├── zabbix_agent.psk │ │ └── zabbix_agentd.conf └── zabbix-proxy │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── zabbixproxy.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Zabbixproxy │ │ │ ├── Api │ │ │ ├── GeneralController.php │ │ │ └── ServiceController.php │ │ │ ├── GeneralController.php │ │ │ └── forms │ │ │ └── general.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── Zabbixproxy │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── General.php │ │ │ ├── General.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── OPNsense │ │ └── Zabbixproxy │ │ └── general.volt │ ├── scripts │ ├── OPNsense │ │ └── Zabbixproxy │ │ │ └── setup.sh │ └── syslog │ │ └── logformats │ │ └── zabbix_proxy.py │ └── service │ ├── conf │ └── actions.d │ │ └── actions_zabbixproxy.conf │ └── templates │ └── OPNsense │ └── Zabbixproxy │ ├── +TARGETS.in │ ├── zabbix_proxy │ ├── zabbix_proxy.conf.in │ └── zabbix_proxy.psk ├── net ├── chrony │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── chrony.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Chrony │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Chrony │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Chrony │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Chrony │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_chrony.conf │ │ └── templates │ │ └── OPNsense │ │ └── Chrony │ │ ├── +TARGETS │ │ ├── chrony.conf │ │ └── chronyd ├── freeradius │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── freeradius.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Freeradius │ │ │ │ ├── Api │ │ │ │ ├── AvpairController.php │ │ │ │ ├── ClientController.php │ │ │ │ ├── DhcpController.php │ │ │ │ ├── EapController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── LdapController.php │ │ │ │ ├── LdapgroupController.php │ │ │ │ ├── LeaseController.php │ │ │ │ ├── ProxyController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── UserController.php │ │ │ │ ├── ClientController.php │ │ │ │ ├── DhcpController.php │ │ │ │ ├── EapController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── LdapController.php │ │ │ │ ├── LdapgroupController.php │ │ │ │ ├── LeaseController.php │ │ │ │ ├── ProxyController.php │ │ │ │ ├── UserController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditFreeRADIUSAvpair.xml │ │ │ │ ├── dialogEditFreeRADIUSClient.xml │ │ │ │ ├── dialogEditFreeRADIUSDhcp.xml │ │ │ │ ├── dialogEditFreeRADIUSHomeserver.xml │ │ │ │ ├── dialogEditFreeRADIUSHomeserverpool.xml │ │ │ │ ├── dialogEditFreeRADIUSLdapgroup.xml │ │ │ │ ├── dialogEditFreeRADIUSLease.xml │ │ │ │ ├── dialogEditFreeRADIUSRealm.xml │ │ │ │ ├── dialogEditFreeRADIUSUser.xml │ │ │ │ ├── eap.xml │ │ │ │ ├── general.xml │ │ │ │ └── ldap.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Freeradius │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Avpair.php │ │ │ │ ├── Avpair.xml │ │ │ │ ├── Client.php │ │ │ │ ├── Client.xml │ │ │ │ ├── Dhcp.php │ │ │ │ ├── Dhcp.xml │ │ │ │ ├── Eap.php │ │ │ │ ├── Eap.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Ldap.php │ │ │ │ ├── Ldap.xml │ │ │ │ ├── Ldapgroup.php │ │ │ │ ├── Ldapgroup.xml │ │ │ │ ├── Lease.php │ │ │ │ ├── Lease.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Proxy.php │ │ │ │ ├── Proxy.xml │ │ │ │ ├── User.php │ │ │ │ └── User.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Freeradius │ │ │ ├── client.volt │ │ │ ├── dhcp.volt │ │ │ ├── eap.volt │ │ │ ├── general.volt │ │ │ ├── ldap.volt │ │ │ ├── ldapgroup.volt │ │ │ ├── lease.volt │ │ │ ├── proxy.volt │ │ │ └── user.volt │ │ ├── scripts │ │ ├── Freeradius │ │ │ ├── generate_certs.php │ │ │ └── setup.sh │ │ └── syslog │ │ │ └── logformats │ │ │ └── freeradius.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_freeradius.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Freeradius │ │ ├── +TARGETS │ │ ├── clients.conf │ │ ├── dictionary │ │ ├── mac2ip │ │ ├── mods-enabled-counter │ │ ├── mods-enabled-dhcp_sqlippool │ │ ├── mods-enabled-eap │ │ ├── mods-enabled-ldap │ │ ├── mods-enabled-mac2ip │ │ ├── mods-enabled-sql │ │ ├── mods-enabled-sqlippool │ │ ├── proxy.conf │ │ ├── queries.conf │ │ ├── queries2.conf │ │ ├── radiusd │ │ ├── radiusd.conf │ │ ├── sites-enabled-check-eap-tls │ │ ├── sites-enabled-default │ │ ├── sites-enabled-dhcp │ │ ├── sites-enabled-inner-tunnel │ │ └── users │ │ └── Syslog │ │ └── local │ │ └── radius.conf ├── frr │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── frr.inc │ │ ├── rc.carp_service_status.d │ │ │ ├── carp_frr_ospf │ │ │ └── carp_frr_ospf6 │ │ └── rc.syshook.d │ │ │ ├── carp │ │ │ └── 50-frr │ │ │ └── start │ │ │ └── 50-frr │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Quagga │ │ │ │ ├── Api │ │ │ │ ├── BfdController.php │ │ │ │ ├── BgpController.php │ │ │ │ ├── DiagnosticsController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── Ospf6settingsController.php │ │ │ │ ├── OspfsettingsController.php │ │ │ │ ├── RipController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── StaticController.php │ │ │ │ ├── BfdController.php │ │ │ │ ├── BgpController.php │ │ │ │ ├── DiagnosticsController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── Ospf6Controller.php │ │ │ │ ├── OspfController.php │ │ │ │ ├── RipController.php │ │ │ │ ├── StaticController.php │ │ │ │ └── forms │ │ │ │ ├── bfd.xml │ │ │ │ ├── bgp.xml │ │ │ │ ├── dialogEditBFDNeighbor.xml │ │ │ │ ├── dialogEditBGPASPath.xml │ │ │ │ ├── dialogEditBGPCommunityLists.xml │ │ │ │ ├── dialogEditBGPNeighbor.xml │ │ │ │ ├── dialogEditBGPPeergroups.xml │ │ │ │ ├── dialogEditBGPPrefixLists.xml │ │ │ │ ├── dialogEditBGPRouteMaps.xml │ │ │ │ ├── dialogEditOSPF6Interface.xml │ │ │ │ ├── dialogEditOSPF6Network.xml │ │ │ │ ├── dialogEditOSPF6PrefixLists.xml │ │ │ │ ├── dialogEditOSPF6RouteMaps.xml │ │ │ │ ├── dialogEditOSPFArea.xml │ │ │ │ ├── dialogEditOSPFInterface.xml │ │ │ │ ├── dialogEditOSPFNeighbor.xml │ │ │ │ ├── dialogEditOSPFNetwork.xml │ │ │ │ ├── dialogEditOSPFPrefixLists.xml │ │ │ │ ├── dialogEditOSPFRouteMaps.xml │ │ │ │ ├── dialogEditRedistribution.xml │ │ │ │ ├── dialogEditSTATICRoute.xml │ │ │ │ ├── general.xml │ │ │ │ ├── ospf.xml │ │ │ │ ├── ospf6.xml │ │ │ │ ├── rip.xml │ │ │ │ └── static.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Quagga │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── BFD.php │ │ │ │ ├── BFD.xml │ │ │ │ ├── BGP.php │ │ │ │ ├── BGP.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Migrations │ │ │ │ ├── M1_0_2.php │ │ │ │ └── M1_1_0.php │ │ │ │ ├── OSPF.php │ │ │ │ ├── OSPF.xml │ │ │ │ ├── OSPF6.php │ │ │ │ ├── OSPF6.xml │ │ │ │ ├── RIP.php │ │ │ │ ├── RIP.xml │ │ │ │ ├── STATICd.php │ │ │ │ └── STATICd.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Quagga │ │ │ ├── bfd.volt │ │ │ ├── bgp.volt │ │ │ ├── diagnostics.volt │ │ │ ├── general.volt │ │ │ ├── isis.volt │ │ │ ├── ospf.volt │ │ │ ├── ospf6.volt │ │ │ ├── rip.volt │ │ │ └── static.volt │ │ ├── scripts │ │ └── frr │ │ │ ├── carp_event_handler │ │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── events │ │ │ │ ├── __init__.py │ │ │ │ ├── ospf6d.py │ │ │ │ └── ospfd.py │ │ │ ├── register_sas │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_quagga.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Quagga │ │ ├── +TARGETS │ │ ├── bfdd.conf │ │ ├── bgpd.conf │ │ ├── frr │ │ ├── frr.conf │ │ ├── ospf6d.conf │ │ ├── ospf6d_carp.conf │ │ ├── ospfd.conf │ │ ├── ospfd_carp.conf │ │ ├── ripd.conf │ │ ├── sa_policies.conf │ │ ├── staticd.conf │ │ ├── syslog-ng-frr-events.conf │ │ ├── vtysh.conf │ │ └── zebra.conf │ │ └── Syslog │ │ └── local │ │ └── routing_frr.conf ├── ftp-proxy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── ftpproxy.inc │ │ └── rc.d │ │ │ └── os-ftp-proxy │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── FtpProxy │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── ItemController.php │ │ │ │ └── forms │ │ │ │ └── dialogEdit.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── FtpProxy │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── FtpProxy.php │ │ │ │ ├── FtpProxy.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── FtpProxy │ │ │ └── index.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_ftpproxy.conf │ │ └── templates │ │ └── OPNsense │ │ └── FtpProxy │ │ ├── +TARGETS │ │ └── rc.conf.d ├── google-cloud-sdk │ ├── Makefile │ └── pkg-descr ├── haproxy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── haproxy.inc │ │ └── rc.syshook.d │ │ │ ├── start │ │ │ └── 50-haproxy │ │ │ └── stop │ │ │ └── 50-haproxy │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── HAProxy │ │ │ │ ├── Api │ │ │ │ ├── ExportController.php │ │ │ │ ├── MaintenanceController.php │ │ │ │ ├── ServiceController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── StatisticsController.php │ │ │ │ ├── ExportController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── MaintenanceController.php │ │ │ │ ├── StatisticsController.php │ │ │ │ └── forms │ │ │ │ ├── dialogAcl.xml │ │ │ │ ├── dialogAction.xml │ │ │ │ ├── dialogBackend.xml │ │ │ │ ├── dialogCpu.xml │ │ │ │ ├── dialogErrorfile.xml │ │ │ │ ├── dialogFcgi.xml │ │ │ │ ├── dialogFrontend.xml │ │ │ │ ├── dialogGroup.xml │ │ │ │ ├── dialogHealthcheck.xml │ │ │ │ ├── dialogLua.xml │ │ │ │ ├── dialogMailer.xml │ │ │ │ ├── dialogMapfile.xml │ │ │ │ ├── dialogResolver.xml │ │ │ │ ├── dialogServer.xml │ │ │ │ ├── dialogUser.xml │ │ │ │ ├── generalCache.xml │ │ │ │ ├── generalDefaults.xml │ │ │ │ ├── generalLogging.xml │ │ │ │ ├── generalPeers.xml │ │ │ │ ├── generalSettings.xml │ │ │ │ ├── generalStats.xml │ │ │ │ ├── generalTuning.xml │ │ │ │ └── maintenanceCronjobs.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── HAProxy │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── HAProxy.php │ │ │ │ ├── HAProxy.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ └── Migrations │ │ │ │ ├── M2_0_0.php │ │ │ │ ├── M2_3_0.php │ │ │ │ ├── M2_6_0.php │ │ │ │ ├── M2_7_0.php │ │ │ │ ├── M2_8_0.php │ │ │ │ ├── M3_0_0.php │ │ │ │ ├── M3_1_0.php │ │ │ │ ├── M3_3_0.php │ │ │ │ ├── M3_5_0.php │ │ │ │ ├── M4_0_0.php │ │ │ │ └── M4_1_0.php │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── HAProxy │ │ │ ├── export.volt │ │ │ ├── index.volt │ │ │ ├── maintenance.volt │ │ │ └── statistics.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── HAProxy │ │ │ ├── exportCerts.php │ │ │ ├── exportErrorFiles.php │ │ │ ├── exportLuaScripts.php │ │ │ ├── exportMapFiles.php │ │ │ ├── queryStats.php │ │ │ ├── rc-wrapper.sh │ │ │ ├── setup.sh │ │ │ ├── socketCommand.py │ │ │ └── syncCerts.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_haproxy.conf │ │ └── templates │ │ └── OPNsense │ │ ├── HAProxy │ │ ├── +TARGETS │ │ ├── haproxy.conf │ │ ├── log_socket.conf │ │ ├── rc.conf.d │ │ └── sslCerts.yaml │ │ └── Syslog │ │ └── local │ │ └── haproxy.conf ├── igmp-proxy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── igmpproxy.inc │ │ ├── opnsense │ │ └── mvc │ │ │ └── app │ │ │ └── models │ │ │ └── OPNsense │ │ │ └── IGMPProxy │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── www │ │ ├── services_igmpproxy.php │ │ └── services_igmpproxy_edit.php ├── mdns-repeater │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── mdnsrepeater.inc │ │ └── rc.syshook.d │ │ │ └── carp │ │ │ └── 50-mdns │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── MDNSRepeater │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── MDNSRepeater │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── MDNSRepeater.php │ │ │ │ ├── MDNSRepeater.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── MDNSRepeater │ │ │ └── index.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_mdnsrepeater.conf │ │ └── templates │ │ └── OPNsense │ │ └── MDNSRepeater │ │ ├── +TARGETS │ │ └── mdnsrepeater ├── ndp-proxy-go │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── ndpproxy.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── NdpProxy │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── NdpProxy │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── NdpProxy.php │ │ │ │ └── NdpProxy.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── NdpProxy │ │ │ └── general.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_ndpproxy.conf │ │ └── templates │ │ └── OPNsense │ │ ├── NdpProxy │ │ ├── +TARGETS │ │ └── ndp_proxy_go │ │ └── Syslog │ │ └── local │ │ └── ndpproxy.conf ├── ndproxy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── ndproxy.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Ndproxy │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Ndproxy │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Ndproxy.php │ │ │ │ └── Ndproxy.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Ndproxy │ │ │ └── general.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_ndproxy.conf │ │ └── templates │ │ └── OPNsense │ │ └── Ndproxy │ │ ├── +TARGETS │ │ └── rc.conf.d │ │ └── ndproxy ├── ntopng │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── ntopng.inc │ │ └── rc.syshook.d │ │ │ └── start │ │ │ └── 50-ntopng │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Ntopng │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Ntopng │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Ntopng │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Ntopng │ │ │ ├── generate_certs.php │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_ntopng.conf │ │ └── templates │ │ └── OPNsense │ │ └── Ntopng │ │ ├── +TARGETS │ │ ├── ntopng │ │ └── ntopng.conf ├── radsecproxy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── radsecproxy.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── RadSecProxy │ │ │ │ ├── Api │ │ │ │ ├── ClientsController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── RealmsController.php │ │ │ │ ├── RewritesController.php │ │ │ │ ├── ServersController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── TlsController.php │ │ │ │ ├── ClientsController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── RealmsController.php │ │ │ │ ├── RewritesController.php │ │ │ │ ├── ServersController.php │ │ │ │ ├── TlsController.php │ │ │ │ └── forms │ │ │ │ ├── dialogClient.xml │ │ │ │ ├── dialogRealm.xml │ │ │ │ ├── dialogRewrite.xml │ │ │ │ ├── dialogServer.xml │ │ │ │ ├── dialogTls.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── RadSecProxy │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── RadSecProxy.php │ │ │ │ └── RadSecProxy.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── RadSecProxy │ │ │ ├── clients.volt │ │ │ ├── general.volt │ │ │ ├── realms.volt │ │ │ ├── rewrites.volt │ │ │ ├── servers.volt │ │ │ └── tls.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── RadSecProxy │ │ │ ├── generate_certs.php │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_radsecproxy.conf │ │ └── templates │ │ └── OPNsense │ │ ├── RadSecProxy │ │ ├── +TARGETS │ │ ├── radsecproxy.conf │ │ └── rc.conf.d │ │ └── Syslog │ │ └── local │ │ └── radsecproxy.conf ├── realtek-re │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── etc │ │ └── rc.loader.d │ │ └── 50-realtek-re ├── relayd │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── relayd.inc │ │ └── rc.d │ │ │ └── os-relayd │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Relayd │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── StatusController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── StatusController.php │ │ │ │ └── forms │ │ │ │ ├── general.xml │ │ │ │ ├── host.xml │ │ │ │ ├── protocol.xml │ │ │ │ ├── table.xml │ │ │ │ ├── tablecheck.xml │ │ │ │ └── virtualserver.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Relayd │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Migrations │ │ │ │ ├── M1_0_0.php │ │ │ │ ├── M1_0_2.php │ │ │ │ └── M1_0_5.php │ │ │ │ ├── Relayd.php │ │ │ │ └── Relayd.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Relayd │ │ │ ├── index.volt │ │ │ └── status.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_relayd.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Relayd │ │ ├── +TARGETS │ │ ├── rc.conf.d │ │ └── relayd.conf │ │ └── Syslog │ │ └── local │ │ └── relayd.conf ├── shadowsocks │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── shadowsocks.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Shadowsocks │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ ├── LocalController.php │ │ │ │ ├── LocalserviceController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── LocalController.php │ │ │ │ └── forms │ │ │ │ ├── general.xml │ │ │ │ └── local.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Shadowsocks │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Local.php │ │ │ │ ├── Local.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Shadowsocks │ │ │ ├── general.volt │ │ │ └── local.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ ├── actions_shadowsocks.conf │ │ │ └── actions_shadowsockslocal.conf │ │ └── templates │ │ └── OPNsense │ │ └── Shadowsocks │ │ ├── +TARGETS │ │ ├── config.json │ │ ├── local.json │ │ ├── sslocal │ │ └── ssserver ├── siproxd │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── siproxd.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Siproxd │ │ │ │ ├── Api │ │ │ │ ├── DomainController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── UserController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditSiproxdDomain.xml │ │ │ │ ├── dialogEditSiproxdUser.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Siproxd │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Domain.php │ │ │ │ ├── Domain.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── User.php │ │ │ │ └── User.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Siproxd │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Siproxd │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_siproxd.conf │ │ └── templates │ │ └── OPNsense │ │ └── Siproxd │ │ ├── +TARGETS │ │ ├── siproxd │ │ ├── siproxd.conf │ │ └── siproxd_passwd.cfg ├── sslh │ ├── CHANGELOG.md │ ├── DEVELOPMENT.md │ ├── Makefile │ ├── README.md │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── sslh.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Sslh │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── forms │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Sslh │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Settings.php │ │ │ │ └── Settings.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Sslh │ │ │ └── settings.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_sslh.conf │ │ └── templates │ │ └── OPNsense │ │ └── Sslh │ │ ├── +TARGETS │ │ ├── sslh.conf.jinja │ │ └── sslh.jinja ├── tayga │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── tayga.inc │ │ └── rc.d │ │ │ └── opnsense-tayga │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Tayga │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ ├── MappingController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditStaticMapping.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Tayga │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── StaticMapping.php │ │ │ │ └── StaticMapping.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Tayga │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Tayga │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_tayga.conf │ │ └── templates │ │ └── OPNsense │ │ └── Tayga │ │ ├── +TARGETS │ │ ├── tayga │ │ └── tayga.conf ├── turnserver │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── turnserver.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Turnserver │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Turnserver │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Turnserver.php │ │ │ │ └── Turnserver.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Turnserver │ │ │ └── index.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Turnserver │ │ │ └── export_certs.php │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_turnserver.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Syslog │ │ └── local │ │ │ └── turnserver.conf │ │ └── Turnserver │ │ ├── +TARGETS │ │ ├── rc.conf.d │ │ └── turnserver.conf ├── udpbroadcastrelay │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── udpbroadcastrelay.inc │ │ └── rc.d │ │ │ └── os-udpbroadcastrelay │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── UDPBroadcastRelay │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ └── dialogEdit.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── UDPBroadcastRelay │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── UDPBroadcastRelay.php │ │ │ │ └── UDPBroadcastRelay.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── UDPBroadcastRelay │ │ │ └── index.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_udpbroadcastrelay.conf │ │ └── templates │ │ └── OPNsense │ │ └── UDPBroadcastRelay │ │ ├── +TARGETS │ │ └── rc.conf.d ├── upnp │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── miniupnpd.inc │ │ ├── opnsense │ │ └── mvc │ │ │ └── app │ │ │ └── models │ │ │ └── OPNsense │ │ │ └── UPnP │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── www │ │ ├── services_upnp.php │ │ └── status_upnp.php ├── vnstat │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── vnstat.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Vnstat │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Vnstat │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Vnstat │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Vnstat │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_vnstat.conf │ │ └── templates │ │ └── OPNsense │ │ └── Vnstat │ │ ├── +TARGETS │ │ ├── vnstat │ │ └── vnstat.conf ├── wol │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── wol.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Wol │ │ │ │ ├── Api │ │ │ │ └── WolController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ ├── host.xml │ │ │ │ └── wake.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Wol │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Wol.php │ │ │ │ └── Wol.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Wol │ │ │ └── index.volt │ │ ├── service │ │ └── conf │ │ │ └── actions.d │ │ │ └── actions_wol.conf │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── Metadata │ │ └── WakeOnLan.xml │ │ └── WakeOnLan.js └── zerotier │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── zerotier.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Zerotier │ │ │ ├── Api │ │ │ ├── NetworkController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ ├── OverviewController.php │ │ │ └── forms │ │ │ ├── dialogNetwork.xml │ │ │ └── settings.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── Zerotier │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Menu │ │ │ └── Menu.xml │ │ │ ├── Zerotier.php │ │ │ └── Zerotier.xml │ │ └── views │ │ └── OPNsense │ │ └── Zerotier │ │ ├── index.volt │ │ └── overview.volt │ └── service │ ├── conf │ └── actions.d │ │ └── actions_zerotier.conf │ └── templates │ └── OPNsense │ └── zerotier │ ├── +TARGETS │ ├── local.conf │ └── zerotier ├── security ├── acme-client │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── acmeclient.inc │ │ └── rc.d │ │ │ └── acme_http_challenge │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── AcmeClient │ │ │ │ ├── AccountsController.php │ │ │ │ ├── ActionsController.php │ │ │ │ ├── Api │ │ │ │ ├── AccountsController.php │ │ │ │ ├── ActionsController.php │ │ │ │ ├── CertificatesController.php │ │ │ │ ├── ServiceController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── ValidationsController.php │ │ │ │ ├── CertificatesController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── LogsController.php │ │ │ │ ├── ValidationsController.php │ │ │ │ └── forms │ │ │ │ ├── dialogAccount.xml │ │ │ │ ├── dialogAction.xml │ │ │ │ ├── dialogCertificate.xml │ │ │ │ ├── dialogValidation.xml │ │ │ │ └── settings.xml │ │ │ ├── library │ │ │ └── OPNsense │ │ │ │ └── AcmeClient │ │ │ │ ├── LeAccount.php │ │ │ │ ├── LeAutomation │ │ │ │ ├── AcmeFritzbox.php │ │ │ │ ├── AcmePanos.php │ │ │ │ ├── AcmeProxmoxbs.php │ │ │ │ ├── AcmeProxmoxve.php │ │ │ │ ├── AcmeSynologyDsm.php │ │ │ │ ├── AcmeTruenas.php │ │ │ │ ├── AcmeUnifi.php │ │ │ │ ├── AcmeVault.php │ │ │ │ ├── Base.php │ │ │ │ ├── ConfigdGeneric.php │ │ │ │ ├── ConfigdReloadCaddy.php │ │ │ │ ├── ConfigdRemoteSsh.php │ │ │ │ ├── ConfigdRestartGui.php │ │ │ │ ├── ConfigdRestartHaproxy.php │ │ │ │ ├── ConfigdRestartNginx.php │ │ │ │ └── ConfigdUploadSftp.php │ │ │ │ ├── LeAutomationFactory.php │ │ │ │ ├── LeAutomationInterface.php │ │ │ │ ├── LeCertificate.php │ │ │ │ ├── LeCommon.php │ │ │ │ ├── LeUtils.php │ │ │ │ ├── LeValidation │ │ │ │ ├── Base.php │ │ │ │ ├── Dns1984hosting.php │ │ │ │ ├── DnsAcmedns.php │ │ │ │ ├── DnsAcmeproxy.php │ │ │ │ ├── DnsActive24.php │ │ │ │ ├── DnsAd.php │ │ │ │ ├── DnsAli.php │ │ │ │ ├── DnsArtfiles.php │ │ │ │ ├── DnsArvan.php │ │ │ │ ├── DnsAurora.php │ │ │ │ ├── DnsAutodns.php │ │ │ │ ├── DnsAws.php │ │ │ │ ├── DnsAzure.php │ │ │ │ ├── DnsBunny.php │ │ │ │ ├── DnsCf.php │ │ │ │ ├── DnsCloudns.php │ │ │ │ ├── DnsCn.php │ │ │ │ ├── DnsConoha.php │ │ │ │ ├── DnsConstellix.php │ │ │ │ ├── DnsCpanel.php │ │ │ │ ├── DnsCx.php │ │ │ │ ├── DnsCyon.php │ │ │ │ ├── DnsDa.php │ │ │ │ ├── DnsDdnss.php │ │ │ │ ├── DnsDesec.php │ │ │ │ ├── DnsDgon.php │ │ │ │ ├── DnsDnsexit.php │ │ │ │ ├── DnsDnshome.php │ │ │ │ ├── DnsDnsimple.php │ │ │ │ ├── DnsDnsservices.php │ │ │ │ ├── DnsDo.php │ │ │ │ ├── DnsDoapi.php │ │ │ │ ├── DnsDomeneshop.php │ │ │ │ ├── DnsDp.php │ │ │ │ ├── DnsDreamhost.php │ │ │ │ ├── DnsDuckdns.php │ │ │ │ ├── DnsDyn.php │ │ │ │ ├── DnsDynu.php │ │ │ │ ├── DnsDynv6.php │ │ │ │ ├── DnsEasydns.php │ │ │ │ ├── DnsEuserv.php │ │ │ │ ├── DnsExoscale.php │ │ │ │ ├── DnsFornex.php │ │ │ │ ├── DnsFreedns.php │ │ │ │ ├── DnsGandiLivedns.php │ │ │ │ ├── DnsGcloud.php │ │ │ │ ├── DnsGd.php │ │ │ │ ├── DnsGdnsdk.php │ │ │ │ ├── DnsGoogledomains.php │ │ │ │ ├── DnsHe.php │ │ │ │ ├── DnsHetzner.php │ │ │ │ ├── DnsHetznercloud.php │ │ │ │ ├── DnsHexonet.php │ │ │ │ ├── DnsHostingde.php │ │ │ │ ├── DnsInfoblox.php │ │ │ │ ├── DnsInfomaniak.php │ │ │ │ ├── DnsInternetbs.php │ │ │ │ ├── DnsInwx.php │ │ │ │ ├── DnsIonos.php │ │ │ │ ├── DnsIpv64.php │ │ │ │ ├── DnsIspconfig.php │ │ │ │ ├── DnsJd.php │ │ │ │ ├── DnsJoker.php │ │ │ │ ├── DnsKas.php │ │ │ │ ├── DnsKinghost.php │ │ │ │ ├── DnsKnot.php │ │ │ │ ├── DnsLeaseweb.php │ │ │ │ ├── DnsLexicon.php │ │ │ │ ├── DnsLimacity.php │ │ │ │ ├── DnsLinode.php │ │ │ │ ├── DnsLinodeV4.php │ │ │ │ ├── DnsLoopia.php │ │ │ │ ├── DnsLua.php │ │ │ │ ├── DnsMe.php │ │ │ │ ├── DnsMiab.php │ │ │ │ ├── DnsMijnhost.php │ │ │ │ ├── DnsMydnsjp.php │ │ │ │ ├── DnsMythicBeasts.php │ │ │ │ ├── DnsNamecheap.php │ │ │ │ ├── DnsNamecom.php │ │ │ │ ├── DnsNamesilo.php │ │ │ │ ├── DnsNederhost.php │ │ │ │ ├── DnsNetcup.php │ │ │ │ ├── DnsNic.php │ │ │ │ ├── DnsNjalla.php │ │ │ │ ├── DnsNsone.php │ │ │ │ ├── DnsNsupdate.php │ │ │ │ ├── DnsOci.php │ │ │ │ ├── DnsOnline.php │ │ │ │ ├── DnsOpnsense.php │ │ │ │ ├── DnsOvh.php │ │ │ │ ├── DnsPdns.php │ │ │ │ ├── DnsPleskxml.php │ │ │ │ ├── DnsPointhq.php │ │ │ │ ├── DnsPorkbun.php │ │ │ │ ├── DnsRackspace.php │ │ │ │ ├── DnsRage4.php │ │ │ │ ├── DnsRegru.php │ │ │ │ ├── DnsScaleway.php │ │ │ │ ├── DnsSchlundtech.php │ │ │ │ ├── DnsSelectel.php │ │ │ │ ├── DnsSelfhost.php │ │ │ │ ├── DnsServercow.php │ │ │ │ ├── DnsSimply.php │ │ │ │ ├── DnsTransip.php │ │ │ │ ├── DnsUdr.php │ │ │ │ ├── DnsUnoeuro.php │ │ │ │ ├── DnsVariomedia.php │ │ │ │ ├── DnsVscale.php │ │ │ │ ├── DnsVultr.php │ │ │ │ ├── DnsWebsupport.php │ │ │ │ ├── DnsWorld4you.php │ │ │ │ ├── DnsYandex.php │ │ │ │ ├── DnsZilore.php │ │ │ │ ├── DnsZone.php │ │ │ │ ├── DnsZoneedit.php │ │ │ │ ├── DnsZonomi.php │ │ │ │ ├── HttpHaproxy.php │ │ │ │ ├── HttpOpnsense.php │ │ │ │ └── TlsalpnAcme.php │ │ │ │ ├── LeValidationFactory.php │ │ │ │ ├── LeValidationInterface.php │ │ │ │ ├── Process.php │ │ │ │ ├── SSHKeys.php │ │ │ │ ├── SftpClient.php │ │ │ │ ├── SftpUploader.php │ │ │ │ └── Utils.php │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── AcmeClient │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── AcmeClient.php │ │ │ │ ├── AcmeClient.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ └── Migrations │ │ │ │ ├── M1_6_0.php │ │ │ │ ├── M2_0_0.php │ │ │ │ ├── M3_0_0.php │ │ │ │ ├── M3_1_0.php │ │ │ │ ├── M3_3_0.php │ │ │ │ ├── M4_0_0.php │ │ │ │ ├── M4_1_0.php │ │ │ │ └── M4_2_0.php │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── AcmeClient │ │ │ ├── accounts.volt │ │ │ ├── actions.volt │ │ │ ├── certificates.volt │ │ │ ├── logs.volt │ │ │ ├── settings.volt │ │ │ └── validations.volt │ │ ├── scripts │ │ ├── OPNsense │ │ │ └── AcmeClient │ │ │ │ ├── lecert.php │ │ │ │ ├── run_remote_ssh.php │ │ │ │ ├── setup.sh │ │ │ │ └── upload_sftp.php │ │ └── syslog │ │ │ └── logformats │ │ │ └── acmeclient.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_acmeclient.conf │ │ └── templates │ │ └── OPNsense │ │ └── AcmeClient │ │ ├── +TARGETS │ │ ├── lighttpd-acme-challenge.conf │ │ ├── rc.conf.d │ │ └── syslog-filter.conf ├── clamav │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── clamav.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── ClamAV │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── UrlController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ ├── dialogEditClamavUrl.xml │ │ │ │ ├── general.xml │ │ │ │ └── version.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── ClamAV │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Url.php │ │ │ │ └── Url.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── ClamAV │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── ClamAV │ │ │ ├── freshclam.sh │ │ │ ├── setup.sh │ │ │ └── versions.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_clamav.conf │ │ └── templates │ │ └── OPNsense │ │ ├── ClamAV │ │ ├── +TARGETS │ │ ├── clamav_clamd │ │ ├── clamav_freshclam │ │ ├── clamd.conf │ │ └── freshclam.conf │ │ └── Syslog │ │ └── local │ │ └── clamd.conf ├── crowdsec │ ├── +POST_DEINSTALL.post │ ├── +POST_INSTALL.post │ ├── +POST_INSTALL.pre │ ├── +PRE_DEINSTALL.pre │ ├── LICENSE │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── cron.d │ │ │ └── oscrowdsec.cron │ │ ├── crowdsec │ │ │ └── acquis.d │ │ │ │ └── opnsense.yaml │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── crowdsec.inc │ │ ├── rc.d │ │ │ └── oscrowdsec │ │ └── rc.syshook.d │ │ │ └── start │ │ │ └── 50-crowdsec │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── CrowdSec │ │ │ │ ├── AlertsController.php │ │ │ │ ├── Api │ │ │ │ ├── AlertsController.php │ │ │ │ ├── AppsecconfigsController.php │ │ │ │ ├── AppsecrulesController.php │ │ │ │ ├── BouncersController.php │ │ │ │ ├── CollectionsController.php │ │ │ │ ├── DecisionsController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── MachinesController.php │ │ │ │ ├── ParsersController.php │ │ │ │ ├── PostoverflowsController.php │ │ │ │ ├── ScenariosController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── VersionController.php │ │ │ │ ├── AppsecconfigsController.php │ │ │ │ ├── AppsecrulesController.php │ │ │ │ ├── BouncersController.php │ │ │ │ ├── CollectionsController.php │ │ │ │ ├── DecisionsController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── MachinesController.php │ │ │ │ ├── OverviewController.php │ │ │ │ ├── ParsersController.php │ │ │ │ ├── PostoverflowsController.php │ │ │ │ ├── ScenariosController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── library │ │ │ └── OPNsense │ │ │ │ └── CrowdSec │ │ │ │ └── Util.php │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── CrowdSec │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── CrowdSec │ │ │ ├── alerts.volt │ │ │ ├── appsecconfigs.volt │ │ │ ├── appsecrules.volt │ │ │ ├── bouncers.volt │ │ │ ├── collections.volt │ │ │ ├── decisions.volt │ │ │ ├── general.volt │ │ │ ├── machines.volt │ │ │ ├── parsers.volt │ │ │ ├── postoverflows.volt │ │ │ └── scenarios.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── CrowdSec │ │ │ ├── hub-upgrade.sh │ │ │ ├── reconfigure.py │ │ │ └── reconfigure.sh │ │ ├── service │ │ ├── conf │ │ │ └── actions.d │ │ │ │ └── actions_crowdsec.conf │ │ └── templates │ │ │ └── OPNsense │ │ │ └── CrowdSec │ │ │ ├── +TARGETS │ │ │ ├── crowdsec.rc.conf.d │ │ │ ├── crowdsec_firewall.rc.conf.d │ │ │ ├── oscrowdsec.rc.conf.d │ │ │ └── settings.json │ │ └── www │ │ └── js │ │ └── CrowdSec │ │ └── crowdsec-misc.js ├── etpro-telemetry │ ├── Makefile │ ├── README.md │ ├── pkg-descr │ ├── requires.txt │ ├── src │ │ ├── etc │ │ │ └── cron.d │ │ │ │ └── etpro-telemetry.cron │ │ └── opnsense │ │ │ ├── mvc │ │ │ └── app │ │ │ │ ├── controllers │ │ │ │ └── OPNsense │ │ │ │ │ └── Diagnostics │ │ │ │ │ └── Api │ │ │ │ │ └── ProofpointEtController.php │ │ │ │ └── models │ │ │ │ └── OPNsense │ │ │ │ └── ProofpointET │ │ │ │ └── ACL │ │ │ │ └── ACL.xml │ │ │ ├── scripts │ │ │ ├── etpro_telemetry │ │ │ │ ├── dump_data.py │ │ │ │ ├── send_heartbeat.py │ │ │ │ ├── send_telemetry.py │ │ │ │ ├── sensor_info.py │ │ │ │ └── telemetry │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── log.py │ │ │ │ │ ├── state.py │ │ │ │ │ └── system.py │ │ │ └── suricata │ │ │ │ └── metadata │ │ │ │ └── rules │ │ │ │ └── et-telemetry.xml │ │ │ ├── service │ │ │ └── conf │ │ │ │ └── actions.d │ │ │ │ └── actions_proofpoint.conf │ │ │ └── www │ │ │ ├── img │ │ │ └── proofpoint.svg │ │ │ └── js │ │ │ └── widgets │ │ │ ├── ETProTelemetry.js │ │ │ └── Metadata │ │ │ └── etpro-telemetry.xml │ └── testdata │ │ ├── log │ │ └── eve.json │ │ └── rule-updater.config ├── intrusion-detection-content-et-open │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── scripts │ │ └── suricata │ │ └── metadata │ │ └── rules │ │ └── et-open-extra.xml ├── intrusion-detection-content-et-pro │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── scripts │ │ └── suricata │ │ └── metadata │ │ └── rules │ │ └── et-pro.xml ├── intrusion-detection-content-pt-open │ ├── LICENSE │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── scripts │ │ └── suricata │ │ └── metadata │ │ └── rules │ │ └── pt-open.xml ├── intrusion-detection-content-snort-vrt │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── scripts │ │ └── suricata │ │ └── metadata │ │ └── rules │ │ └── snort-vrt.xml ├── maltrail │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── maltrail.inc │ │ └── rc.d │ │ │ ├── opnsense-maltrailsensor │ │ │ └── opnsense-maltrailserver │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Maltrail │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ ├── SensorController.php │ │ │ │ ├── ServerController.php │ │ │ │ ├── ServerserviceController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── SensorController.php │ │ │ │ ├── ServerController.php │ │ │ │ └── forms │ │ │ │ ├── general.xml │ │ │ │ ├── sensor.xml │ │ │ │ └── server.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Maltrail │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Sensor.php │ │ │ │ ├── Sensor.xml │ │ │ │ ├── Server.php │ │ │ │ └── Server.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Maltrail │ │ │ ├── general.volt │ │ │ ├── sensor.volt │ │ │ └── server.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Maltrail │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ ├── actions_maltrailsensor.conf │ │ │ └── actions_maltrailserver.conf │ │ └── templates │ │ └── OPNsense │ │ └── Maltrail │ │ ├── +TARGETS │ │ ├── maltrail.conf │ │ ├── maltrailsensor │ │ ├── maltrailserver │ │ └── user_whitelist.txt ├── netbird │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── netbird.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Netbird │ │ │ │ ├── Api │ │ │ │ ├── AuthenticationController.php │ │ │ │ ├── ServiceController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── StatusController.php │ │ │ │ ├── AuthenticationController.php │ │ │ │ ├── SettingsController.php │ │ │ │ ├── StatusController.php │ │ │ │ └── forms │ │ │ │ ├── authentication.xml │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Netbird │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Authentication.php │ │ │ │ ├── Authentication.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Settings.php │ │ │ │ ├── Settings.xml │ │ │ │ ├── Status.php │ │ │ │ └── Status.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Netbird │ │ │ ├── authentication.volt │ │ │ ├── settings.volt │ │ │ └── status.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_netbird.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Netbird │ │ ├── +TARGETS │ │ └── netbird │ │ └── Syslog │ │ └── local │ │ └── netbird.conf ├── openconnect │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── openconnect.inc │ │ └── rc.d │ │ │ └── opnsense-openconnect │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Openconnect │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Openconnect │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Openconnect │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Openconnect │ │ │ ├── generate_certs.php │ │ │ ├── setup.sh │ │ │ └── vpnc.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_openconnect.conf │ │ └── templates │ │ └── OPNsense │ │ └── Openconnect │ │ ├── +TARGETS │ │ ├── openconnect │ │ ├── openconnect.conf │ │ └── openconnect.secret ├── openvpn-legacy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── opnsense │ │ └── mvc │ │ │ └── app │ │ │ └── models │ │ │ └── OPNsense │ │ │ └── OpenVPN │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── www │ │ ├── vpn_openvpn_client.php │ │ └── vpn_openvpn_server.php ├── q-feeds-connector │ ├── +POST_INSTALL.post │ ├── Makefile │ ├── README.md │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── qfeeds.inc │ │ └── rc.syshook.d │ │ │ └── start │ │ │ └── 99-qfeeds │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── QFeeds │ │ │ │ ├── Api │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ ├── Firewall │ │ │ │ └── DynamicAliases │ │ │ │ │ └── QfeedsAliases.php │ │ │ │ └── QFeeds │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Connector.php │ │ │ │ ├── Connector.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── QFeeds │ │ │ └── index.volt │ │ ├── scripts │ │ ├── qfeeds │ │ │ ├── lib │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── file.py │ │ │ │ └── log.py │ │ │ └── qfeedsctl.py │ │ └── unbound │ │ │ └── blocklists │ │ │ └── qfeeds_bl.py │ │ ├── service │ │ ├── conf │ │ │ └── actions.d │ │ │ │ └── actions_qfeeds.conf │ │ └── templates │ │ │ └── OPNsense │ │ │ └── QFeeds │ │ │ ├── +TARGETS │ │ │ ├── qfeeds-blocklists.conf │ │ │ └── qfeeds.conf │ │ └── www │ │ ├── img │ │ └── QFeeds.png │ │ └── js │ │ └── widgets │ │ ├── Metadata │ │ └── QFeeds.xml │ │ └── QFeeds.js ├── strongswan-legacy │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── opnsense │ │ └── mvc │ │ │ └── app │ │ │ └── models │ │ │ └── OPNsense │ │ │ └── IPsecLegacy │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── www │ │ ├── vpn_ipsec_mobile.php │ │ ├── vpn_ipsec_phase1.php │ │ └── vpn_ipsec_phase2.php ├── stunnel │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── stunnel.inc │ │ └── rc.d │ │ │ └── identd_stunnel │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Stunnel │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── ServicesController.php │ │ │ │ ├── ServicesController.php │ │ │ │ └── forms │ │ │ │ ├── dialogService.xml │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Stunnel │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Stunnel.php │ │ │ │ └── Stunnel.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Stunnel │ │ │ └── services.volt │ │ ├── scripts │ │ └── stunnel │ │ │ ├── generate_certs.php │ │ │ └── identd_stunnel.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_stunnel.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Stunnel │ │ ├── +TARGETS │ │ ├── identd.rc.conf.d │ │ ├── rc.conf.d │ │ ├── stunnel.conf │ │ └── syslog-ng-stunnel-ident.conf │ │ └── Syslog │ │ └── local │ │ └── stunnel.conf ├── tailscale │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── tailscale.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Tailscale │ │ │ │ ├── Api │ │ │ │ ├── AuthenticationController.php │ │ │ │ ├── ServiceController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── StatusController.php │ │ │ │ ├── AuthenticationController.php │ │ │ │ ├── SettingsController.php │ │ │ │ ├── StatusController.php │ │ │ │ └── forms │ │ │ │ ├── authentication.xml │ │ │ │ ├── dialogSubnet4.xml │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Tailscale │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Authentication.php │ │ │ │ ├── Authentication.xml │ │ │ │ ├── FieldTypes │ │ │ │ └── ExitNodeField.php │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Settings.php │ │ │ │ ├── Settings.xml │ │ │ │ ├── Status.php │ │ │ │ └── Status.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Tailscale │ │ │ ├── authentication.volt │ │ │ ├── settings.volt │ │ │ └── status.volt │ │ ├── service │ │ ├── conf │ │ │ └── actions.d │ │ │ │ └── actions_tailscale.conf │ │ └── templates │ │ │ └── OPNsense │ │ │ └── Tailscale │ │ │ ├── +TARGETS │ │ │ └── rc.conf.d │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── Metadata │ │ └── Tailscale.xml │ │ └── Tailscale.js ├── tinc │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ ├── inc │ │ │ └── plugins.inc.d │ │ │ │ └── tinc.inc │ │ └── rc.d │ │ │ └── opnsense-tincd │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Tinc │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ ├── dialogHost.xml │ │ │ │ └── dialogNetwork.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Tinc │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Tinc.php │ │ │ │ └── Tinc.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Tinc │ │ │ └── index.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Tinc │ │ │ ├── generate_keypair.py │ │ │ ├── lib │ │ │ ├── __init__.py │ │ │ └── objects.py │ │ │ ├── list_ciphers.py │ │ │ └── tincd.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_tinc.conf │ │ └── templates │ │ └── OPNsense │ │ ├── Syslog │ │ └── local │ │ │ └── tinc.conf │ │ └── Tinc │ │ ├── +TARGETS │ │ ├── rc.conf.d │ │ └── tinc_deploy.xml ├── tor │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── tor.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Tor │ │ │ │ ├── Api │ │ │ │ ├── ExitaclController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── HiddenserviceController.php │ │ │ │ ├── HiddenserviceaclController.php │ │ │ │ ├── RelayController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── SocksaclController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ ├── acl_exitpolicy.xml │ │ │ │ ├── acl_sockspolicy.xml │ │ │ │ ├── general.xml │ │ │ │ ├── hidden_service.xml │ │ │ │ ├── hidden_service_acl.xml │ │ │ │ ├── hidservauth.xml │ │ │ │ └── relay.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Tor │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── ACLExitPolicy.php │ │ │ │ ├── ACLExitPolicy.xml │ │ │ │ ├── ACLSocksPolicy.php │ │ │ │ ├── ACLSocksPolicy.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ ├── HiddenService.php │ │ │ │ ├── HiddenService.xml │ │ │ │ ├── HiddenServiceACL.php │ │ │ │ ├── HiddenServiceACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Relay.php │ │ │ │ └── Relay.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Tor │ │ │ ├── diagnostics.volt │ │ │ ├── error.volt │ │ │ ├── general.volt │ │ │ └── info.volt │ │ ├── scripts │ │ └── tor │ │ │ ├── gen_key │ │ │ ├── get_hostnames │ │ │ ├── make_hidden_service_dirs.php │ │ │ ├── setup.sh │ │ │ ├── tor_diag │ │ │ └── tor_helper.php │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_tor.conf │ │ └── templates │ │ └── OPNsense │ │ └── Tor │ │ ├── +TARGETS │ │ ├── tor │ │ └── torrc └── wazuh-agent │ ├── +POST_DEINSTALL.post │ ├── +POST_INSTALL.post │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── wazuhagent.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── WazuhAgent │ │ │ ├── Api │ │ │ ├── ServiceController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ └── settings.xml │ │ ├── models │ │ └── OPNsense │ │ │ ├── Firewall │ │ │ └── static_aliases │ │ │ │ └── wazuh_agent.json │ │ │ └── WazuhAgent │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Menu │ │ │ └── Menu.xml │ │ │ ├── WazuhAgent.php │ │ │ └── WazuhAgent.xml │ │ └── views │ │ └── OPNsense │ │ └── WazuhAgent │ │ └── index.volt │ ├── scripts │ ├── syslog │ │ └── logformats │ │ │ └── wazuhagent.py │ └── wazuh │ │ ├── opnsense-fw │ │ └── setup.php │ └── service │ ├── conf │ └── actions.d │ │ └── actions_wazuh_agent.conf │ └── templates │ └── OPNsense │ └── WazuhAgent │ ├── +TARGETS │ ├── local_internal_options.conf │ ├── newsyslog.conf │ ├── opnsense-fw.conf │ ├── ossec.conf │ ├── ossec_config.d │ ├── 000-rootcheck.conf │ ├── 001-wodle_syscollector.conf │ ├── 002-syscheck.conf │ ├── 003-localfile-generic.conf │ ├── 004-localfile-suricata.conf │ └── 005-active-response.conf │ ├── rc.conf.d │ └── syslog-ng-wazuh-agent.conf ├── sysutils ├── apcupsd │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── apcupsd.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Apcupsd │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── StatusController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Apcupsd │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Apcupsd.php │ │ │ │ ├── Apcupsd.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Apcupsd │ │ │ ├── index.volt │ │ │ └── status.volt │ │ ├── service │ │ ├── conf │ │ │ └── actions.d │ │ │ │ └── actions_apcupsd.conf │ │ └── templates │ │ │ └── OPNsense │ │ │ └── Apcupsd │ │ │ ├── +TARGETS │ │ │ ├── apcupsd │ │ │ ├── apcupsd.conf │ │ │ └── syslog-filter.conf │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── Apcupsd.js │ │ └── Metadata │ │ └── Apcupsd.xml ├── apuled │ ├── +POST_INSTALL │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── rc.syshook.d │ │ │ ├── early │ │ │ └── 30-apuled │ │ │ └── start │ │ │ └── 60-apuled │ │ └── opnsense │ │ ├── scripts │ │ └── apuled │ │ │ └── apuledctl │ │ └── service │ │ └── conf │ │ └── actions.d │ │ └── actions_apuled.conf ├── beats │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Beats │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ └── filebeat.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Beats │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Filebeat.php │ │ │ │ ├── Filebeat.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Beats │ │ │ └── filebeat.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_beats.conf │ │ └── templates │ │ └── OPNsense │ │ └── Beats │ │ ├── +TARGETS │ │ ├── filebeat │ │ └── filebeat.yml ├── cpu-microcode │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── etc │ │ └── rc.loader.d │ │ └── 40-cpu-microcode.in ├── dec-hw │ ├── +POST_INSTALL │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── rc.syshook.d │ │ │ └── early │ │ │ └── 30-powerstat │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── dechw │ │ │ │ └── Api │ │ │ │ └── InfoController.php │ │ │ └── models │ │ │ └── OPNsense │ │ │ └── dechw │ │ │ └── ACL │ │ │ └── ACL.xml │ │ ├── scripts │ │ └── dec-hw │ │ │ └── powerstat │ │ ├── service │ │ └── conf │ │ │ └── actions.d │ │ │ └── actions_dechw.conf │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── DecHW.js │ │ └── Metadata │ │ └── DecHW.xml ├── dmidecode │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Dmidecode │ │ │ │ └── Api │ │ │ │ └── ServiceController.php │ │ │ └── models │ │ │ └── OPNsense │ │ │ └── Dmidecode │ │ │ └── ACL │ │ │ └── ACL.xml │ │ ├── service │ │ └── conf │ │ │ └── actions.d │ │ │ └── actions_dmidecode.conf │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── Dmidecode.js │ │ └── Metadata │ │ └── Dmidecode.xml ├── gdrive-backup │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── gdrive.inc │ │ └── opnsense │ │ └── mvc │ │ └── app │ │ └── library │ │ ├── Google │ │ └── API │ │ │ └── Drive.php │ │ └── OPNsense │ │ └── Backup │ │ └── GDrive.php ├── git-backup │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── rc.syshook.d │ │ │ └── config │ │ │ └── 10-git-backup │ │ └── opnsense │ │ └── mvc │ │ └── app │ │ ├── library │ │ └── OPNsense │ │ │ └── Backup │ │ │ └── Git.php │ │ └── models │ │ └── OPNsense │ │ └── Backup │ │ ├── GitSettings.php │ │ └── GitSettings.xml ├── hw-probe │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Hwprobe │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Hwprobe │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Hwprobe │ │ │ └── general.volt │ │ └── service │ │ └── conf │ │ └── actions.d │ │ └── actions_hwprobe.conf ├── lcdproc-sdeclcd │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── etc │ │ ├── LCDd-sdeclcd.conf │ │ └── rc.syshook.d │ │ └── start │ │ └── 50-lcdproc-sdeclcd ├── mail-backup │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── mvc │ │ └── app │ │ ├── library │ │ └── OPNsense │ │ │ └── Backup │ │ │ └── Mailer.php │ │ └── models │ │ └── OPNsense │ │ └── Backup │ │ ├── MailerSettings.php │ │ └── MailerSettings.xml ├── munin-node │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── muninnode.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Muninnode │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Muninnode │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Muninnode │ │ │ └── general.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Muninnode │ │ │ └── setup.sh │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_muninnode.conf │ │ └── templates │ │ └── OPNsense │ │ └── Muninnode │ │ ├── +TARGETS │ │ ├── munin-node.conf │ │ └── munin_node ├── nextcloud-backup │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── mvc │ │ └── app │ │ ├── library │ │ └── OPNsense │ │ │ └── Backup │ │ │ └── Nextcloud.php │ │ └── models │ │ └── OPNsense │ │ └── Backup │ │ ├── NextcloudSettings.php │ │ └── NextcloudSettings.xml ├── node_exporter │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── node_exporter.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── NodeExporter │ │ │ │ ├── Api │ │ │ │ ├── GeneralController.php │ │ │ │ └── ServiceController.php │ │ │ │ ├── GeneralController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── NodeExporter │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── General.php │ │ │ │ ├── General.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── NodeExporter │ │ │ └── general.volt │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_node_exporter.conf │ │ └── templates │ │ └── OPNsense │ │ └── NodeExporter │ │ ├── +TARGETS │ │ └── node_exporter ├── nut │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── nut.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Nut │ │ │ │ ├── Api │ │ │ │ ├── DiagnosticsController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── DiagnosticsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ └── settings.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Nut │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── Nut.php │ │ │ │ └── Nut.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Nut │ │ │ ├── diagnostics.volt │ │ │ └── index.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Nut │ │ │ └── setup.sh │ │ ├── service │ │ ├── conf │ │ │ └── actions.d │ │ │ │ └── actions_nut.conf │ │ └── templates │ │ │ └── OPNsense │ │ │ └── Nut │ │ │ ├── +TARGETS │ │ │ ├── nut │ │ │ ├── nut.conf │ │ │ ├── nut_upsmon │ │ │ ├── ups.conf │ │ │ ├── upsd.conf │ │ │ ├── upsd.users │ │ │ └── upsmon.conf │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── Metadata │ │ └── Nut.xml │ │ └── Nut.js ├── puppet-agent │ ├── Makefile │ ├── pkg-descr │ └── src │ │ ├── etc │ │ └── inc │ │ │ └── plugins.inc.d │ │ │ └── puppetagent.inc │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── PuppetAgent │ │ │ │ ├── Api │ │ │ │ ├── ServiceController.php │ │ │ │ └── SettingsController.php │ │ │ │ ├── IndexController.php │ │ │ │ └── forms │ │ │ │ └── general.xml │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── PuppetAgent │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ ├── Menu │ │ │ │ └── Menu.xml │ │ │ │ ├── PuppetAgent.php │ │ │ │ └── PuppetAgent.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── PuppetAgent │ │ │ └── index.volt │ │ ├── scripts │ │ └── syslog │ │ │ └── logformats │ │ │ └── puppet_agent.py │ │ └── service │ │ ├── conf │ │ └── actions.d │ │ │ └── actions_puppetagent.conf │ │ └── templates │ │ └── OPNsense │ │ └── PuppetAgent │ │ ├── +TARGETS │ │ ├── newsyslog.conf │ │ ├── puppetagent.conf │ │ └── rc.conf.d ├── sftp-backup │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ └── mvc │ │ └── app │ │ ├── library │ │ └── OPNsense │ │ │ └── Backup │ │ │ └── Sftp.php │ │ └── models │ │ └── OPNsense │ │ └── Backup │ │ ├── SftpSettings.php │ │ └── SftpSettings.xml ├── smart │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── opnsense │ │ ├── mvc │ │ └── app │ │ │ ├── controllers │ │ │ └── OPNsense │ │ │ │ └── Smart │ │ │ │ ├── Api │ │ │ │ └── ServiceController.php │ │ │ │ └── IndexController.php │ │ │ ├── models │ │ │ └── OPNsense │ │ │ │ └── Smart │ │ │ │ ├── ACL │ │ │ │ └── ACL.xml │ │ │ │ └── Menu │ │ │ │ └── Menu.xml │ │ │ └── views │ │ │ └── OPNsense │ │ │ └── Smart │ │ │ └── index.volt │ │ ├── scripts │ │ └── OPNsense │ │ │ └── Smart │ │ │ └── detailed_list.sh │ │ ├── service │ │ └── conf │ │ │ └── actions.d │ │ │ └── actions_smart.conf │ │ └── www │ │ └── js │ │ └── widgets │ │ ├── Metadata │ │ └── Smart.xml │ │ └── Smart.js ├── virtualbox │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── etc │ │ └── rc.syshook.d │ │ ├── early │ │ └── 50-virtualbox │ │ └── start │ │ └── 50-virtualbox ├── vmware │ ├── Makefile │ ├── pkg-descr │ └── src │ │ └── etc │ │ └── rc.syshook.d │ │ ├── early │ │ └── 50-vmware │ │ └── start │ │ └── 50-vmware └── xen │ ├── Makefile │ ├── pkg-descr │ └── src │ └── etc │ └── rc.syshook.d │ └── start │ └── 50-xen ├── vendor └── sunnyvalley │ ├── Makefile │ ├── pkg-descr │ └── src │ ├── etc │ └── pkg │ │ ├── fingerprints │ │ └── SunnyValley │ │ │ ├── revoked │ │ │ └── .placeholder │ │ │ └── trusted │ │ │ └── updates.sunnyvalley.org.20190702 │ │ └── repos │ │ └── SunnyValley.conf.shadow.in │ └── opnsense │ └── scripts │ └── firmware │ └── repos │ └── SunnyValley.php └── www ├── OPNProxy ├── +POST_DEINSTALL.post ├── Makefile ├── pkg-descr └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── opnproxy.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Proxy │ │ │ ├── AclController.php │ │ │ ├── Api │ │ │ └── AclController.php │ │ │ └── forms │ │ │ ├── dialogCustomPolicy.xml │ │ │ └── dialogDefaultPolicy.xml │ │ ├── models │ │ └── Deciso │ │ │ └── Proxy │ │ │ ├── ACL.php │ │ │ ├── ACL.xml │ │ │ ├── FieldTypes │ │ │ ├── CustomPolicyField.php │ │ │ └── UserGroupField.php │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── Deciso │ │ └── Proxy │ │ └── acl.volt │ ├── scripts │ └── OPNProxy │ │ ├── download_cleanse_ut1.py │ │ ├── lib │ │ └── __init__.py │ │ ├── policies_to_redis_proto.py │ │ ├── redis_sync_users.py │ │ └── squid_acl_helper.py │ └── service │ ├── conf │ └── actions.d │ │ └── actions_opnproxy.conf │ └── templates │ └── Deciso │ └── Proxy │ ├── +TARGETS │ ├── 10-opnproxy-ext.auth.conf │ └── proxy_policies.conf ├── c-icap ├── Makefile ├── pkg-descr └── src │ ├── etc │ ├── inc │ │ └── plugins.inc.d │ │ │ └── cicap.inc │ └── rc.syshook.d │ │ └── start │ │ └── 50-c-icap │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── CICAP │ │ │ ├── Api │ │ │ ├── AntivirusController.php │ │ │ ├── GeneralController.php │ │ │ └── ServiceController.php │ │ │ ├── GeneralController.php │ │ │ └── forms │ │ │ ├── antivirus.xml │ │ │ └── general.xml │ │ ├── models │ │ └── OPNsense │ │ │ └── CICAP │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Antivirus.php │ │ │ ├── Antivirus.xml │ │ │ ├── General.php │ │ │ ├── General.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── OPNsense │ │ └── CICAP │ │ └── general.volt │ ├── scripts │ └── OPNsense │ │ └── CICAP │ │ └── setup.sh │ └── service │ ├── conf │ └── actions.d │ │ └── actions_cicap.conf │ └── templates │ └── OPNsense │ ├── CICAP │ ├── +TARGETS │ ├── VIRUS_FOUND │ ├── VIR_MODE_HEAD │ ├── VIR_MODE_PROGRESS │ ├── VIR_MODE_TAIL │ ├── VIR_MODE_VIRUS_FOUND │ ├── c-icap.conf │ ├── c_icap │ └── virus_scan.conf │ └── Syslog │ └── local │ └── cicap.conf ├── cache ├── Makefile ├── pkg-descr └── src │ └── etc │ └── php │ └── ext-10-opcache-settings.ini ├── caddy ├── Makefile ├── pkg-descr └── src │ ├── etc │ ├── inc │ │ └── plugins.inc.d │ │ │ └── caddy.inc │ ├── ssl │ │ └── ext_sources │ │ │ └── caddy.conf │ └── syslog-ng.conf.d │ │ └── caddy.conf │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Caddy │ │ │ ├── Api │ │ │ ├── DiagnosticsController.php │ │ │ ├── GeneralController.php │ │ │ ├── ReverseProxyController.php │ │ │ └── ServiceController.php │ │ │ ├── DiagnosticsController.php │ │ │ ├── GeneralController.php │ │ │ ├── Layer4Controller.php │ │ │ ├── ReverseProxyController.php │ │ │ └── forms │ │ │ ├── dialogAccessList.xml │ │ │ ├── dialogBasicAuth.xml │ │ │ ├── dialogHandle.xml │ │ │ ├── dialogHeader.xml │ │ │ ├── dialogLayer4.xml │ │ │ ├── dialogLayer4Openvpn.xml │ │ │ ├── dialogReverseProxy.xml │ │ │ ├── dialogSubdomain.xml │ │ │ └── general.xml │ │ ├── library │ │ └── OPNsense │ │ │ └── System │ │ │ └── Status │ │ │ └── CaddyOverrideStatus.php │ │ ├── models │ │ └── OPNsense │ │ │ └── Caddy │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Caddy.php │ │ │ ├── Caddy.xml │ │ │ └── Menu │ │ │ └── Menu.xml │ │ └── views │ │ └── OPNsense │ │ └── Caddy │ │ ├── diagnostics.volt │ │ ├── general.volt │ │ └── reverse_proxy.volt │ ├── scripts │ └── OPNsense │ │ └── Caddy │ │ ├── caddy_certs.php │ │ ├── caddy_control.py │ │ ├── caddy_diagnostics.py │ │ └── setup.sh │ ├── service │ ├── conf │ │ └── actions.d │ │ │ └── actions_caddy.conf │ └── templates │ │ └── OPNsense │ │ └── Caddy │ │ ├── +TARGETS │ │ ├── Caddyfile │ │ ├── includeAuthProvider │ │ ├── includeLayer4 │ │ └── rc.conf.d │ │ └── caddy │ └── www │ └── js │ └── widgets │ ├── CaddyDomain.js │ └── Metadata │ └── Caddy.xml ├── nginx ├── Makefile ├── README.md ├── pkg-descr └── src │ ├── etc │ ├── inc │ │ └── plugins.inc.d │ │ │ └── nginx.inc │ └── nginx │ │ ├── opnsense_http_vhost_plugins │ │ ├── README │ │ └── vts.conf │ │ ├── opnsense_stream_vhost_plugins │ │ └── README │ │ └── views │ │ ├── opnsense_error_403.html │ │ ├── opnsense_error_404.html │ │ ├── opnsense_server_error.html │ │ └── waf_denied.html │ └── opnsense │ ├── data │ └── OPNsense │ │ └── Nginx │ │ └── dh-parameters.4096.rfc7919 │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Nginx │ │ │ ├── Api │ │ │ ├── BansController.php │ │ │ ├── LogsController.php │ │ │ ├── ServiceController.php │ │ │ └── SettingsController.php │ │ │ ├── IndexController.php │ │ │ ├── LogsController.php │ │ │ └── forms │ │ │ ├── cache_path.xml │ │ │ ├── credential.xml │ │ │ ├── errorpage.xml │ │ │ ├── httprewrite.xml │ │ │ ├── httpserver.xml │ │ │ ├── ipacl.xml │ │ │ ├── limit_request_connection.xml │ │ │ ├── limit_zone.xml │ │ │ ├── location.xml │ │ │ ├── naxsi_custom_policy.xml │ │ │ ├── naxsi_rule.xml │ │ │ ├── proxy_cache_valid.xml │ │ │ ├── resolver.xml │ │ │ ├── security_headers.xml │ │ │ ├── settings.xml │ │ │ ├── sni_hostname_map.xml │ │ │ ├── streamserver.xml │ │ │ ├── syslog_target.xml │ │ │ ├── tls_fingerprint.xml │ │ │ ├── upstream.xml │ │ │ ├── upstream_server.xml │ │ │ └── userlist.xml │ │ ├── library │ │ └── OPNsense │ │ │ └── Nginx │ │ │ ├── AccessLogLine.php │ │ │ ├── AccessLogParser.php │ │ │ ├── ErrorLogLine.php │ │ │ ├── ErrorLogParser.php │ │ │ ├── LogParserBase.php │ │ │ ├── StreamAccessLogLine.php │ │ │ └── StreamAccessLogParser.php │ │ ├── models │ │ └── OPNsense │ │ │ ├── Base │ │ │ └── Constraints │ │ │ │ ├── NaxsiIdentifierConstraint.php │ │ │ │ ├── NgxBusyBufferConstraint.php │ │ │ │ └── NgxUniqueDefaultServerConstraint.php │ │ │ └── Nginx │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Menu │ │ │ └── Menu.xml │ │ │ ├── Migrations │ │ │ ├── M1_24_0.php │ │ │ └── M1_35_1.php │ │ │ ├── Nginx.php │ │ │ └── Nginx.xml │ │ └── views │ │ └── OPNsense │ │ └── Nginx │ │ ├── ban.volt │ │ ├── index.volt │ │ ├── logs.volt │ │ ├── tabbed_dialog.volt │ │ ├── tls_handshakes.volt │ │ └── vts.volt │ ├── scripts │ └── nginx │ │ ├── csp_report.php │ │ ├── list_logs.php │ │ ├── naxsi_rule_download.php │ │ ├── ngx_auth.php │ │ ├── ngx_autoblock.php │ │ ├── ngx_functions.js │ │ ├── ngx_showConfig.py │ │ ├── ngx_testConfig.sh │ │ ├── read_log.php │ │ ├── setup.php │ │ ├── tls_ua_fingerprint.php │ │ └── vts.php │ ├── service │ ├── conf │ │ └── actions.d │ │ │ └── actions_nginx.conf │ └── templates │ │ └── OPNsense │ │ ├── Nginx │ │ ├── +TARGETS │ │ ├── http.conf │ │ ├── httprequestlimit.conf │ │ ├── ipacl.conf │ │ ├── location.conf │ │ ├── mime.types │ │ ├── naxsirule.conf │ │ ├── newsyslog.conf │ │ ├── nginx │ │ ├── nginx.conf │ │ ├── php-webgui.conf │ │ ├── php-www.conf │ │ ├── php_fpm │ │ ├── ruleset.conf │ │ ├── security_rule.conf │ │ ├── streams.conf │ │ ├── syslog_targets.conf │ │ ├── upstream.conf │ │ └── webgui.conf │ │ └── Syslog │ │ └── local │ │ └── nginx.conf │ └── www │ ├── css │ └── nginx │ │ ├── index.css │ │ ├── logs.css │ │ └── vts.css │ └── js │ └── nginx │ ├── .eslintrc.json │ ├── .gitignore │ ├── dist │ ├── README.md │ ├── configuration.min.js │ ├── logviewer.min.js │ └── tls_handshakes.min.js │ ├── lib │ ├── backbone-min.js │ ├── backbone-min.js.LICENSE │ ├── lodash.min.js │ └── lodash.min.js.LICENSE │ ├── npm-shrinkwrap.json │ ├── package.json │ ├── src │ ├── controller │ │ ├── KeyValueMapField.js │ │ ├── KeyValueMapFieldEntry.js │ │ ├── LogCategoryList.js │ │ ├── LogView.js │ │ ├── SingleTab.js │ │ └── TabLogList.js │ ├── logviewer.js │ ├── models │ │ ├── IPACLCollection.js │ │ ├── IPACLModel.js │ │ ├── LogCollection.js │ │ ├── LogColumn.js │ │ ├── LogFileMenuEntry.js │ │ ├── LogLine.js │ │ ├── LogLinesCollection.js │ │ ├── LogServerCollection.js │ │ ├── LogServerMenu.js │ │ ├── SNIHostnameUpstreamCollection.js │ │ ├── SNIHostnameUpstreamModel.js │ │ ├── TLSFingerprints.js │ │ └── UpstreamCollection.js │ ├── nginx_config.js │ ├── templates │ │ ├── FingerPrintDialogContent.html │ │ ├── Fingerprint.html │ │ ├── Fingerprints.html │ │ ├── LogColumn.html │ │ ├── LogLine.html │ │ ├── TabCollection.html │ │ ├── TabModel.html │ │ ├── logviewer.html │ │ ├── noDataAvailable.html │ │ └── single_tab.html │ └── tls_handshakes.js │ └── webpack.conf.js ├── squid ├── Makefile ├── contrib │ ├── Makefile │ └── template_error_pages │ │ ├── ERR_ACCESS_DENIED.html │ │ ├── ERR_ACL_TIME_QUOTA_EXCEEDED.html │ │ ├── ERR_AGENT_CONFIGURE.html │ │ ├── ERR_AGENT_WPAD.html │ │ ├── ERR_CACHE_ACCESS_DENIED.html │ │ ├── ERR_CACHE_MGR_ACCESS_DENIED.html │ │ ├── ERR_CANNOT_FORWARD.html │ │ ├── ERR_CONFLICT_HOST.html │ │ ├── ERR_CONNECT_FAIL.html │ │ ├── ERR_DIR_LISTING.html │ │ ├── ERR_DNS_FAIL.html │ │ ├── ERR_ESI.html │ │ ├── ERR_FORWARDING_DENIED.html │ │ ├── ERR_FTP_DISABLED.html │ │ ├── ERR_FTP_FAILURE.html │ │ ├── ERR_FTP_FORBIDDEN.html │ │ ├── ERR_FTP_NOT_FOUND.html │ │ ├── ERR_FTP_PUT_CREATED.html │ │ ├── ERR_FTP_PUT_ERROR.html │ │ ├── ERR_FTP_PUT_MODIFIED.html │ │ ├── ERR_FTP_UNAVAILABLE.html │ │ ├── ERR_GATEWAY_FAILURE.html │ │ ├── ERR_ICAP_FAILURE.html │ │ ├── ERR_INVALID_REQ.html │ │ ├── ERR_INVALID_RESP.html │ │ ├── ERR_INVALID_URL.html │ │ ├── ERR_LIFETIME_EXP.html │ │ ├── ERR_NO_RELAY.html │ │ ├── ERR_ONLY_IF_CACHED_MISS.html │ │ ├── ERR_PRECONDITION_FAILED.html │ │ ├── ERR_PROTOCOL_UNKNOWN.html │ │ ├── ERR_READ_ERROR.html │ │ ├── ERR_READ_TIMEOUT.html │ │ ├── ERR_SECURE_CONNECT_FAIL.html │ │ ├── ERR_SHUTTING_DOWN.html │ │ ├── ERR_SOCKET_FAILURE.html │ │ ├── ERR_TOO_BIG.html │ │ ├── ERR_UNSUP_HTTPVERSION.html │ │ ├── ERR_UNSUP_REQ.html │ │ ├── ERR_URN_RESOLVE.html │ │ ├── ERR_WRITE_ERROR.html │ │ ├── ERR_ZERO_SIZE_OBJECT.html │ │ ├── error-details.txt │ │ └── errorpage.css ├── pkg-descr └── src │ ├── etc │ └── inc │ │ └── plugins.inc.d │ │ └── squid.inc │ └── opnsense │ ├── mvc │ └── app │ │ ├── controllers │ │ └── OPNsense │ │ │ └── Proxy │ │ │ ├── Api │ │ │ ├── ServiceController.php │ │ │ ├── SettingsController.php │ │ │ └── TemplateController.php │ │ │ ├── IndexController.php │ │ │ └── forms │ │ │ ├── dialogEditBlacklist.xml │ │ │ ├── dialogEditPACMatch.xml │ │ │ ├── dialogEditPACProxy.xml │ │ │ ├── dialogEditPACRule.xml │ │ │ └── main.xml │ │ ├── library │ │ └── OPNsense │ │ │ └── Auth │ │ │ └── Services │ │ │ └── Squid.php │ │ ├── models │ │ └── OPNsense │ │ │ └── Proxy │ │ │ ├── ACL │ │ │ └── ACL.xml │ │ │ ├── Menu │ │ │ └── Menu.xml │ │ │ ├── Migrations │ │ │ └── M1_0_0.php │ │ │ ├── Proxy.php │ │ │ └── Proxy.xml │ │ └── views │ │ └── OPNsense │ │ └── Proxy │ │ └── index.volt │ ├── scripts │ ├── proxy │ │ ├── deploy_error_pages.py │ │ ├── download_error_pages.py │ │ ├── fetchACLs.py │ │ ├── generate_cert.php │ │ ├── lib │ │ │ └── __init__.py │ │ └── setup.sh │ └── syslog │ │ └── logformats │ │ └── squid.py │ └── service │ ├── conf │ └── actions.d │ │ └── actions_proxy.conf │ └── templates │ └── OPNsense │ ├── Proxy │ ├── +TARGETS │ ├── auth.conf │ ├── ca.pem.id │ ├── cache.active │ ├── error_directory_in │ ├── externalACLs.conf │ ├── newsyslog.conf │ ├── nobumpsites.acl │ ├── parentproxy.conf │ ├── post-auth.conf │ ├── pre-auth.conf │ ├── rc.conf.d │ ├── snmp.conf │ ├── squid.acl.conf │ ├── squid.conf │ ├── squid.pam │ ├── squid.user.local_auth.conf │ └── wpad.dat │ └── Syslog │ └── local │ └── squid_access.conf └── web-proxy-sso ├── +POST_DEINSTALL.post ├── Makefile ├── pkg-descr └── src ├── etc └── inc │ └── plugins.inc.d │ └── proxy_sso.inc └── opnsense ├── mvc └── app │ ├── controllers │ └── OPNsense │ │ └── ProxySSO │ │ ├── Api │ │ ├── ServiceController.php │ │ └── SettingsController.php │ │ ├── IndexController.php │ │ └── forms │ │ ├── checklist.xml │ │ ├── general.xml │ │ ├── testing_create.xml │ │ └── testing_test.xml │ ├── models │ └── OPNsense │ │ └── ProxySSO │ │ ├── Menu │ │ └── Menu.xml │ │ ├── ProxySSO.php │ │ └── ProxySSO.xml │ └── views │ └── OPNsense │ └── ProxySSO │ └── index.volt ├── scripts └── OPNsense │ └── ProxySSO │ ├── kerberos_test.sh │ └── squid-gen-keytab.sh └── service ├── conf └── actions.d │ └── actions_proxysso.conf └── templates └── OPNsense └── ProxySSO ├── +TARGETS ├── kerberos.sso.conf ├── krb5.conf └── rc.conf.d /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .*DS_Store 3 | .idea 4 | .sass-cache 5 | venv 6 | /*/*/work 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Keywords/sample.ucl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Keywords/sample.ucl -------------------------------------------------------------------------------- /Keywords/shadow.ucl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Keywords/shadow.ucl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Makefile -------------------------------------------------------------------------------- /Mk/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/common.mk -------------------------------------------------------------------------------- /Mk/contrib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/contrib.mk -------------------------------------------------------------------------------- /Mk/defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/defaults.mk -------------------------------------------------------------------------------- /Mk/devel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/devel.mk -------------------------------------------------------------------------------- /Mk/git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/git.mk -------------------------------------------------------------------------------- /Mk/lint.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/lint.mk -------------------------------------------------------------------------------- /Mk/plugins.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/plugins.mk -------------------------------------------------------------------------------- /Mk/style.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/style.mk -------------------------------------------------------------------------------- /Mk/sweep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Mk/sweep.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Scripts/license -------------------------------------------------------------------------------- /Scripts/revbump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Scripts/revbump.sh -------------------------------------------------------------------------------- /Scripts/update-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Scripts/update-list.sh -------------------------------------------------------------------------------- /Scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Scripts/version.sh -------------------------------------------------------------------------------- /Templates/actions.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Templates/actions.d -------------------------------------------------------------------------------- /Templates/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Templates/configure -------------------------------------------------------------------------------- /Templates/models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Templates/models -------------------------------------------------------------------------------- /Templates/rc.loader.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Templates/rc.loader.d -------------------------------------------------------------------------------- /Templates/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Templates/templates -------------------------------------------------------------------------------- /Templates/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/Templates/version -------------------------------------------------------------------------------- /benchmarks/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/benchmarks/iperf/Makefile -------------------------------------------------------------------------------- /benchmarks/iperf/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/benchmarks/iperf/pkg-descr -------------------------------------------------------------------------------- /benchmarks/iperf/src/etc/inc/plugins.inc.d/iperf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/benchmarks/iperf/src/etc/inc/plugins.inc.d/iperf.inc -------------------------------------------------------------------------------- /benchmarks/iperf/src/etc/rc.d/iperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/benchmarks/iperf/src/etc/rc.d/iperf -------------------------------------------------------------------------------- /benchmarks/iperf/src/opnsense/scripts/iperf/ruby_iperf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/benchmarks/iperf/src/opnsense/scripts/iperf/ruby_iperf.rb -------------------------------------------------------------------------------- /databases/redis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/Makefile -------------------------------------------------------------------------------- /databases/redis/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/pkg-descr -------------------------------------------------------------------------------- /databases/redis/src/etc/inc/plugins.inc.d/redis.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/src/etc/inc/plugins.inc.d/redis.inc -------------------------------------------------------------------------------- /databases/redis/src/opnsense/mvc/app/models/OPNsense/Redis/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/src/opnsense/mvc/app/models/OPNsense/Redis/Redis.php -------------------------------------------------------------------------------- /databases/redis/src/opnsense/mvc/app/models/OPNsense/Redis/Redis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/src/opnsense/mvc/app/models/OPNsense/Redis/Redis.xml -------------------------------------------------------------------------------- /databases/redis/src/opnsense/mvc/app/views/OPNsense/Redis/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/src/opnsense/mvc/app/views/OPNsense/Redis/index.volt -------------------------------------------------------------------------------- /databases/redis/src/opnsense/scripts/redis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/src/opnsense/scripts/redis/setup.sh -------------------------------------------------------------------------------- /databases/redis/src/opnsense/service/templates/OPNsense/Redis/redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/databases/redis/src/opnsense/service/templates/OPNsense/Redis/redis -------------------------------------------------------------------------------- /devel/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/debug/Makefile -------------------------------------------------------------------------------- /devel/debug/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/debug/pkg-descr -------------------------------------------------------------------------------- /devel/debug/src/bin/qyua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/debug/src/bin/qyua -------------------------------------------------------------------------------- /devel/debug/src/etc/php/ext-20-xdebug-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/debug/src/etc/php/ext-20-xdebug-settings.ini -------------------------------------------------------------------------------- /devel/debug/src/man/man1/qyua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/debug/src/man/man1/qyua.1 -------------------------------------------------------------------------------- /devel/grid_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/grid_example/Makefile -------------------------------------------------------------------------------- /devel/grid_example/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/grid_example/pkg-descr -------------------------------------------------------------------------------- /devel/helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/helloworld/Makefile -------------------------------------------------------------------------------- /devel/helloworld/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/helloworld/pkg-descr -------------------------------------------------------------------------------- /devel/helloworld/src/opnsense/scripts/helloworld/testConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/devel/helloworld/src/opnsense/scripts/helloworld/testConnection.py -------------------------------------------------------------------------------- /dns/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/Makefile -------------------------------------------------------------------------------- /dns/bind/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/pkg-descr -------------------------------------------------------------------------------- /dns/bind/src/etc/inc/plugins.inc.d/bind.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/etc/inc/plugins.inc.d/bind.inc -------------------------------------------------------------------------------- /dns/bind/src/etc/namedb/named.conf.d/00-README.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/etc/namedb/named.conf.d/00-README.conf -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/ACL/ACL.xml -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Acl.php -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Acl.xml -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Dnsbl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Dnsbl.php -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Dnsbl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Dnsbl.xml -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Domain.php -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Domain.xml -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/General.php -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/General.xml -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Menu/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Menu/Menu.xml -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Record.php -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Record.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/models/OPNsense/Bind/Record.xml -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/views/OPNsense/Bind/general.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/views/OPNsense/Bind/general.volt -------------------------------------------------------------------------------- /dns/bind/src/opnsense/mvc/app/views/OPNsense/Bind/logs.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/mvc/app/views/OPNsense/Bind/logs.volt -------------------------------------------------------------------------------- /dns/bind/src/opnsense/scripts/OPNsense/Bind/dnsbl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/scripts/OPNsense/Bind/dnsbl.sh -------------------------------------------------------------------------------- /dns/bind/src/opnsense/scripts/OPNsense/Bind/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/scripts/OPNsense/Bind/setup.sh -------------------------------------------------------------------------------- /dns/bind/src/opnsense/scripts/OPNsense/Bind/zoneCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/scripts/OPNsense/Bind/zoneCheck.sh -------------------------------------------------------------------------------- /dns/bind/src/opnsense/scripts/OPNsense/Bind/zoneShow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/scripts/OPNsense/Bind/zoneShow.py -------------------------------------------------------------------------------- /dns/bind/src/opnsense/scripts/syslog/logformats/bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/scripts/syslog/logformats/bind.py -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/conf/actions.d/actions_bind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/conf/actions.d/actions_bind.conf -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/+TARGETS -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/bing.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/bing.db -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/blacklist.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/blacklist.db -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/domain.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/domain.db -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/duckduckgo.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/duckduckgo.db -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/google.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/google.db -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/named: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/named -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/named.conf -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/rndc.conf -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/whitelist.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/whitelist.db -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/whitelist.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/whitelist.inc -------------------------------------------------------------------------------- /dns/bind/src/opnsense/service/templates/OPNsense/Bind/youtube.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/bind/src/opnsense/service/templates/OPNsense/Bind/youtube.db -------------------------------------------------------------------------------- /dns/ddclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/Makefile -------------------------------------------------------------------------------- /dns/ddclient/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/pkg-descr -------------------------------------------------------------------------------- /dns/ddclient/src/etc/inc/plugins.inc.d/ddclient.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/etc/inc/plugins.inc.d/ddclient.inc -------------------------------------------------------------------------------- /dns/ddclient/src/etc/rc.d/ddclient_opn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/etc/rc.d/ddclient_opn -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/mvc/app/models/OPNsense/DynDNS/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/mvc/app/models/OPNsense/DynDNS/ACL/ACL.xml -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/mvc/app/models/OPNsense/DynDNS/DynDNS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/mvc/app/models/OPNsense/DynDNS/DynDNS.php -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/mvc/app/models/OPNsense/DynDNS/DynDNS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/mvc/app/models/OPNsense/DynDNS/DynDNS.xml -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/mvc/app/views/OPNsense/DynDNS/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/mvc/app/views/OPNsense/DynDNS/index.volt -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/checkip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/checkip -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/ddclient_opn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/ddclient_opn.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/__init__.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/__init__.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/aws.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/azure.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/cloudflare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/cloudflare.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/domeneshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/domeneshop.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/duckdns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/duckdns.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/dyndns2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/dyndns2.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/gandi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/gandi.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/netcup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/netcup.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/account/powerdns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/powerdns.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/address.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/lib/poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/lib/poller.py -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/setup.sh -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/scripts/ddclient/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/scripts/ddclient/stats -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/www/js/widgets/Dyndns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/www/js/widgets/Dyndns.js -------------------------------------------------------------------------------- /dns/ddclient/src/opnsense/www/js/widgets/Metadata/Dyndns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/ddclient/src/opnsense/www/js/widgets/Metadata/Dyndns.xml -------------------------------------------------------------------------------- /dns/dnscrypt-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/dnscrypt-proxy/Makefile -------------------------------------------------------------------------------- /dns/dnscrypt-proxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/dnscrypt-proxy/pkg-descr -------------------------------------------------------------------------------- /dns/dnscrypt-proxy/src/etc/inc/plugins.inc.d/dnscryptproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/dnscrypt-proxy/src/etc/inc/plugins.inc.d/dnscryptproxy.inc -------------------------------------------------------------------------------- /dns/rfc2136/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/Makefile -------------------------------------------------------------------------------- /dns/rfc2136/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/pkg-descr -------------------------------------------------------------------------------- /dns/rfc2136/src/etc/inc/plugins.inc.d/rfc2136.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/src/etc/inc/plugins.inc.d/rfc2136.inc -------------------------------------------------------------------------------- /dns/rfc2136/src/etc/rc.rfc2136: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/src/etc/rc.rfc2136 -------------------------------------------------------------------------------- /dns/rfc2136/src/opnsense/mvc/app/models/OPNsense/RFC2136/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/src/opnsense/mvc/app/models/OPNsense/RFC2136/ACL/ACL.xml -------------------------------------------------------------------------------- /dns/rfc2136/src/opnsense/service/conf/actions.d/actions_rfc2136.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/src/opnsense/service/conf/actions.d/actions_rfc2136.conf -------------------------------------------------------------------------------- /dns/rfc2136/src/www/services_rfc2136.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/src/www/services_rfc2136.php -------------------------------------------------------------------------------- /dns/rfc2136/src/www/services_rfc2136_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/dns/rfc2136/src/www/services_rfc2136_edit.php -------------------------------------------------------------------------------- /emulators/qemu-guest-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/emulators/qemu-guest-agent/Makefile -------------------------------------------------------------------------------- /emulators/qemu-guest-agent/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/emulators/qemu-guest-agent/pkg-descr -------------------------------------------------------------------------------- /ftp/tftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/Makefile -------------------------------------------------------------------------------- /ftp/tftp/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/pkg-descr -------------------------------------------------------------------------------- /ftp/tftp/src/etc/inc/plugins.inc.d/tftp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/etc/inc/plugins.inc.d/tftp.inc -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/ACL/ACL.xml -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/General.php -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/General.xml -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/Menu/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/opnsense/mvc/app/models/OPNsense/Tftp/Menu/Menu.xml -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/mvc/app/views/OPNsense/Tftp/general.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/opnsense/mvc/app/views/OPNsense/Tftp/general.volt -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/service/conf/actions.d/actions_tftp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/opnsense/service/conf/actions.d/actions_tftp.conf -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/service/templates/OPNsense/Tftp/+TARGETS: -------------------------------------------------------------------------------- 1 | tftpd:/etc/rc.conf.d/tftpd 2 | -------------------------------------------------------------------------------- /ftp/tftp/src/opnsense/service/templates/OPNsense/Tftp/tftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/ftp/tftp/src/opnsense/service/templates/OPNsense/Tftp/tftpd -------------------------------------------------------------------------------- /mail/postfix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/Makefile -------------------------------------------------------------------------------- /mail/postfix/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/pkg-descr -------------------------------------------------------------------------------- /mail/postfix/src/etc/inc/plugins.inc.d/postfix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/etc/inc/plugins.inc.d/postfix.inc -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Domain.php -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Domain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Domain.xml -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Sender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Sender.php -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Sender.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/mvc/app/models/OPNsense/Postfix/Sender.xml -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/mvc/app/views/OPNsense/Postfix/apply.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/mvc/app/views/OPNsense/Postfix/apply.volt -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/mvc/app/views/OPNsense/Postfix/domain.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/mvc/app/views/OPNsense/Postfix/domain.volt -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/mvc/app/views/OPNsense/Postfix/sender.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/mvc/app/views/OPNsense/Postfix/sender.volt -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/scripts/OPNsense/Postfix/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/scripts/OPNsense/Postfix/setup.sh -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/service/templates/OPNsense/Postfix/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/service/templates/OPNsense/Postfix/main.cf -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/service/templates/OPNsense/Postfix/postfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/service/templates/OPNsense/Postfix/postfix -------------------------------------------------------------------------------- /mail/postfix/src/opnsense/service/templates/OPNsense/Postfix/virtual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/postfix/src/opnsense/service/templates/OPNsense/Postfix/virtual -------------------------------------------------------------------------------- /mail/rspamd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/Makefile -------------------------------------------------------------------------------- /mail/rspamd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/pkg-descr -------------------------------------------------------------------------------- /mail/rspamd/src/etc/inc/plugins.inc.d/rspamd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/src/etc/inc/plugins.inc.d/rspamd.inc -------------------------------------------------------------------------------- /mail/rspamd/src/opnsense/mvc/app/models/OPNsense/Rspamd/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/src/opnsense/mvc/app/models/OPNsense/Rspamd/ACL/ACL.xml -------------------------------------------------------------------------------- /mail/rspamd/src/opnsense/mvc/app/models/OPNsense/Rspamd/RSpamd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/src/opnsense/mvc/app/models/OPNsense/Rspamd/RSpamd.php -------------------------------------------------------------------------------- /mail/rspamd/src/opnsense/mvc/app/models/OPNsense/Rspamd/RSpamd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/src/opnsense/mvc/app/models/OPNsense/Rspamd/RSpamd.xml -------------------------------------------------------------------------------- /mail/rspamd/src/opnsense/mvc/app/views/OPNsense/Rspamd/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/src/opnsense/mvc/app/views/OPNsense/Rspamd/index.volt -------------------------------------------------------------------------------- /mail/rspamd/src/opnsense/scripts/rspamd/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/src/opnsense/scripts/rspamd/setup.sh -------------------------------------------------------------------------------- /mail/rspamd/src/opnsense/service/templates/OPNsense/Rspamd/rspamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/mail/rspamd/src/opnsense/service/templates/OPNsense/Rspamd/rspamd -------------------------------------------------------------------------------- /misc/theme-advanced/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-advanced/Makefile -------------------------------------------------------------------------------- /misc/theme-advanced/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-advanced/pkg-descr -------------------------------------------------------------------------------- /misc/theme-cicada/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-cicada/Makefile -------------------------------------------------------------------------------- /misc/theme-cicada/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-cicada/pkg-descr -------------------------------------------------------------------------------- /misc/theme-cicada/src/opnsense/www/themes/cicada/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-cicada/src/opnsense/www/themes/cicada/LICENSE -------------------------------------------------------------------------------- /misc/theme-cicada/src/opnsense/www/themes/cicada/assets/stylesheets/bootstrap-select/css/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/theme-flexcolor/+POST_INSTALL.post: -------------------------------------------------------------------------------- 1 | /usr/local/etc/rc.syshook.d/early/50-flexcolor 2 | -------------------------------------------------------------------------------- /misc/theme-flexcolor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-flexcolor/Makefile -------------------------------------------------------------------------------- /misc/theme-flexcolor/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-flexcolor/pkg-descr -------------------------------------------------------------------------------- /misc/theme-flexcolor/src/etc/rc.d/flexcolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-flexcolor/src/etc/rc.d/flexcolor -------------------------------------------------------------------------------- /misc/theme-flexcolor/src/etc/rc.syshook.d/early/50-flexcolor: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/local/etc/rc.d/flexcolor start 4 | -------------------------------------------------------------------------------- /misc/theme-flexcolor/src/opnsense/www/themes/flexcolor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-flexcolor/src/opnsense/www/themes/flexcolor/LICENSE -------------------------------------------------------------------------------- /misc/theme-rebellion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-rebellion/Makefile -------------------------------------------------------------------------------- /misc/theme-rebellion/pkg-descr: -------------------------------------------------------------------------------- 1 | A suitably dark theme. 2 | -------------------------------------------------------------------------------- /misc/theme-rebellion/src/opnsense/www/themes/rebellion/assets/stylesheets/bootstrap-select/css/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/theme-tukan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-tukan/Makefile -------------------------------------------------------------------------------- /misc/theme-tukan/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-tukan/pkg-descr -------------------------------------------------------------------------------- /misc/theme-tukan/src/opnsense/www/themes/tukan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-tukan/src/opnsense/www/themes/tukan/LICENSE -------------------------------------------------------------------------------- /misc/theme-tukan/src/opnsense/www/themes/tukan/assets/stylesheets/bootstrap-select/css/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/theme-tukan/src/opnsense/www/themes/tukan/build/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-tukan/src/opnsense/www/themes/tukan/build/css/main.css -------------------------------------------------------------------------------- /misc/theme-vicuna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-vicuna/Makefile -------------------------------------------------------------------------------- /misc/theme-vicuna/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-vicuna/pkg-descr -------------------------------------------------------------------------------- /misc/theme-vicuna/src/opnsense/www/themes/vicuna/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/misc/theme-vicuna/src/opnsense/www/themes/vicuna/LICENSE -------------------------------------------------------------------------------- /misc/theme-vicuna/src/opnsense/www/themes/vicuna/assets/stylesheets/bootstrap-select/css/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net-mgmt/collectd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/collectd/Makefile -------------------------------------------------------------------------------- /net-mgmt/collectd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/collectd/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/collectd/src/etc/inc/plugins.inc.d/collectd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/collectd/src/etc/inc/plugins.inc.d/collectd.inc -------------------------------------------------------------------------------- /net-mgmt/collectd/src/opnsense/scripts/OPNsense/Collectd/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/collectd/src/opnsense/scripts/OPNsense/Collectd/setup.sh -------------------------------------------------------------------------------- /net-mgmt/lldpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/lldpd/Makefile -------------------------------------------------------------------------------- /net-mgmt/lldpd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/lldpd/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/lldpd/src/etc/inc/plugins.inc.d/lldpd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/lldpd/src/etc/inc/plugins.inc.d/lldpd.inc -------------------------------------------------------------------------------- /net-mgmt/net-snmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/net-snmp/Makefile -------------------------------------------------------------------------------- /net-mgmt/net-snmp/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/net-snmp/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/net-snmp/src/etc/inc/plugins.inc.d/netsnmp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/net-snmp/src/etc/inc/plugins.inc.d/netsnmp.inc -------------------------------------------------------------------------------- /net-mgmt/net-snmp/src/opnsense/scripts/OPNsense/Netsnmp/distro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/net-snmp/src/opnsense/scripts/OPNsense/Netsnmp/distro.sh -------------------------------------------------------------------------------- /net-mgmt/net-snmp/src/opnsense/scripts/OPNsense/Netsnmp/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/net-snmp/src/opnsense/scripts/OPNsense/Netsnmp/setup.sh -------------------------------------------------------------------------------- /net-mgmt/netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/netdata/Makefile -------------------------------------------------------------------------------- /net-mgmt/netdata/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/netdata/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/netdata/src/etc/inc/plugins.inc.d/netdata.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/netdata/src/etc/inc/plugins.inc.d/netdata.inc -------------------------------------------------------------------------------- /net-mgmt/netdata/src/opnsense/scripts/OPNsense/Netdata/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/netdata/src/opnsense/scripts/OPNsense/Netdata/setup.sh -------------------------------------------------------------------------------- /net-mgmt/nrpe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/nrpe/Makefile -------------------------------------------------------------------------------- /net-mgmt/nrpe/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/nrpe/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/nrpe/src/etc/inc/plugins.inc.d/nrpe.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/nrpe/src/etc/inc/plugins.inc.d/nrpe.inc -------------------------------------------------------------------------------- /net-mgmt/nrpe/src/opnsense/scripts/OPNsense/Nrpe/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/nrpe/src/opnsense/scripts/OPNsense/Nrpe/setup.sh -------------------------------------------------------------------------------- /net-mgmt/nrpe/src/opnsense/service/templates/OPNsense/Nrpe/nrpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/nrpe/src/opnsense/service/templates/OPNsense/Nrpe/nrpe -------------------------------------------------------------------------------- /net-mgmt/telegraf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/telegraf/Makefile -------------------------------------------------------------------------------- /net-mgmt/telegraf/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/telegraf/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/telegraf/src/etc/inc/plugins.inc.d/telegraf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/telegraf/src/etc/inc/plugins.inc.d/telegraf.inc -------------------------------------------------------------------------------- /net-mgmt/telegraf/src/opnsense/scripts/OPNsense/Telegraf/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/telegraf/src/opnsense/scripts/OPNsense/Telegraf/setup.sh -------------------------------------------------------------------------------- /net-mgmt/zabbix-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/zabbix-agent/Makefile -------------------------------------------------------------------------------- /net-mgmt/zabbix-agent/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/zabbix-agent/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/zabbix-agent/src/etc/inc/plugins.inc.d/zabbixagent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/zabbix-agent/src/etc/inc/plugins.inc.d/zabbixagent.inc -------------------------------------------------------------------------------- /net-mgmt/zabbix-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/zabbix-proxy/Makefile -------------------------------------------------------------------------------- /net-mgmt/zabbix-proxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/zabbix-proxy/pkg-descr -------------------------------------------------------------------------------- /net-mgmt/zabbix-proxy/src/etc/inc/plugins.inc.d/zabbixproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net-mgmt/zabbix-proxy/src/etc/inc/plugins.inc.d/zabbixproxy.inc -------------------------------------------------------------------------------- /net/chrony/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/chrony/Makefile -------------------------------------------------------------------------------- /net/chrony/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/chrony/pkg-descr -------------------------------------------------------------------------------- /net/chrony/src/etc/inc/plugins.inc.d/chrony.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/chrony/src/etc/inc/plugins.inc.d/chrony.inc -------------------------------------------------------------------------------- /net/chrony/src/opnsense/scripts/OPNsense/Chrony/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/chrony/src/opnsense/scripts/OPNsense/Chrony/setup.sh -------------------------------------------------------------------------------- /net/chrony/src/opnsense/service/templates/OPNsense/Chrony/chronyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/chrony/src/opnsense/service/templates/OPNsense/Chrony/chronyd -------------------------------------------------------------------------------- /net/freeradius/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/freeradius/Makefile -------------------------------------------------------------------------------- /net/freeradius/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/freeradius/pkg-descr -------------------------------------------------------------------------------- /net/freeradius/src/etc/inc/plugins.inc.d/freeradius.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/freeradius/src/etc/inc/plugins.inc.d/freeradius.inc -------------------------------------------------------------------------------- /net/freeradius/src/opnsense/scripts/Freeradius/generate_certs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/freeradius/src/opnsense/scripts/Freeradius/generate_certs.php -------------------------------------------------------------------------------- /net/freeradius/src/opnsense/scripts/Freeradius/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/freeradius/src/opnsense/scripts/Freeradius/setup.sh -------------------------------------------------------------------------------- /net/frr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/Makefile -------------------------------------------------------------------------------- /net/frr/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/pkg-descr -------------------------------------------------------------------------------- /net/frr/src/etc/inc/plugins.inc.d/frr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/etc/inc/plugins.inc.d/frr.inc -------------------------------------------------------------------------------- /net/frr/src/etc/rc.carp_service_status.d/carp_frr_ospf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/etc/rc.carp_service_status.d/carp_frr_ospf -------------------------------------------------------------------------------- /net/frr/src/etc/rc.carp_service_status.d/carp_frr_ospf6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/etc/rc.carp_service_status.d/carp_frr_ospf6 -------------------------------------------------------------------------------- /net/frr/src/etc/rc.syshook.d/carp/50-frr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/etc/rc.syshook.d/carp/50-frr -------------------------------------------------------------------------------- /net/frr/src/etc/rc.syshook.d/start/50-frr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/etc/rc.syshook.d/start/50-frr -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/ACL/ACL.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BFD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BFD.php -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BFD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BFD.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BGP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BGP.php -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BGP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/BGP.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/General.php -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/General.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/Menu/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/Menu/Menu.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF.php -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF6.php -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/OSPF6.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/RIP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/RIP.php -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/RIP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/RIP.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/STATICd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/STATICd.php -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/STATICd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/models/OPNsense/Quagga/STATICd.xml -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/bfd.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/bfd.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/bgp.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/bgp.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/general.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/general.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/isis.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/isis.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/ospf.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/ospf.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/ospf6.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/ospf6.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/rip.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/rip.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/static.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/mvc/app/views/OPNsense/Quagga/static.volt -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/carp_event_handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/carp_event_handler -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/lib/__init__.py -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/lib/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/lib/base.py -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/lib/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/lib/events/__init__.py -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/lib/events/ospf6d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/lib/events/ospf6d.py -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/lib/events/ospfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/lib/events/ospfd.py -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/register_sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/register_sas -------------------------------------------------------------------------------- /net/frr/src/opnsense/scripts/frr/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/scripts/frr/setup.sh -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/conf/actions.d/actions_quagga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/conf/actions.d/actions_quagga.conf -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/+TARGETS -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/bfdd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/bfdd.conf -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/bgpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/bgpd.conf -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/frr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/frr -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/frr.conf -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/ospfd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/ospfd.conf -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/ripd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/ripd.conf -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/vtysh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/vtysh.conf -------------------------------------------------------------------------------- /net/frr/src/opnsense/service/templates/OPNsense/Quagga/zebra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/frr/src/opnsense/service/templates/OPNsense/Quagga/zebra.conf -------------------------------------------------------------------------------- /net/ftp-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ftp-proxy/Makefile -------------------------------------------------------------------------------- /net/ftp-proxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ftp-proxy/pkg-descr -------------------------------------------------------------------------------- /net/ftp-proxy/src/etc/inc/plugins.inc.d/ftpproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ftp-proxy/src/etc/inc/plugins.inc.d/ftpproxy.inc -------------------------------------------------------------------------------- /net/ftp-proxy/src/etc/rc.d/os-ftp-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ftp-proxy/src/etc/rc.d/os-ftp-proxy -------------------------------------------------------------------------------- /net/google-cloud-sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/google-cloud-sdk/Makefile -------------------------------------------------------------------------------- /net/google-cloud-sdk/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/google-cloud-sdk/pkg-descr -------------------------------------------------------------------------------- /net/haproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/Makefile -------------------------------------------------------------------------------- /net/haproxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/pkg-descr -------------------------------------------------------------------------------- /net/haproxy/src/etc/inc/plugins.inc.d/haproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/etc/inc/plugins.inc.d/haproxy.inc -------------------------------------------------------------------------------- /net/haproxy/src/etc/rc.syshook.d/start/50-haproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/etc/rc.syshook.d/start/50-haproxy -------------------------------------------------------------------------------- /net/haproxy/src/etc/rc.syshook.d/stop/50-haproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/etc/rc.syshook.d/stop/50-haproxy -------------------------------------------------------------------------------- /net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/exportCerts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/exportCerts.php -------------------------------------------------------------------------------- /net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/queryStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/queryStats.php -------------------------------------------------------------------------------- /net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/rc-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/rc-wrapper.sh -------------------------------------------------------------------------------- /net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/setup.sh -------------------------------------------------------------------------------- /net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/syncCerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/syncCerts.py -------------------------------------------------------------------------------- /net/igmp-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/igmp-proxy/Makefile -------------------------------------------------------------------------------- /net/igmp-proxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/igmp-proxy/pkg-descr -------------------------------------------------------------------------------- /net/igmp-proxy/src/etc/inc/plugins.inc.d/igmpproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/igmp-proxy/src/etc/inc/plugins.inc.d/igmpproxy.inc -------------------------------------------------------------------------------- /net/igmp-proxy/src/www/services_igmpproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/igmp-proxy/src/www/services_igmpproxy.php -------------------------------------------------------------------------------- /net/igmp-proxy/src/www/services_igmpproxy_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/igmp-proxy/src/www/services_igmpproxy_edit.php -------------------------------------------------------------------------------- /net/mdns-repeater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/mdns-repeater/Makefile -------------------------------------------------------------------------------- /net/mdns-repeater/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/mdns-repeater/pkg-descr -------------------------------------------------------------------------------- /net/mdns-repeater/src/etc/inc/plugins.inc.d/mdnsrepeater.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/mdns-repeater/src/etc/inc/plugins.inc.d/mdnsrepeater.inc -------------------------------------------------------------------------------- /net/mdns-repeater/src/etc/rc.syshook.d/carp/50-mdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/mdns-repeater/src/etc/rc.syshook.d/carp/50-mdns -------------------------------------------------------------------------------- /net/ndp-proxy-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ndp-proxy-go/Makefile -------------------------------------------------------------------------------- /net/ndp-proxy-go/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ndp-proxy-go/pkg-descr -------------------------------------------------------------------------------- /net/ndp-proxy-go/src/etc/inc/plugins.inc.d/ndpproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ndp-proxy-go/src/etc/inc/plugins.inc.d/ndpproxy.inc -------------------------------------------------------------------------------- /net/ndproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ndproxy/Makefile -------------------------------------------------------------------------------- /net/ndproxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ndproxy/pkg-descr -------------------------------------------------------------------------------- /net/ndproxy/src/etc/inc/plugins.inc.d/ndproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ndproxy/src/etc/inc/plugins.inc.d/ndproxy.inc -------------------------------------------------------------------------------- /net/ntopng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ntopng/Makefile -------------------------------------------------------------------------------- /net/ntopng/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ntopng/pkg-descr -------------------------------------------------------------------------------- /net/ntopng/src/etc/inc/plugins.inc.d/ntopng.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ntopng/src/etc/inc/plugins.inc.d/ntopng.inc -------------------------------------------------------------------------------- /net/ntopng/src/etc/rc.syshook.d/start/50-ntopng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ntopng/src/etc/rc.syshook.d/start/50-ntopng -------------------------------------------------------------------------------- /net/ntopng/src/opnsense/scripts/OPNsense/Ntopng/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ntopng/src/opnsense/scripts/OPNsense/Ntopng/setup.sh -------------------------------------------------------------------------------- /net/ntopng/src/opnsense/service/templates/OPNsense/Ntopng/ntopng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/ntopng/src/opnsense/service/templates/OPNsense/Ntopng/ntopng -------------------------------------------------------------------------------- /net/radsecproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/radsecproxy/Makefile -------------------------------------------------------------------------------- /net/radsecproxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/radsecproxy/pkg-descr -------------------------------------------------------------------------------- /net/radsecproxy/src/etc/inc/plugins.inc.d/radsecproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/radsecproxy/src/etc/inc/plugins.inc.d/radsecproxy.inc -------------------------------------------------------------------------------- /net/realtek-re/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/realtek-re/Makefile -------------------------------------------------------------------------------- /net/realtek-re/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/realtek-re/pkg-descr -------------------------------------------------------------------------------- /net/realtek-re/src/etc/rc.loader.d/50-realtek-re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/realtek-re/src/etc/rc.loader.d/50-realtek-re -------------------------------------------------------------------------------- /net/relayd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/Makefile -------------------------------------------------------------------------------- /net/relayd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/pkg-descr -------------------------------------------------------------------------------- /net/relayd/src/etc/inc/plugins.inc.d/relayd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/src/etc/inc/plugins.inc.d/relayd.inc -------------------------------------------------------------------------------- /net/relayd/src/etc/rc.d/os-relayd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/src/etc/rc.d/os-relayd -------------------------------------------------------------------------------- /net/relayd/src/opnsense/mvc/app/models/OPNsense/Relayd/Relayd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/src/opnsense/mvc/app/models/OPNsense/Relayd/Relayd.php -------------------------------------------------------------------------------- /net/relayd/src/opnsense/mvc/app/models/OPNsense/Relayd/Relayd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/src/opnsense/mvc/app/models/OPNsense/Relayd/Relayd.xml -------------------------------------------------------------------------------- /net/relayd/src/opnsense/mvc/app/views/OPNsense/Relayd/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/src/opnsense/mvc/app/views/OPNsense/Relayd/index.volt -------------------------------------------------------------------------------- /net/relayd/src/opnsense/mvc/app/views/OPNsense/Relayd/status.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/relayd/src/opnsense/mvc/app/views/OPNsense/Relayd/status.volt -------------------------------------------------------------------------------- /net/shadowsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/shadowsocks/Makefile -------------------------------------------------------------------------------- /net/shadowsocks/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/shadowsocks/pkg-descr -------------------------------------------------------------------------------- /net/shadowsocks/src/etc/inc/plugins.inc.d/shadowsocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/shadowsocks/src/etc/inc/plugins.inc.d/shadowsocks.inc -------------------------------------------------------------------------------- /net/siproxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/siproxd/Makefile -------------------------------------------------------------------------------- /net/siproxd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/siproxd/pkg-descr -------------------------------------------------------------------------------- /net/siproxd/src/etc/inc/plugins.inc.d/siproxd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/siproxd/src/etc/inc/plugins.inc.d/siproxd.inc -------------------------------------------------------------------------------- /net/siproxd/src/opnsense/mvc/app/models/OPNsense/Siproxd/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/siproxd/src/opnsense/mvc/app/models/OPNsense/Siproxd/User.php -------------------------------------------------------------------------------- /net/siproxd/src/opnsense/mvc/app/models/OPNsense/Siproxd/User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/siproxd/src/opnsense/mvc/app/models/OPNsense/Siproxd/User.xml -------------------------------------------------------------------------------- /net/siproxd/src/opnsense/scripts/OPNsense/Siproxd/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/siproxd/src/opnsense/scripts/OPNsense/Siproxd/setup.sh -------------------------------------------------------------------------------- /net/sslh/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/CHANGELOG.md -------------------------------------------------------------------------------- /net/sslh/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/DEVELOPMENT.md -------------------------------------------------------------------------------- /net/sslh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/Makefile -------------------------------------------------------------------------------- /net/sslh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/README.md -------------------------------------------------------------------------------- /net/sslh/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/pkg-descr -------------------------------------------------------------------------------- /net/sslh/src/etc/inc/plugins.inc.d/sslh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/etc/inc/plugins.inc.d/sslh.inc -------------------------------------------------------------------------------- /net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/ACL/ACL.xml -------------------------------------------------------------------------------- /net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/Menu/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/Menu/Menu.xml -------------------------------------------------------------------------------- /net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/Settings.php -------------------------------------------------------------------------------- /net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/mvc/app/models/OPNsense/Sslh/Settings.xml -------------------------------------------------------------------------------- /net/sslh/src/opnsense/mvc/app/views/OPNsense/Sslh/settings.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/mvc/app/views/OPNsense/Sslh/settings.volt -------------------------------------------------------------------------------- /net/sslh/src/opnsense/service/conf/actions.d/actions_sslh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/service/conf/actions.d/actions_sslh.conf -------------------------------------------------------------------------------- /net/sslh/src/opnsense/service/templates/OPNsense/Sslh/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/service/templates/OPNsense/Sslh/+TARGETS -------------------------------------------------------------------------------- /net/sslh/src/opnsense/service/templates/OPNsense/Sslh/sslh.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/sslh/src/opnsense/service/templates/OPNsense/Sslh/sslh.jinja -------------------------------------------------------------------------------- /net/tayga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/Makefile -------------------------------------------------------------------------------- /net/tayga/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/pkg-descr -------------------------------------------------------------------------------- /net/tayga/src/etc/inc/plugins.inc.d/tayga.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/etc/inc/plugins.inc.d/tayga.inc -------------------------------------------------------------------------------- /net/tayga/src/etc/rc.d/opnsense-tayga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/etc/rc.d/opnsense-tayga -------------------------------------------------------------------------------- /net/tayga/src/opnsense/mvc/app/models/OPNsense/Tayga/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/mvc/app/models/OPNsense/Tayga/ACL/ACL.xml -------------------------------------------------------------------------------- /net/tayga/src/opnsense/mvc/app/models/OPNsense/Tayga/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/mvc/app/models/OPNsense/Tayga/General.php -------------------------------------------------------------------------------- /net/tayga/src/opnsense/mvc/app/models/OPNsense/Tayga/General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/mvc/app/models/OPNsense/Tayga/General.xml -------------------------------------------------------------------------------- /net/tayga/src/opnsense/mvc/app/views/OPNsense/Tayga/general.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/mvc/app/views/OPNsense/Tayga/general.volt -------------------------------------------------------------------------------- /net/tayga/src/opnsense/scripts/OPNsense/Tayga/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/scripts/OPNsense/Tayga/setup.sh -------------------------------------------------------------------------------- /net/tayga/src/opnsense/service/conf/actions.d/actions_tayga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/service/conf/actions.d/actions_tayga.conf -------------------------------------------------------------------------------- /net/tayga/src/opnsense/service/templates/OPNsense/Tayga/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/service/templates/OPNsense/Tayga/+TARGETS -------------------------------------------------------------------------------- /net/tayga/src/opnsense/service/templates/OPNsense/Tayga/tayga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/tayga/src/opnsense/service/templates/OPNsense/Tayga/tayga -------------------------------------------------------------------------------- /net/turnserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/turnserver/Makefile -------------------------------------------------------------------------------- /net/turnserver/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/turnserver/pkg-descr -------------------------------------------------------------------------------- /net/turnserver/src/etc/inc/plugins.inc.d/turnserver.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/turnserver/src/etc/inc/plugins.inc.d/turnserver.inc -------------------------------------------------------------------------------- /net/udpbroadcastrelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/udpbroadcastrelay/Makefile -------------------------------------------------------------------------------- /net/udpbroadcastrelay/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/udpbroadcastrelay/pkg-descr -------------------------------------------------------------------------------- /net/udpbroadcastrelay/src/etc/rc.d/os-udpbroadcastrelay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/udpbroadcastrelay/src/etc/rc.d/os-udpbroadcastrelay -------------------------------------------------------------------------------- /net/upnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/upnp/Makefile -------------------------------------------------------------------------------- /net/upnp/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/upnp/pkg-descr -------------------------------------------------------------------------------- /net/upnp/src/etc/inc/plugins.inc.d/miniupnpd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/upnp/src/etc/inc/plugins.inc.d/miniupnpd.inc -------------------------------------------------------------------------------- /net/upnp/src/opnsense/mvc/app/models/OPNsense/UPnP/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/upnp/src/opnsense/mvc/app/models/OPNsense/UPnP/ACL/ACL.xml -------------------------------------------------------------------------------- /net/upnp/src/opnsense/mvc/app/models/OPNsense/UPnP/Menu/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/upnp/src/opnsense/mvc/app/models/OPNsense/UPnP/Menu/Menu.xml -------------------------------------------------------------------------------- /net/upnp/src/www/services_upnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/upnp/src/www/services_upnp.php -------------------------------------------------------------------------------- /net/upnp/src/www/status_upnp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/upnp/src/www/status_upnp.php -------------------------------------------------------------------------------- /net/vnstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/vnstat/Makefile -------------------------------------------------------------------------------- /net/vnstat/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/vnstat/pkg-descr -------------------------------------------------------------------------------- /net/vnstat/src/etc/inc/plugins.inc.d/vnstat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/vnstat/src/etc/inc/plugins.inc.d/vnstat.inc -------------------------------------------------------------------------------- /net/vnstat/src/opnsense/scripts/OPNsense/Vnstat/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/vnstat/src/opnsense/scripts/OPNsense/Vnstat/setup.sh -------------------------------------------------------------------------------- /net/vnstat/src/opnsense/service/templates/OPNsense/Vnstat/vnstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/vnstat/src/opnsense/service/templates/OPNsense/Vnstat/vnstat -------------------------------------------------------------------------------- /net/wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/Makefile -------------------------------------------------------------------------------- /net/wol/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/pkg-descr -------------------------------------------------------------------------------- /net/wol/src/etc/inc/plugins.inc.d/wol.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/etc/inc/plugins.inc.d/wol.inc -------------------------------------------------------------------------------- /net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/ACL/ACL.xml -------------------------------------------------------------------------------- /net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/Menu/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/Menu/Menu.xml -------------------------------------------------------------------------------- /net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/Wol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/Wol.php -------------------------------------------------------------------------------- /net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/Wol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/mvc/app/models/OPNsense/Wol/Wol.xml -------------------------------------------------------------------------------- /net/wol/src/opnsense/mvc/app/views/OPNsense/Wol/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/mvc/app/views/OPNsense/Wol/index.volt -------------------------------------------------------------------------------- /net/wol/src/opnsense/service/conf/actions.d/actions_wol.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/service/conf/actions.d/actions_wol.conf -------------------------------------------------------------------------------- /net/wol/src/opnsense/www/js/widgets/Metadata/WakeOnLan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/www/js/widgets/Metadata/WakeOnLan.xml -------------------------------------------------------------------------------- /net/wol/src/opnsense/www/js/widgets/WakeOnLan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/wol/src/opnsense/www/js/widgets/WakeOnLan.js -------------------------------------------------------------------------------- /net/zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/zerotier/Makefile -------------------------------------------------------------------------------- /net/zerotier/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/zerotier/pkg-descr -------------------------------------------------------------------------------- /net/zerotier/src/etc/inc/plugins.inc.d/zerotier.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/net/zerotier/src/etc/inc/plugins.inc.d/zerotier.inc -------------------------------------------------------------------------------- /security/acme-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/acme-client/Makefile -------------------------------------------------------------------------------- /security/acme-client/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/acme-client/pkg-descr -------------------------------------------------------------------------------- /security/acme-client/src/etc/inc/plugins.inc.d/acmeclient.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/acme-client/src/etc/inc/plugins.inc.d/acmeclient.inc -------------------------------------------------------------------------------- /security/acme-client/src/etc/rc.d/acme_http_challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/acme-client/src/etc/rc.d/acme_http_challenge -------------------------------------------------------------------------------- /security/clamav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/clamav/Makefile -------------------------------------------------------------------------------- /security/clamav/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/clamav/pkg-descr -------------------------------------------------------------------------------- /security/clamav/src/etc/inc/plugins.inc.d/clamav.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/clamav/src/etc/inc/plugins.inc.d/clamav.inc -------------------------------------------------------------------------------- /security/clamav/src/opnsense/scripts/OPNsense/ClamAV/freshclam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/clamav/src/opnsense/scripts/OPNsense/ClamAV/freshclam.sh -------------------------------------------------------------------------------- /security/clamav/src/opnsense/scripts/OPNsense/ClamAV/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/clamav/src/opnsense/scripts/OPNsense/ClamAV/setup.sh -------------------------------------------------------------------------------- /security/clamav/src/opnsense/scripts/OPNsense/ClamAV/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/clamav/src/opnsense/scripts/OPNsense/ClamAV/versions.sh -------------------------------------------------------------------------------- /security/crowdsec/+POST_DEINSTALL.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/+POST_DEINSTALL.post -------------------------------------------------------------------------------- /security/crowdsec/+POST_INSTALL.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/+POST_INSTALL.post -------------------------------------------------------------------------------- /security/crowdsec/+POST_INSTALL.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/+POST_INSTALL.pre -------------------------------------------------------------------------------- /security/crowdsec/+PRE_DEINSTALL.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/+PRE_DEINSTALL.pre -------------------------------------------------------------------------------- /security/crowdsec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/LICENSE -------------------------------------------------------------------------------- /security/crowdsec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/Makefile -------------------------------------------------------------------------------- /security/crowdsec/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/pkg-descr -------------------------------------------------------------------------------- /security/crowdsec/src/etc/cron.d/oscrowdsec.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/src/etc/cron.d/oscrowdsec.cron -------------------------------------------------------------------------------- /security/crowdsec/src/etc/crowdsec/acquis.d/opnsense.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/src/etc/crowdsec/acquis.d/opnsense.yaml -------------------------------------------------------------------------------- /security/crowdsec/src/etc/inc/plugins.inc.d/crowdsec.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/src/etc/inc/plugins.inc.d/crowdsec.inc -------------------------------------------------------------------------------- /security/crowdsec/src/etc/rc.d/oscrowdsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/src/etc/rc.d/oscrowdsec -------------------------------------------------------------------------------- /security/crowdsec/src/etc/rc.syshook.d/start/50-crowdsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/src/etc/rc.syshook.d/start/50-crowdsec -------------------------------------------------------------------------------- /security/crowdsec/src/opnsense/service/templates/OPNsense/CrowdSec/oscrowdsec.rc.conf.d: -------------------------------------------------------------------------------- 1 | oscrowdsec_enable="YES" 2 | -------------------------------------------------------------------------------- /security/crowdsec/src/opnsense/www/js/CrowdSec/crowdsec-misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/crowdsec/src/opnsense/www/js/CrowdSec/crowdsec-misc.js -------------------------------------------------------------------------------- /security/etpro-telemetry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/etpro-telemetry/Makefile -------------------------------------------------------------------------------- /security/etpro-telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/etpro-telemetry/README.md -------------------------------------------------------------------------------- /security/etpro-telemetry/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/etpro-telemetry/pkg-descr -------------------------------------------------------------------------------- /security/etpro-telemetry/requires.txt: -------------------------------------------------------------------------------- 1 | requests 2 | ujson 3 | -------------------------------------------------------------------------------- /security/etpro-telemetry/src/etc/cron.d/etpro-telemetry.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/etpro-telemetry/src/etc/cron.d/etpro-telemetry.cron -------------------------------------------------------------------------------- /security/etpro-telemetry/src/opnsense/www/img/proofpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/etpro-telemetry/src/opnsense/www/img/proofpoint.svg -------------------------------------------------------------------------------- /security/etpro-telemetry/testdata/log/eve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/etpro-telemetry/testdata/log/eve.json -------------------------------------------------------------------------------- /security/etpro-telemetry/testdata/rule-updater.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/etpro-telemetry/testdata/rule-updater.config -------------------------------------------------------------------------------- /security/intrusion-detection-content-et-open/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-et-open/Makefile -------------------------------------------------------------------------------- /security/intrusion-detection-content-et-open/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-et-open/pkg-descr -------------------------------------------------------------------------------- /security/intrusion-detection-content-et-pro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-et-pro/Makefile -------------------------------------------------------------------------------- /security/intrusion-detection-content-et-pro/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-et-pro/pkg-descr -------------------------------------------------------------------------------- /security/intrusion-detection-content-pt-open/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-pt-open/LICENSE -------------------------------------------------------------------------------- /security/intrusion-detection-content-pt-open/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-pt-open/Makefile -------------------------------------------------------------------------------- /security/intrusion-detection-content-pt-open/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-pt-open/pkg-descr -------------------------------------------------------------------------------- /security/intrusion-detection-content-snort-vrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-snort-vrt/Makefile -------------------------------------------------------------------------------- /security/intrusion-detection-content-snort-vrt/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/intrusion-detection-content-snort-vrt/pkg-descr -------------------------------------------------------------------------------- /security/maltrail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/maltrail/Makefile -------------------------------------------------------------------------------- /security/maltrail/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/maltrail/pkg-descr -------------------------------------------------------------------------------- /security/maltrail/src/etc/inc/plugins.inc.d/maltrail.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/maltrail/src/etc/inc/plugins.inc.d/maltrail.inc -------------------------------------------------------------------------------- /security/maltrail/src/etc/rc.d/opnsense-maltrailsensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/maltrail/src/etc/rc.d/opnsense-maltrailsensor -------------------------------------------------------------------------------- /security/maltrail/src/etc/rc.d/opnsense-maltrailserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/maltrail/src/etc/rc.d/opnsense-maltrailserver -------------------------------------------------------------------------------- /security/maltrail/src/opnsense/scripts/OPNsense/Maltrail/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/maltrail/src/opnsense/scripts/OPNsense/Maltrail/setup.sh -------------------------------------------------------------------------------- /security/netbird/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/netbird/Makefile -------------------------------------------------------------------------------- /security/netbird/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/netbird/pkg-descr -------------------------------------------------------------------------------- /security/netbird/src/etc/inc/plugins.inc.d/netbird.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/netbird/src/etc/inc/plugins.inc.d/netbird.inc -------------------------------------------------------------------------------- /security/openconnect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openconnect/Makefile -------------------------------------------------------------------------------- /security/openconnect/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openconnect/pkg-descr -------------------------------------------------------------------------------- /security/openconnect/src/etc/inc/plugins.inc.d/openconnect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openconnect/src/etc/inc/plugins.inc.d/openconnect.inc -------------------------------------------------------------------------------- /security/openconnect/src/etc/rc.d/opnsense-openconnect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openconnect/src/etc/rc.d/opnsense-openconnect -------------------------------------------------------------------------------- /security/openvpn-legacy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openvpn-legacy/Makefile -------------------------------------------------------------------------------- /security/openvpn-legacy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openvpn-legacy/pkg-descr -------------------------------------------------------------------------------- /security/openvpn-legacy/src/www/vpn_openvpn_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openvpn-legacy/src/www/vpn_openvpn_client.php -------------------------------------------------------------------------------- /security/openvpn-legacy/src/www/vpn_openvpn_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/openvpn-legacy/src/www/vpn_openvpn_server.php -------------------------------------------------------------------------------- /security/q-feeds-connector/+POST_INSTALL.post: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/local/sbin/pluginctl -s cron restart 4 | -------------------------------------------------------------------------------- /security/q-feeds-connector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/Makefile -------------------------------------------------------------------------------- /security/q-feeds-connector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/README.md -------------------------------------------------------------------------------- /security/q-feeds-connector/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/pkg-descr -------------------------------------------------------------------------------- /security/q-feeds-connector/src/etc/inc/plugins.inc.d/qfeeds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/src/etc/inc/plugins.inc.d/qfeeds.inc -------------------------------------------------------------------------------- /security/q-feeds-connector/src/etc/rc.syshook.d/start/99-qfeeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/src/etc/rc.syshook.d/start/99-qfeeds -------------------------------------------------------------------------------- /security/q-feeds-connector/src/opnsense/scripts/qfeeds/lib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/src/opnsense/scripts/qfeeds/lib/api.py -------------------------------------------------------------------------------- /security/q-feeds-connector/src/opnsense/scripts/qfeeds/lib/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/src/opnsense/scripts/qfeeds/lib/log.py -------------------------------------------------------------------------------- /security/q-feeds-connector/src/opnsense/www/img/QFeeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/src/opnsense/www/img/QFeeds.png -------------------------------------------------------------------------------- /security/q-feeds-connector/src/opnsense/www/js/widgets/QFeeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/q-feeds-connector/src/opnsense/www/js/widgets/QFeeds.js -------------------------------------------------------------------------------- /security/strongswan-legacy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/strongswan-legacy/Makefile -------------------------------------------------------------------------------- /security/strongswan-legacy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/strongswan-legacy/pkg-descr -------------------------------------------------------------------------------- /security/strongswan-legacy/src/www/vpn_ipsec_mobile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/strongswan-legacy/src/www/vpn_ipsec_mobile.php -------------------------------------------------------------------------------- /security/strongswan-legacy/src/www/vpn_ipsec_phase1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/strongswan-legacy/src/www/vpn_ipsec_phase1.php -------------------------------------------------------------------------------- /security/strongswan-legacy/src/www/vpn_ipsec_phase2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/strongswan-legacy/src/www/vpn_ipsec_phase2.php -------------------------------------------------------------------------------- /security/stunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/stunnel/Makefile -------------------------------------------------------------------------------- /security/stunnel/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/stunnel/pkg-descr -------------------------------------------------------------------------------- /security/stunnel/src/etc/inc/plugins.inc.d/stunnel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/stunnel/src/etc/inc/plugins.inc.d/stunnel.inc -------------------------------------------------------------------------------- /security/stunnel/src/etc/rc.d/identd_stunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/stunnel/src/etc/rc.d/identd_stunnel -------------------------------------------------------------------------------- /security/stunnel/src/opnsense/scripts/stunnel/generate_certs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/stunnel/src/opnsense/scripts/stunnel/generate_certs.php -------------------------------------------------------------------------------- /security/stunnel/src/opnsense/scripts/stunnel/identd_stunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/stunnel/src/opnsense/scripts/stunnel/identd_stunnel.py -------------------------------------------------------------------------------- /security/tailscale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tailscale/Makefile -------------------------------------------------------------------------------- /security/tailscale/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tailscale/pkg-descr -------------------------------------------------------------------------------- /security/tailscale/src/etc/inc/plugins.inc.d/tailscale.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tailscale/src/etc/inc/plugins.inc.d/tailscale.inc -------------------------------------------------------------------------------- /security/tailscale/src/opnsense/www/js/widgets/Tailscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tailscale/src/opnsense/www/js/widgets/Tailscale.js -------------------------------------------------------------------------------- /security/tinc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/Makefile -------------------------------------------------------------------------------- /security/tinc/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/pkg-descr -------------------------------------------------------------------------------- /security/tinc/src/etc/inc/plugins.inc.d/tinc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/etc/inc/plugins.inc.d/tinc.inc -------------------------------------------------------------------------------- /security/tinc/src/etc/rc.d/opnsense-tincd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/etc/rc.d/opnsense-tincd -------------------------------------------------------------------------------- /security/tinc/src/opnsense/mvc/app/models/OPNsense/Tinc/Tinc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/opnsense/mvc/app/models/OPNsense/Tinc/Tinc.php -------------------------------------------------------------------------------- /security/tinc/src/opnsense/mvc/app/models/OPNsense/Tinc/Tinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/opnsense/mvc/app/models/OPNsense/Tinc/Tinc.xml -------------------------------------------------------------------------------- /security/tinc/src/opnsense/mvc/app/views/OPNsense/Tinc/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/opnsense/mvc/app/views/OPNsense/Tinc/index.volt -------------------------------------------------------------------------------- /security/tinc/src/opnsense/scripts/OPNsense/Tinc/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /security/tinc/src/opnsense/scripts/OPNsense/Tinc/lib/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/opnsense/scripts/OPNsense/Tinc/lib/objects.py -------------------------------------------------------------------------------- /security/tinc/src/opnsense/scripts/OPNsense/Tinc/list_ciphers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/opnsense/scripts/OPNsense/Tinc/list_ciphers.py -------------------------------------------------------------------------------- /security/tinc/src/opnsense/scripts/OPNsense/Tinc/tincd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tinc/src/opnsense/scripts/OPNsense/Tinc/tincd.py -------------------------------------------------------------------------------- /security/tor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/Makefile -------------------------------------------------------------------------------- /security/tor/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/pkg-descr -------------------------------------------------------------------------------- /security/tor/src/etc/inc/plugins.inc.d/tor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/etc/inc/plugins.inc.d/tor.inc -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/ACL/ACL.xml -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/General.php -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/General.xml -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/Relay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/Relay.php -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/Relay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/models/OPNsense/Tor/Relay.xml -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/views/OPNsense/Tor/error.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/views/OPNsense/Tor/error.volt -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/views/OPNsense/Tor/general.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/views/OPNsense/Tor/general.volt -------------------------------------------------------------------------------- /security/tor/src/opnsense/mvc/app/views/OPNsense/Tor/info.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/mvc/app/views/OPNsense/Tor/info.volt -------------------------------------------------------------------------------- /security/tor/src/opnsense/scripts/tor/gen_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/scripts/tor/gen_key -------------------------------------------------------------------------------- /security/tor/src/opnsense/scripts/tor/get_hostnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/scripts/tor/get_hostnames -------------------------------------------------------------------------------- /security/tor/src/opnsense/scripts/tor/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/scripts/tor/setup.sh -------------------------------------------------------------------------------- /security/tor/src/opnsense/scripts/tor/tor_diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/scripts/tor/tor_diag -------------------------------------------------------------------------------- /security/tor/src/opnsense/scripts/tor/tor_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/scripts/tor/tor_helper.php -------------------------------------------------------------------------------- /security/tor/src/opnsense/service/conf/actions.d/actions_tor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/service/conf/actions.d/actions_tor.conf -------------------------------------------------------------------------------- /security/tor/src/opnsense/service/templates/OPNsense/Tor/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/service/templates/OPNsense/Tor/+TARGETS -------------------------------------------------------------------------------- /security/tor/src/opnsense/service/templates/OPNsense/Tor/tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/service/templates/OPNsense/Tor/tor -------------------------------------------------------------------------------- /security/tor/src/opnsense/service/templates/OPNsense/Tor/torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/tor/src/opnsense/service/templates/OPNsense/Tor/torrc -------------------------------------------------------------------------------- /security/wazuh-agent/+POST_DEINSTALL.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/wazuh-agent/+POST_DEINSTALL.post -------------------------------------------------------------------------------- /security/wazuh-agent/+POST_INSTALL.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/wazuh-agent/+POST_INSTALL.post -------------------------------------------------------------------------------- /security/wazuh-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/wazuh-agent/Makefile -------------------------------------------------------------------------------- /security/wazuh-agent/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/wazuh-agent/pkg-descr -------------------------------------------------------------------------------- /security/wazuh-agent/src/etc/inc/plugins.inc.d/wazuhagent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/wazuh-agent/src/etc/inc/plugins.inc.d/wazuhagent.inc -------------------------------------------------------------------------------- /security/wazuh-agent/src/opnsense/scripts/wazuh/opnsense-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/wazuh-agent/src/opnsense/scripts/wazuh/opnsense-fw -------------------------------------------------------------------------------- /security/wazuh-agent/src/opnsense/scripts/wazuh/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/security/wazuh-agent/src/opnsense/scripts/wazuh/setup.php -------------------------------------------------------------------------------- /sysutils/apcupsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apcupsd/Makefile -------------------------------------------------------------------------------- /sysutils/apcupsd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apcupsd/pkg-descr -------------------------------------------------------------------------------- /sysutils/apcupsd/src/etc/inc/plugins.inc.d/apcupsd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apcupsd/src/etc/inc/plugins.inc.d/apcupsd.inc -------------------------------------------------------------------------------- /sysutils/apcupsd/src/opnsense/www/js/widgets/Apcupsd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apcupsd/src/opnsense/www/js/widgets/Apcupsd.js -------------------------------------------------------------------------------- /sysutils/apcupsd/src/opnsense/www/js/widgets/Metadata/Apcupsd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apcupsd/src/opnsense/www/js/widgets/Metadata/Apcupsd.xml -------------------------------------------------------------------------------- /sysutils/apuled/+POST_INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/+POST_INSTALL -------------------------------------------------------------------------------- /sysutils/apuled/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/LICENSE -------------------------------------------------------------------------------- /sysutils/apuled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/Makefile -------------------------------------------------------------------------------- /sysutils/apuled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/README.md -------------------------------------------------------------------------------- /sysutils/apuled/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/pkg-descr -------------------------------------------------------------------------------- /sysutils/apuled/src/etc/rc.syshook.d/early/30-apuled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/src/etc/rc.syshook.d/early/30-apuled -------------------------------------------------------------------------------- /sysutils/apuled/src/etc/rc.syshook.d/start/60-apuled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/src/etc/rc.syshook.d/start/60-apuled -------------------------------------------------------------------------------- /sysutils/apuled/src/opnsense/scripts/apuled/apuledctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/apuled/src/opnsense/scripts/apuled/apuledctl -------------------------------------------------------------------------------- /sysutils/beats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/beats/Makefile -------------------------------------------------------------------------------- /sysutils/beats/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/beats/pkg-descr -------------------------------------------------------------------------------- /sysutils/cpu-microcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/cpu-microcode/Makefile -------------------------------------------------------------------------------- /sysutils/cpu-microcode/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/cpu-microcode/pkg-descr -------------------------------------------------------------------------------- /sysutils/cpu-microcode/src/etc/rc.loader.d/40-cpu-microcode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/cpu-microcode/src/etc/rc.loader.d/40-cpu-microcode.in -------------------------------------------------------------------------------- /sysutils/dec-hw/+POST_INSTALL: -------------------------------------------------------------------------------- 1 | /usr/local/etc/rc.syshook.d/early/30-powerstat 2 | -------------------------------------------------------------------------------- /sysutils/dec-hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dec-hw/Makefile -------------------------------------------------------------------------------- /sysutils/dec-hw/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dec-hw/pkg-descr -------------------------------------------------------------------------------- /sysutils/dec-hw/src/etc/rc.syshook.d/early/30-powerstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dec-hw/src/etc/rc.syshook.d/early/30-powerstat -------------------------------------------------------------------------------- /sysutils/dec-hw/src/opnsense/scripts/dec-hw/powerstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dec-hw/src/opnsense/scripts/dec-hw/powerstat -------------------------------------------------------------------------------- /sysutils/dec-hw/src/opnsense/www/js/widgets/DecHW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dec-hw/src/opnsense/www/js/widgets/DecHW.js -------------------------------------------------------------------------------- /sysutils/dec-hw/src/opnsense/www/js/widgets/Metadata/DecHW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dec-hw/src/opnsense/www/js/widgets/Metadata/DecHW.xml -------------------------------------------------------------------------------- /sysutils/dmidecode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dmidecode/Makefile -------------------------------------------------------------------------------- /sysutils/dmidecode/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dmidecode/pkg-descr -------------------------------------------------------------------------------- /sysutils/dmidecode/src/opnsense/www/js/widgets/Dmidecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/dmidecode/src/opnsense/www/js/widgets/Dmidecode.js -------------------------------------------------------------------------------- /sysutils/gdrive-backup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/gdrive-backup/Makefile -------------------------------------------------------------------------------- /sysutils/gdrive-backup/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/gdrive-backup/pkg-descr -------------------------------------------------------------------------------- /sysutils/gdrive-backup/src/etc/inc/plugins.inc.d/gdrive.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/gdrive-backup/src/etc/inc/plugins.inc.d/gdrive.inc -------------------------------------------------------------------------------- /sysutils/git-backup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/git-backup/Makefile -------------------------------------------------------------------------------- /sysutils/git-backup/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/git-backup/pkg-descr -------------------------------------------------------------------------------- /sysutils/git-backup/src/etc/rc.syshook.d/config/10-git-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/git-backup/src/etc/rc.syshook.d/config/10-git-backup -------------------------------------------------------------------------------- /sysutils/hw-probe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/hw-probe/Makefile -------------------------------------------------------------------------------- /sysutils/hw-probe/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/hw-probe/pkg-descr -------------------------------------------------------------------------------- /sysutils/lcdproc-sdeclcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/lcdproc-sdeclcd/Makefile -------------------------------------------------------------------------------- /sysutils/lcdproc-sdeclcd/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/lcdproc-sdeclcd/pkg-descr -------------------------------------------------------------------------------- /sysutils/lcdproc-sdeclcd/src/etc/LCDd-sdeclcd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/lcdproc-sdeclcd/src/etc/LCDd-sdeclcd.conf -------------------------------------------------------------------------------- /sysutils/mail-backup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/mail-backup/Makefile -------------------------------------------------------------------------------- /sysutils/mail-backup/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/mail-backup/pkg-descr -------------------------------------------------------------------------------- /sysutils/munin-node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/munin-node/Makefile -------------------------------------------------------------------------------- /sysutils/munin-node/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/munin-node/pkg-descr -------------------------------------------------------------------------------- /sysutils/munin-node/src/etc/inc/plugins.inc.d/muninnode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/munin-node/src/etc/inc/plugins.inc.d/muninnode.inc -------------------------------------------------------------------------------- /sysutils/nextcloud-backup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nextcloud-backup/Makefile -------------------------------------------------------------------------------- /sysutils/nextcloud-backup/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nextcloud-backup/pkg-descr -------------------------------------------------------------------------------- /sysutils/node_exporter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/node_exporter/Makefile -------------------------------------------------------------------------------- /sysutils/node_exporter/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/node_exporter/pkg-descr -------------------------------------------------------------------------------- /sysutils/nut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/Makefile -------------------------------------------------------------------------------- /sysutils/nut/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/pkg-descr -------------------------------------------------------------------------------- /sysutils/nut/src/etc/inc/plugins.inc.d/nut.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/etc/inc/plugins.inc.d/nut.inc -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/mvc/app/models/OPNsense/Nut/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/mvc/app/models/OPNsense/Nut/ACL/ACL.xml -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/mvc/app/models/OPNsense/Nut/Nut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/mvc/app/models/OPNsense/Nut/Nut.php -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/mvc/app/models/OPNsense/Nut/Nut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/mvc/app/models/OPNsense/Nut/Nut.xml -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/mvc/app/views/OPNsense/Nut/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/mvc/app/views/OPNsense/Nut/index.volt -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/scripts/OPNsense/Nut/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/scripts/OPNsense/Nut/setup.sh -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/service/conf/actions.d/actions_nut.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/service/conf/actions.d/actions_nut.conf -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/+TARGETS -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/nut -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/nut.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/nut.conf -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/ups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/service/templates/OPNsense/Nut/ups.conf -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/www/js/widgets/Metadata/Nut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/www/js/widgets/Metadata/Nut.xml -------------------------------------------------------------------------------- /sysutils/nut/src/opnsense/www/js/widgets/Nut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/nut/src/opnsense/www/js/widgets/Nut.js -------------------------------------------------------------------------------- /sysutils/puppet-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/puppet-agent/Makefile -------------------------------------------------------------------------------- /sysutils/puppet-agent/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/puppet-agent/pkg-descr -------------------------------------------------------------------------------- /sysutils/puppet-agent/src/etc/inc/plugins.inc.d/puppetagent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/puppet-agent/src/etc/inc/plugins.inc.d/puppetagent.inc -------------------------------------------------------------------------------- /sysutils/sftp-backup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/sftp-backup/Makefile -------------------------------------------------------------------------------- /sysutils/sftp-backup/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/sftp-backup/pkg-descr -------------------------------------------------------------------------------- /sysutils/smart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/smart/Makefile -------------------------------------------------------------------------------- /sysutils/smart/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/smart/pkg-descr -------------------------------------------------------------------------------- /sysutils/smart/src/opnsense/www/js/widgets/Metadata/Smart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/smart/src/opnsense/www/js/widgets/Metadata/Smart.xml -------------------------------------------------------------------------------- /sysutils/smart/src/opnsense/www/js/widgets/Smart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/smart/src/opnsense/www/js/widgets/Smart.js -------------------------------------------------------------------------------- /sysutils/virtualbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/virtualbox/Makefile -------------------------------------------------------------------------------- /sysutils/virtualbox/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/virtualbox/pkg-descr -------------------------------------------------------------------------------- /sysutils/virtualbox/src/etc/rc.syshook.d/early/50-virtualbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/virtualbox/src/etc/rc.syshook.d/early/50-virtualbox -------------------------------------------------------------------------------- /sysutils/virtualbox/src/etc/rc.syshook.d/start/50-virtualbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/virtualbox/src/etc/rc.syshook.d/start/50-virtualbox -------------------------------------------------------------------------------- /sysutils/vmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/vmware/Makefile -------------------------------------------------------------------------------- /sysutils/vmware/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/vmware/pkg-descr -------------------------------------------------------------------------------- /sysutils/vmware/src/etc/rc.syshook.d/early/50-vmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/vmware/src/etc/rc.syshook.d/early/50-vmware -------------------------------------------------------------------------------- /sysutils/vmware/src/etc/rc.syshook.d/start/50-vmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/vmware/src/etc/rc.syshook.d/start/50-vmware -------------------------------------------------------------------------------- /sysutils/xen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/xen/Makefile -------------------------------------------------------------------------------- /sysutils/xen/pkg-descr: -------------------------------------------------------------------------------- 1 | FreeBSD VM tools for Citrix XenServer and XCP 2 | -------------------------------------------------------------------------------- /sysutils/xen/src/etc/rc.syshook.d/start/50-xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/sysutils/xen/src/etc/rc.syshook.d/start/50-xen -------------------------------------------------------------------------------- /vendor/sunnyvalley/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/vendor/sunnyvalley/Makefile -------------------------------------------------------------------------------- /vendor/sunnyvalley/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/vendor/sunnyvalley/pkg-descr -------------------------------------------------------------------------------- /vendor/sunnyvalley/src/etc/pkg/fingerprints/SunnyValley/revoked/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sunnyvalley/src/etc/pkg/repos/SunnyValley.conf.shadow.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/vendor/sunnyvalley/src/etc/pkg/repos/SunnyValley.conf.shadow.in -------------------------------------------------------------------------------- /www/OPNProxy/+POST_DEINSTALL.post: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm /usr/local/etc/squid/auth/10-opnproxy-ext.auth.conf 3 | -------------------------------------------------------------------------------- /www/OPNProxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/Makefile -------------------------------------------------------------------------------- /www/OPNProxy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/pkg-descr -------------------------------------------------------------------------------- /www/OPNProxy/src/etc/inc/plugins.inc.d/opnproxy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/etc/inc/plugins.inc.d/opnproxy.inc -------------------------------------------------------------------------------- /www/OPNProxy/src/opnsense/mvc/app/models/Deciso/Proxy/ACL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/opnsense/mvc/app/models/Deciso/Proxy/ACL.php -------------------------------------------------------------------------------- /www/OPNProxy/src/opnsense/mvc/app/models/Deciso/Proxy/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/opnsense/mvc/app/models/Deciso/Proxy/ACL.xml -------------------------------------------------------------------------------- /www/OPNProxy/src/opnsense/mvc/app/views/Deciso/Proxy/acl.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/opnsense/mvc/app/views/Deciso/Proxy/acl.volt -------------------------------------------------------------------------------- /www/OPNProxy/src/opnsense/scripts/OPNProxy/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/opnsense/scripts/OPNProxy/lib/__init__.py -------------------------------------------------------------------------------- /www/OPNProxy/src/opnsense/scripts/OPNProxy/redis_sync_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/opnsense/scripts/OPNProxy/redis_sync_users.py -------------------------------------------------------------------------------- /www/OPNProxy/src/opnsense/scripts/OPNProxy/squid_acl_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/opnsense/scripts/OPNProxy/squid_acl_helper.py -------------------------------------------------------------------------------- /www/OPNProxy/src/opnsense/service/templates/Deciso/Proxy/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/OPNProxy/src/opnsense/service/templates/Deciso/Proxy/+TARGETS -------------------------------------------------------------------------------- /www/c-icap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/Makefile -------------------------------------------------------------------------------- /www/c-icap/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/pkg-descr -------------------------------------------------------------------------------- /www/c-icap/src/etc/inc/plugins.inc.d/cicap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/etc/inc/plugins.inc.d/cicap.inc -------------------------------------------------------------------------------- /www/c-icap/src/etc/rc.syshook.d/start/50-c-icap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/etc/rc.syshook.d/start/50-c-icap -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/mvc/app/models/OPNsense/CICAP/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/mvc/app/models/OPNsense/CICAP/ACL/ACL.xml -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/mvc/app/models/OPNsense/CICAP/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/mvc/app/models/OPNsense/CICAP/General.php -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/mvc/app/models/OPNsense/CICAP/General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/mvc/app/models/OPNsense/CICAP/General.xml -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/mvc/app/views/OPNsense/CICAP/general.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/mvc/app/views/OPNsense/CICAP/general.volt -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/scripts/OPNsense/CICAP/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/scripts/OPNsense/CICAP/setup.sh -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/service/conf/actions.d/actions_cicap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/service/conf/actions.d/actions_cicap.conf -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/service/templates/OPNsense/CICAP/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/service/templates/OPNsense/CICAP/+TARGETS -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/service/templates/OPNsense/CICAP/VIR_MODE_PROGRESS: -------------------------------------------------------------------------------- 1 | Downloaded %Ib bytes from %VFS of data
2 | -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/service/templates/OPNsense/CICAP/VIR_MODE_TAIL: -------------------------------------------------------------------------------- 1 | Download your file(size=%Ib) from %VFR
2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/c-icap/src/opnsense/service/templates/OPNsense/CICAP/c_icap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/c-icap/src/opnsense/service/templates/OPNsense/CICAP/c_icap -------------------------------------------------------------------------------- /www/cache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/cache/Makefile -------------------------------------------------------------------------------- /www/cache/pkg-descr: -------------------------------------------------------------------------------- 1 | Add and enable caching for the web GUI to accelerate requests. 2 | -------------------------------------------------------------------------------- /www/cache/src/etc/php/ext-10-opcache-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/cache/src/etc/php/ext-10-opcache-settings.ini -------------------------------------------------------------------------------- /www/caddy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/Makefile -------------------------------------------------------------------------------- /www/caddy/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/pkg-descr -------------------------------------------------------------------------------- /www/caddy/src/etc/inc/plugins.inc.d/caddy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/etc/inc/plugins.inc.d/caddy.inc -------------------------------------------------------------------------------- /www/caddy/src/etc/ssl/ext_sources/caddy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/etc/ssl/ext_sources/caddy.conf -------------------------------------------------------------------------------- /www/caddy/src/etc/syslog-ng.conf.d/caddy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/etc/syslog-ng.conf.d/caddy.conf -------------------------------------------------------------------------------- /www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy/ACL/ACL.xml -------------------------------------------------------------------------------- /www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy/Caddy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy/Caddy.php -------------------------------------------------------------------------------- /www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy/Caddy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/mvc/app/models/OPNsense/Caddy/Caddy.xml -------------------------------------------------------------------------------- /www/caddy/src/opnsense/mvc/app/views/OPNsense/Caddy/general.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/mvc/app/views/OPNsense/Caddy/general.volt -------------------------------------------------------------------------------- /www/caddy/src/opnsense/scripts/OPNsense/Caddy/caddy_certs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/scripts/OPNsense/Caddy/caddy_certs.php -------------------------------------------------------------------------------- /www/caddy/src/opnsense/scripts/OPNsense/Caddy/caddy_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/scripts/OPNsense/Caddy/caddy_control.py -------------------------------------------------------------------------------- /www/caddy/src/opnsense/scripts/OPNsense/Caddy/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/scripts/OPNsense/Caddy/setup.sh -------------------------------------------------------------------------------- /www/caddy/src/opnsense/service/conf/actions.d/actions_caddy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/service/conf/actions.d/actions_caddy.conf -------------------------------------------------------------------------------- /www/caddy/src/opnsense/service/templates/OPNsense/Caddy/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/service/templates/OPNsense/Caddy/+TARGETS -------------------------------------------------------------------------------- /www/caddy/src/opnsense/service/templates/OPNsense/Caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/service/templates/OPNsense/Caddy/Caddyfile -------------------------------------------------------------------------------- /www/caddy/src/opnsense/www/js/widgets/CaddyDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/www/js/widgets/CaddyDomain.js -------------------------------------------------------------------------------- /www/caddy/src/opnsense/www/js/widgets/Metadata/Caddy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/caddy/src/opnsense/www/js/widgets/Metadata/Caddy.xml -------------------------------------------------------------------------------- /www/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/Makefile -------------------------------------------------------------------------------- /www/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/README.md -------------------------------------------------------------------------------- /www/nginx/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/pkg-descr -------------------------------------------------------------------------------- /www/nginx/src/etc/inc/plugins.inc.d/nginx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/inc/plugins.inc.d/nginx.inc -------------------------------------------------------------------------------- /www/nginx/src/etc/nginx/opnsense_http_vhost_plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/nginx/opnsense_http_vhost_plugins/README -------------------------------------------------------------------------------- /www/nginx/src/etc/nginx/opnsense_http_vhost_plugins/vts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/nginx/opnsense_http_vhost_plugins/vts.conf -------------------------------------------------------------------------------- /www/nginx/src/etc/nginx/opnsense_stream_vhost_plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/nginx/opnsense_stream_vhost_plugins/README -------------------------------------------------------------------------------- /www/nginx/src/etc/nginx/views/opnsense_error_403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/nginx/views/opnsense_error_403.html -------------------------------------------------------------------------------- /www/nginx/src/etc/nginx/views/opnsense_error_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/nginx/views/opnsense_error_404.html -------------------------------------------------------------------------------- /www/nginx/src/etc/nginx/views/opnsense_server_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/nginx/views/opnsense_server_error.html -------------------------------------------------------------------------------- /www/nginx/src/etc/nginx/views/waf_denied.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/etc/nginx/views/waf_denied.html -------------------------------------------------------------------------------- /www/nginx/src/opnsense/mvc/app/models/OPNsense/Nginx/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/mvc/app/models/OPNsense/Nginx/ACL/ACL.xml -------------------------------------------------------------------------------- /www/nginx/src/opnsense/mvc/app/models/OPNsense/Nginx/Nginx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/mvc/app/models/OPNsense/Nginx/Nginx.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/mvc/app/models/OPNsense/Nginx/Nginx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/mvc/app/models/OPNsense/Nginx/Nginx.xml -------------------------------------------------------------------------------- /www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/ban.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/ban.volt -------------------------------------------------------------------------------- /www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/index.volt -------------------------------------------------------------------------------- /www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/logs.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/logs.volt -------------------------------------------------------------------------------- /www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/vts.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/vts.volt -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/csp_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/csp_report.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/list_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/list_logs.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/naxsi_rule_download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/naxsi_rule_download.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/ngx_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/ngx_auth.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/ngx_autoblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/ngx_autoblock.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/ngx_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/ngx_functions.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/ngx_showConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/ngx_showConfig.py -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/ngx_testConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/ngx_testConfig.sh -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/read_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/read_log.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/setup.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/tls_ua_fingerprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/tls_ua_fingerprint.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/scripts/nginx/vts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/scripts/nginx/vts.php -------------------------------------------------------------------------------- /www/nginx/src/opnsense/service/conf/actions.d/actions_nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/service/conf/actions.d/actions_nginx.conf -------------------------------------------------------------------------------- /www/nginx/src/opnsense/service/templates/OPNsense/Nginx/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/service/templates/OPNsense/Nginx/+TARGETS -------------------------------------------------------------------------------- /www/nginx/src/opnsense/service/templates/OPNsense/Nginx/http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/service/templates/OPNsense/Nginx/http.conf -------------------------------------------------------------------------------- /www/nginx/src/opnsense/service/templates/OPNsense/Nginx/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/service/templates/OPNsense/Nginx/nginx -------------------------------------------------------------------------------- /www/nginx/src/opnsense/service/templates/OPNsense/Nginx/php_fpm: -------------------------------------------------------------------------------- 1 | php_fpm_enable="YES" 2 | command_args="-R" 3 | -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/css/nginx/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/css/nginx/index.css -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/css/nginx/logs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/css/nginx/logs.css -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/css/nginx/vts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/css/nginx/vts.css -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/.eslintrc.json -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/dist/README.md -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/dist/configuration.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/dist/configuration.min.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/dist/logviewer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/dist/logviewer.min.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/dist/tls_handshakes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/dist/tls_handshakes.min.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/lib/backbone-min.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/lib/backbone-min.js.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/lib/backbone-min.js.LICENSE -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/lib/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/lib/lodash.min.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/lib/lodash.min.js.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/lib/lodash.min.js.LICENSE -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/npm-shrinkwrap.json -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/package.json -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/controller/LogView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/controller/LogView.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/controller/SingleTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/controller/SingleTab.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/controller/TabLogList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/controller/TabLogList.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/logviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/logviewer.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/IPACLCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/models/IPACLCollection.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/IPACLModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/models/IPACLModel.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/LogCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/models/LogCollection.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/LogColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/models/LogColumn.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/LogFileMenuEntry.js: -------------------------------------------------------------------------------- 1 | export default Backbone.Model.extend({ 2 | }); 3 | -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/LogLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/models/LogLine.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/LogServerMenu.js: -------------------------------------------------------------------------------- 1 | export default Backbone.Model.extend({ 2 | }); 3 | -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/models/TLSFingerprints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/models/TLSFingerprints.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/nginx_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/nginx_config.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/templates/LogColumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/templates/LogColumn.html -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/templates/LogLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/templates/LogLine.html -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/templates/TabModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/templates/TabModel.html -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/templates/logviewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/templates/logviewer.html -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/templates/single_tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/templates/single_tab.html -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/src/tls_handshakes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/src/tls_handshakes.js -------------------------------------------------------------------------------- /www/nginx/src/opnsense/www/js/nginx/webpack.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/nginx/src/opnsense/www/js/nginx/webpack.conf.js -------------------------------------------------------------------------------- /www/squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/Makefile -------------------------------------------------------------------------------- /www/squid/contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/Makefile -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_ACCESS_DENIED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_ACCESS_DENIED.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_AGENT_CONFIGURE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_AGENT_CONFIGURE.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_AGENT_WPAD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_AGENT_WPAD.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_CANNOT_FORWARD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_CANNOT_FORWARD.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_CONFLICT_HOST.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_CONFLICT_HOST.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_CONNECT_FAIL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_CONNECT_FAIL.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_DIR_LISTING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_DIR_LISTING.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_DNS_FAIL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_DNS_FAIL.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_ESI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_ESI.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FORWARDING_DENIED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FORWARDING_DENIED.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_DISABLED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_DISABLED.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_FAILURE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_FAILURE.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_FORBIDDEN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_FORBIDDEN.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_NOT_FOUND.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_NOT_FOUND.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_PUT_CREATED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_PUT_CREATED.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_PUT_ERROR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_PUT_ERROR.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_PUT_MODIFIED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_PUT_MODIFIED.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_FTP_UNAVAILABLE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_FTP_UNAVAILABLE.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_GATEWAY_FAILURE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_GATEWAY_FAILURE.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_ICAP_FAILURE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_ICAP_FAILURE.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_INVALID_REQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_INVALID_REQ.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_INVALID_RESP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_INVALID_RESP.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_INVALID_URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_INVALID_URL.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_LIFETIME_EXP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_LIFETIME_EXP.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_NO_RELAY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_NO_RELAY.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_PROTOCOL_UNKNOWN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_PROTOCOL_UNKNOWN.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_READ_ERROR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_READ_ERROR.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_READ_TIMEOUT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_READ_TIMEOUT.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_SHUTTING_DOWN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_SHUTTING_DOWN.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_SOCKET_FAILURE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_SOCKET_FAILURE.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_TOO_BIG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_TOO_BIG.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_UNSUP_HTTPVERSION.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_UNSUP_HTTPVERSION.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_UNSUP_REQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_UNSUP_REQ.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_URN_RESOLVE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_URN_RESOLVE.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_WRITE_ERROR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_WRITE_ERROR.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/ERR_ZERO_SIZE_OBJECT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/ERR_ZERO_SIZE_OBJECT.html -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/error-details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/error-details.txt -------------------------------------------------------------------------------- /www/squid/contrib/template_error_pages/errorpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/contrib/template_error_pages/errorpage.css -------------------------------------------------------------------------------- /www/squid/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/pkg-descr -------------------------------------------------------------------------------- /www/squid/src/etc/inc/plugins.inc.d/squid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/etc/inc/plugins.inc.d/squid.inc -------------------------------------------------------------------------------- /www/squid/src/opnsense/mvc/app/models/OPNsense/Proxy/ACL/ACL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/mvc/app/models/OPNsense/Proxy/ACL/ACL.xml -------------------------------------------------------------------------------- /www/squid/src/opnsense/mvc/app/models/OPNsense/Proxy/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/mvc/app/models/OPNsense/Proxy/Proxy.php -------------------------------------------------------------------------------- /www/squid/src/opnsense/mvc/app/models/OPNsense/Proxy/Proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/mvc/app/models/OPNsense/Proxy/Proxy.xml -------------------------------------------------------------------------------- /www/squid/src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt -------------------------------------------------------------------------------- /www/squid/src/opnsense/scripts/proxy/deploy_error_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/scripts/proxy/deploy_error_pages.py -------------------------------------------------------------------------------- /www/squid/src/opnsense/scripts/proxy/download_error_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/scripts/proxy/download_error_pages.py -------------------------------------------------------------------------------- /www/squid/src/opnsense/scripts/proxy/fetchACLs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/scripts/proxy/fetchACLs.py -------------------------------------------------------------------------------- /www/squid/src/opnsense/scripts/proxy/generate_cert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/scripts/proxy/generate_cert.php -------------------------------------------------------------------------------- /www/squid/src/opnsense/scripts/proxy/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/scripts/proxy/lib/__init__.py -------------------------------------------------------------------------------- /www/squid/src/opnsense/scripts/proxy/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/scripts/proxy/setup.sh -------------------------------------------------------------------------------- /www/squid/src/opnsense/scripts/syslog/logformats/squid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/scripts/syslog/logformats/squid.py -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/conf/actions.d/actions_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/conf/actions.d/actions_proxy.conf -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/templates/OPNsense/Proxy/+TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/templates/OPNsense/Proxy/+TARGETS -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/templates/OPNsense/Proxy/auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/templates/OPNsense/Proxy/auth.conf -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/templates/OPNsense/Proxy/ca.pem.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/templates/OPNsense/Proxy/ca.pem.id -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/templates/OPNsense/Proxy/rc.conf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/templates/OPNsense/Proxy/rc.conf.d -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/templates/OPNsense/Proxy/snmp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/templates/OPNsense/Proxy/snmp.conf -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/templates/OPNsense/Proxy/squid.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/templates/OPNsense/Proxy/squid.pam -------------------------------------------------------------------------------- /www/squid/src/opnsense/service/templates/OPNsense/Proxy/wpad.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/squid/src/opnsense/service/templates/OPNsense/Proxy/wpad.dat -------------------------------------------------------------------------------- /www/web-proxy-sso/+POST_DEINSTALL.post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/web-proxy-sso/+POST_DEINSTALL.post -------------------------------------------------------------------------------- /www/web-proxy-sso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/web-proxy-sso/Makefile -------------------------------------------------------------------------------- /www/web-proxy-sso/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/web-proxy-sso/pkg-descr -------------------------------------------------------------------------------- /www/web-proxy-sso/src/etc/inc/plugins.inc.d/proxy_sso.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opnsense/plugins/HEAD/www/web-proxy-sso/src/etc/inc/plugins.inc.d/proxy_sso.inc --------------------------------------------------------------------------------