├── .github └── workflows │ └── codacy-analysis.yml ├── .gitignore ├── .idea ├── copyright │ └── MIT.xml ├── easy-admin.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── 435_nm_NetworkManager_nmcli_wireguard_interface_sh.xml ├── vcs.xml └── workspace.xml ├── 020-repos ├── 020-repos-arch.sh ├── 020-repos-centos-8-4.sh ├── 020-repos-debian-11.sh ├── 020-repos-debian-12.sh ├── 020-repos-fedora-35.sh ├── 021-repos-centos-nice-things.sh ├── 025-debian-some-experimental.sh ├── 025-debian-some-testing.sh └── 025-debian-some-unstable.sh ├── 022-fonts-ibm-plex.sh ├── 050-git ├── 049-git-github-cli-install.sh ├── 050-git-github-cli-force-ssh.sh ├── 051-git-cred-helper-gcmc.sh ├── 052-git-cred-helper-gcmc-gpg.sh └── 053-git-cred-helper-cache.sh ├── 080-gnupg ├── 080-gnupg-setup-global.sh ├── 081-gnupg-setup-user.sh ├── 084-gnupg-user-create-key.sh └── 085-gnupg-backup-keys.sh ├── 090-hw-intel.sh ├── 100-cisecurity ├── 100-cis-packages-remove.sh ├── 111-cis-usb-storage-no.sh ├── 112-cis-sudo.sh ├── 113-cis-sudo-log.sh ├── 114-cis-aide.sh ├── 120-cis-boot-fperm.sh ├── 121-cis-grub-passwd.sh ├── 122-cis-single-user.sh ├── 123-cis-apparmor.sh ├── 130-cis-avahi.sh ├── 131-cis-cups.sh ├── 133-cis-ldap-server.sh ├── 134-cis-vsftp-server.sh ├── 135-cis-inetutils.sh ├── 137-cis-samba.sh ├── 140-cis-snmp.sh ├── 150-cis-protocol-dccp.sh ├── 151-cis-protocol-sctp.sh ├── 152-cis-protocol-rds.sh ├── 153-cis-protocol-tipc.sh ├── 500-cis-dns-bind-dirs.sh ├── 522-cis-bind9-nologin.sh └── 580-cis-dhcp-server.sh ├── 110-kernel-sysctl ├── 02-linux_kernel.conf ├── 05-memory_usage_network_stack.conf ├── 06-net_core_netdev_max_backlog.conf ├── 10-ip_router_forwarding_state.conf ├── 10-no-ctrl-alt-del.conf ├── 13-randomize_va_space.conf ├── 17-netfilter_nat_conntrack.conf ├── 2-ignore-bogus-error.conf ├── 2-no-ipv6-eth1-red.conf ├── 20-ip_routing_controls.conf ├── 20-quiet-printk.conf ├── 21-reverse-path-filtering.conf ├── 30-shared_memory_for_apps.conf ├── 31-bridge_vs_memory_cache.conf ├── 40-no-suid-coredump.conf ├── 41-kernel_hardening.conf ├── 49-router_mode.conf ├── 51-kernel.kexec_load_disabled.conf ├── 51-net.core.bpf_jit_harden.conf ├── 55-ignore-icmp-broadcast.conf ├── 60-tcp-syncookies.conf ├── 70-binfmt_misc.conf ├── 71-fs_hardlink_protect.conf ├── 78-mc-forwarding ├── 80-conntrack-tcp-estab.conf ├── 80-tcp_throughput_performance.conf ├── README.sysctl ├── dev.tty.ldisc_autoload.conf ├── kernel.perf_event_paranoid.conf ├── kernel.unprivileged_bpf_disabled.conf ├── kernel.unprivileged_userns_clone.conf ├── kernel.yama.ptrace_scope.conf ├── net.ipv4.icmp_echo_ignore_all.conf ├── net.ipv4.ip_frag_time.conf ├── net.ipv4.ip_local_port_range.conf ├── net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait.conf ├── net.ipv4.tcp_congestion_control.conf ├── net.ipv4.tcp_fin_timeout.conf ├── net.ipv4.tcp_keepalive.conf ├── net.ipv4.tcp_max_syn_backlog.conf ├── net.ipv4.tcp_orphan_retries.conf ├── net.ipv4.tcp_rfc1337.conf ├── net.ipv4.tcp_sack_dsack.conf ├── net.ipv4.tcp_slow_start_after_idle.conf ├── net.ipv4.tcp_synack_retries.conf ├── net.ipv4.tcp_timestamps.conf ├── net.ipv6.conf.accept_ra.conf ├── vm.mmap_rnd.conf ├── vm.swappiness.conf └── vm.unprivileged_userfaultfd.conf ├── 120-core-hardening ├── 005-partitions-minimum.sh ├── 010-login-passwd-argon2id.sh ├── 010-login-passwd-sha512.sh ├── 011-su-logfile.sh ├── 015-pam-nologin-lockout.sh ├── 070-bashrc.sh ├── 071-bashrc.d-editor.sh ├── 124-logon-banners.sh ├── 300-rc.local.sh ├── 800-cron-no-users.sh └── machine-id-generic.sh ├── 150-sudo └── README.md ├── 200-debian-pkg-deps.sh ├── 200-init-systemd ├── 200-systemd-bootup-no-clear-screen.sh ├── 201-systemd-network-dnssec-disable.sh └── 202-systemd-network-dns-fallback-disable.sh ├── 210-debian-pkgs-optionals.sh ├── 300-kernel ├── 300-kernel-download-archlinux.sh ├── 300-kernel-download-debian.sh ├── 310-kernel-config-debian.sh ├── 320-kernel-build-archlinux.sh ├── 320-kernel-build-debian.sh ├── 380-kernel-hardening.sh ├── 390-systemd-journal.sh ├── KCONFIG_SEGMENTS ├── configs │ ├── .config │ ├── .config-5.15.12myc-sle-10-noinitrd │ ├── .config-5.15.12myc-sle-11-zeromods │ ├── .config-5.15.12myc-sle-12-nft │ ├── .config-5.15.12myc-sle-13-nobinfmt │ ├── .config-5.15.12myc-sle-4 │ ├── .config-5.15.12myc-sle-5 │ ├── .config-5.15.12myc-sle-6 │ ├── .config-5.15.12myc-sle-7 │ ├── .config-5.15.12myc-sle-8 │ ├── .config-5.15.12myc-sle-9-no-mods │ ├── .config-5.15.12myc-sle-9-no-mods.old │ ├── .config.old │ ├── INITRAMFS_INITRD_DISABLING │ ├── INTEL_EOL_I5_3470 │ ├── KCONFIG_DEBUG_INFO │ ├── KCONFIG_SYSTEM_TRUSTED_KEYRING │ ├── LXC_CONTAINER │ ├── VGA_RESOLUTIONS │ ├── bad │ │ ├── .config │ │ └── config-c0-no-modules-systemd-failed │ ├── config-4.19.194a0-nomodules-good │ ├── config-5.15.12-moduleless-noinitrd-hardened-working │ ├── config-arch-hardened │ ├── config.initramfs.disable │ ├── config.net.bare │ ├── good │ │ ├── config-4.19.0-17-amd64 │ │ ├── config-4.19.194a0-clone2-untrusted-nowifi │ │ ├── config-4.19.194a0-clone4-mdadm-lvm │ │ ├── config-4.19.194a0-clone5-lsmod-reducto │ │ ├── config-4.19.194a0-clone6-lsmod-reducto │ │ └── config-4.19.194a0-clone8-no-mod │ └── template.config └── gregkh@linuxfoundation.org.gpg.key ├── 400-network-managers ├── 400-net-network-manager.sh ├── 403-nm-resolver-check.sh ├── 405-nm-NetworkManager-disabled-systemd-resolverd.sh ├── 405-nm-NetworkManager-own-dhcp-client-resolver-disable.sh ├── 405-nm-NetworkManager-wifi-privacy.sh ├── 408-net-network-manager-desktop.sh ├── 430-nm-NetworkManager-nmcli-public-LAN-interface.sh ├── 433-nm-NetworkManager-nmcli-bridge-interface-private.sh ├── 435-nm-NetworkManager-nmcli-wireguard-interface.sh ├── 438-nm-NetworkManager-nmcli-bridge-closenet.sh ├── README.DESIGN.NetworkManager.md ├── maintainer-NetworkManager.sh └── maintainer-systemd-networkd.sh ├── 405-rsyslog ├── 405-rsyslog-server.sh ├── DESIGN.md ├── README.md ├── conf │ ├── rsyslog.d │ │ ├── console.conf │ │ ├── globals │ │ │ ├── global-mqueue.conf │ │ │ ├── global-tls-certificate.conf │ │ │ └── global.conf │ │ ├── imfile.conf │ │ ├── inputs │ │ │ ├── input-file.conf │ │ │ ├── input-imuxsock.conf │ │ │ ├── input-relp-10443.conf │ │ │ ├── input-syslog-daemon-info.conf │ │ │ ├── input-tcp-601.conf │ │ │ ├── input-tcp-tls-20443.conf │ │ │ ├── input-udp-10514.conf │ │ │ ├── output-relp.conf │ │ │ ├── output-tcp.conf │ │ │ ├── output-tls.conf │ │ │ └── output-udp.conf │ │ ├── modules │ │ │ ├── module-imuxsock.conf │ │ │ ├── module-kernel-log.conf │ │ │ ├── module-mark.conf │ │ │ ├── module-mmfields.conf │ │ │ ├── module-tls.conf │ │ │ └── module-udp.conf │ │ ├── ompgsql-postgres.conf │ │ ├── omstdout.conf │ │ ├── rsyslog.conf │ │ ├── rules │ │ │ ├── rule-fallback.conf │ │ │ ├── rule-relp-10443.conf │ │ │ ├── rule-tcp_20516.conf │ │ │ └── rule-tls_20443.conf │ │ ├── syslog-network-protocol23.conf │ │ ├── syslog-postgresql-log.conf │ │ ├── syslog-tls.conf │ │ ├── templates │ │ │ ├── template-fieldscsv.conf │ │ │ ├── template-kafka.conf │ │ │ ├── template-local.conf │ │ │ ├── template-relp.conf │ │ │ └── template-remote.conf │ │ └── xconsole.conf │ └── tmpfiles.d │ │ └── xconsole.conf ├── doc │ ├── DESIGN.config.format.md │ ├── DESIGN.md │ ├── HEADER.txt │ ├── KEYWORDS.md │ └── METADATA.md └── maintainer-rsyslog.sh ├── 410-net-dhcp-server ├── 410-net-dhcp-server-install.sh ├── 411-net-dhcp-server-isc.sh └── maintainer-dhcp-isc.sh ├── 415-net-dhclient ├── 411-net-dhclient.sh ├── 412-net-dhclient-nmcli.sh ├── 415-net-dhclient-debug.sh ├── README.dhclient.custom.script.md ├── README.dhclient.env.vars.md └── maintainer-dhcp-client-isc.sh ├── 416-net-dhcpcd ├── 416-net-dhcpcd.sh ├── README.md └── maintainer-dhcp-client-isc.sh ├── 420-firewalls ├── 420-fw-shorewall-install.sh ├── 421-fw-shorewall-config.sh ├── 424-fw-shorewall-init.sh ├── 425-fw-shorewall-systemd.sh ├── 426-fw-shorewall-params.sh ├── 429-fw-shorewall-dhclient.sh ├── README.shorewall.design ├── TODO ├── maintainer-fw-shorewall.sh └── shorewall │ ├── doc │ ├── CHAIN-NAMES-SHOREWALL.md │ ├── DESIGN.shorewall.hosts │ ├── DESIGN.shorewall.interfaces │ ├── DESIGN.shorewall.overall │ ├── DESIGN.shorewall.tips-hints │ ├── DESIGN.shorewall.zones.sh │ ├── README.macro.maclog │ └── README.obsoleted-files │ ├── etc │ └── shorewall │ │ ├── README.Debian │ │ ├── README.sandbay │ │ ├── README.txt │ │ ├── SSHKnock │ │ ├── accounting │ │ ├── blrules │ │ ├── clear │ │ ├── compile │ │ ├── conntrack │ │ ├── dhcp.conf │ │ ├── findgw │ │ ├── hosts │ │ ├── init │ │ ├── initdone │ │ ├── interfaces │ │ ├── isusable │ │ ├── mac-timed-access │ │ ├── maclist │ │ ├── maclog │ │ ├── macro.SSHKnock │ │ ├── mangle │ │ ├── mangle.annotated │ │ ├── masq.bak │ │ ├── nat │ │ ├── params │ │ ├── params.dpkg-old │ │ ├── policy │ │ ├── providers │ │ ├── refresh │ │ ├── refreshed │ │ ├── restore │ │ ├── restored │ │ ├── rules │ │ ├── rules.d │ │ ├── 100-section-all.rules │ │ ├── 110-section-established.rules │ │ ├── 130-section-related.rules │ │ ├── 140-section-invalid.rules │ │ ├── 150-section-untracked.rules │ │ ├── 200-section-new-FW-FW.rules │ │ ├── 200-section-new-FW-blue.rules │ │ ├── 200-section-new-FW-green.rules │ │ ├── 200-section-new-FW-red.rules │ │ ├── 200-section-new-FW-vmnet.rules │ │ ├── 200-section-new-FW-white.rules │ │ ├── 200-section-new-all-FW.rules │ │ ├── 200-section-new-all-blue.rules │ │ ├── 200-section-new-all-dmz.rules │ │ ├── 200-section-new-all-green.rules │ │ ├── 200-section-new-all-grn.rules │ │ ├── 200-section-new-all-red.rules │ │ ├── 200-section-new-all-vmnet.rules │ │ ├── 200-section-new-all-white.rules │ │ ├── 200-section-new-blue-FW.rules │ │ ├── 200-section-new-blue-red.rules │ │ ├── 200-section-new-dmz-FW.rules │ │ ├── 200-section-new-dmz-blue.rules │ │ ├── 200-section-new-dmz-dmz.rules │ │ ├── 200-section-new-green-FW.rules │ │ ├── 200-section-new-green-red.rules │ │ ├── 200-section-new-green-white.rules │ │ ├── 200-section-new-grn-FW.rules │ │ ├── 200-section-new-grn-red.rules │ │ ├── 200-section-new-grn-white.rules │ │ ├── 200-section-new-red-FW.rules │ │ ├── 200-section-new-red-blue.rules │ │ ├── 200-section-new-red-green.rules │ │ ├── 200-section-new-red-vmnet.rules │ │ ├── 200-section-new-white.rules │ │ ├── 200-section-new-wireguard.rules │ │ └── 200-section-new.rules │ │ ├── save │ │ ├── shorewall.conf │ │ ├── shorewall.conf.dpkg-old │ │ ├── snat │ │ ├── start │ │ ├── started │ │ ├── stop │ │ ├── stopped │ │ ├── stoppedrules │ │ ├── tcclasses │ │ ├── tcclear │ │ ├── tcdevices │ │ ├── tcinterfaces │ │ ├── timeframe-mac-blocked.sh │ │ ├── timeframe-mac-unblocked.sh │ │ ├── tunnels │ │ ├── update_tor_ipsets.sh │ │ └── zones │ ├── examples │ └── one-interface-default-deny │ │ ├── .hold │ │ ├── 100-section-all.rules │ │ ├── 110-section-established.rules │ │ ├── 130-section-related.rules │ │ ├── 140-section-invalid.rules │ │ ├── 150-section-untracked.rules │ │ ├── 200-section-new-FW-FW.rules │ │ ├── 200-section-new-FW-blue.rules │ │ ├── 200-section-new-FW-green.rules │ │ ├── 200-section-new-FW-red.rules │ │ ├── 200-section-new-FW-vmnet.rules │ │ ├── 200-section-new-FW-white.rules │ │ ├── 200-section-new-all-FW.rules │ │ ├── 200-section-new-all-blue.rules │ │ ├── 200-section-new-all-dmz.rules │ │ ├── 200-section-new-all-green.rules │ │ ├── 200-section-new-all-grn.rules │ │ ├── 200-section-new-all-red.rules │ │ ├── 200-section-new-all-vmnet.rules │ │ ├── 200-section-new-all-white.rules │ │ ├── 200-section-new-blue-FW.rules │ │ ├── 200-section-new-blue-red.rules │ │ ├── 200-section-new-dmz-FW.rules │ │ ├── 200-section-new-dmz-blue.rules │ │ ├── 200-section-new-dmz-dmz.rules │ │ ├── 200-section-new-green-FW.rules │ │ ├── 200-section-new-green-red.rules │ │ ├── 200-section-new-green-white.rules │ │ ├── 200-section-new-grn-FW.rules │ │ ├── 200-section-new-grn-red.rules │ │ ├── 200-section-new-grn-white.rules │ │ ├── 200-section-new-red-FW.rules │ │ ├── 200-section-new-red-blue.rules │ │ ├── 200-section-new-red-green.rules │ │ ├── 200-section-new-red-vmnet.rules │ │ ├── 200-section-new-white.rules │ │ └── 200-section-new-wireguard.rules │ │ ├── README-single-interface.md │ │ ├── all-all-all.rules │ │ ├── all-fw-fw.rules │ │ ├── established-red-fw.rules │ │ ├── new-red-fw.rules │ │ ├── related-red-fw.rules │ │ └── stoppedrules │ └── install-shorewall.sh ├── 480-ntp-chrony ├── 480-net-time-server-decision.sh ├── 481-net-ntp-decision.sh ├── 482-net-ntp-chrony-patch-debian.sh ├── 482-net-ntp-chrony-pkg.sh ├── 483-net-ntp-chrony-conf-main.sh ├── 484-net-ntp-chrony-pool.sh ├── 485-net-ntp-chrony-admin.sh ├── 486-net-ntp-chrony-mitm.sh ├── 488-net-ntp-chrony-dropins-various.sh ├── 489-net-ntp-chrony-fileperms.sh ├── CHRONY-REDESIGN.sh ├── DEBIAN-BUG-CHRONY ├── DESIGN-CHRONY-BIND.txt ├── DESIGN-CHRONY-UNPRIVILEGED.txt ├── README.md ├── chrony │ ├── conf.d │ │ ├── 00-conf-confdir.conf │ │ ├── 05-server.conf │ │ ├── 06-maxupdateskew.conf │ │ ├── 08-pidfile.conf │ │ ├── 08-user.conf │ │ ├── 09-maxdrift.conf │ │ ├── 09-minsources.conf │ │ ├── 10-cnf-logdir.conf │ │ ├── 10-init-allow-deny.conf │ │ ├── 10-init-clockprecision.conf │ │ ├── 10-init-lock-all.conf │ │ ├── 10-init-logbanner.conf │ │ ├── 10-lcl-maxdrift.conf │ │ ├── 10-lcl-maxjitter.conf │ │ ├── 12-init-cnf-allow-deny.conf │ │ ├── 12-keyfile.conf │ │ ├── 13-ntsdumpdir.conf │ │ ├── 14-ntsservercertkey.conf │ │ ├── 15-rtc-rtcautotrim.conf │ │ ├── 15-rtc-rtconutc.conf │ │ ├── 15-rtc-rtcsync.conf │ │ ├── 15-sys-maxslewrate.conf │ │ ├── 16-source-combinelimit.conf │ │ ├── 18-keys-keysfile.conf │ │ ├── 20-net-bindacqaddress.conf │ │ ├── 20-net-bindaddress.conf │ │ ├── 20-net-bindcmdaddress.conf │ │ ├── 20-net-bindcmddevice.conf │ │ ├── 20-net-binddevice.conf │ │ ├── 20-net-cmdport.conf │ │ ├── 20-net-dumpdir.conf │ │ ├── 20-net-hwtimestamp.conf │ │ ├── 20-net-ntp-dscp.conf │ │ ├── 20-nio-hwclockfile.conf │ │ ├── 20-nio-maxntsconnections.conf │ │ ├── 20-nio-port.conf │ │ ├── 21-ncr-maxclockerror.conf │ │ ├── 23-rcl-authselectmode.conf │ │ ├── 23-rcl-initstepslew.conf │ │ ├── 23-rcl-log.conf │ │ ├── 23-rcl-refclock.conf │ │ ├── 23-rcl-stratumweight.conf │ │ ├── 24-leapsecmode.conf │ │ ├── 30-log-logdir.conf │ │ ├── 30-ref-correction-time-ratio.conf │ │ ├── 30-ref-driftfile.conf │ │ ├── 30-ref-fallbackdrift.conf │ │ ├── 30-ref-leapsecmode.conf │ │ ├── 30-ref-leapsectz.conf │ │ ├── 30-ref-local.conf │ │ ├── 30-ref-mailonchange.conf │ │ ├── 30-ref-makestep.conf │ │ ├── 30-ref-maxchange.conf │ │ ├── 30-ref-maxsamples.conf │ │ ├── 30-ref-maxupdateskew.conf │ │ ├── 30-ref-minsamples.conf │ │ ├── 50-stratum-level.conf │ │ ├── 60-clientlog-flag-limit.conf │ │ ├── 66-nsd-ntpsigndsocket.conf │ │ ├── 70-nks-ntsntpport.conf │ │ ├── 70-nks-ntsrotate.conf │ │ ├── 70-nks-ntsservercert.conf │ │ ├── 70-nks-ntsserverkey.conf │ │ ├── 70-nks-ntsserverprocesses.conf │ │ ├── 72-clg-clientloglimit.conf │ │ ├── 72-clg-cmdratelimit.conf │ │ ├── 72-clg-noclientlog.conf │ │ ├── 72-clg-ntsratelimit.conf │ │ ├── 72-clg-ratelimit.conf │ │ ├── 72-mailonchange.conf │ │ ├── 74-mnl-manual.conf │ │ ├── 76-tmc-tempcomp.conf │ │ ├── 80-nau-nosystemcert.conf │ │ ├── 80-nau-ntsdumpdir.conf │ │ ├── 80-nau-ntstrustedcertfile.conf │ │ ├── 80-sch-rtcfile.conf │ │ ├── 82-hwtimestamp.conf │ │ ├── 84-rtcdevice.conf │ │ ├── 86-response-minsources.conf │ │ ├── 90-sched-logchange.conf │ │ ├── 90-sched_priority.conf │ │ ├── 90-unused-broadcast.conf │ │ ├── WHO-READ-IT-FIRST.txt │ │ ├── nksn-nocerttimecheck.conf │ │ ├── nksn-ntsntpserver.conf │ │ ├── nnc-ntsrefresh.conf │ │ ├── peer.conf │ │ ├── pool.conf │ │ ├── reselectdist.conf │ │ ├── server.conf │ │ ├── smoothtime.conf │ │ ├── sourcedir.conf │ │ └── template │ └── systemd │ │ └── chronyd@.service └── maintainer-ntp-chrony.sh ├── 490-net-ssh ├── 490-net-ssh-server.sh ├── 491-net-ssh-client.sh ├── 492-net-ssh-user-add.sh ├── 495-net-ssh-moduli.sh ├── 497-net-ssh-sftp.sh ├── 498-net-ssh-bastion-server.sh ├── 499-net-ssh-config-check.sh ├── README.OpenSSH.bastion.md ├── README.OpenSSH.checker.md ├── README.OpenSSH.environment-variables.md ├── README.OpenSSH.filedrop.md ├── README.OpenSSH.hardening.md ├── README.OpenSSH.namespace.net.md ├── README.OpenSSH.versioning ├── maintainer-ssh-openssh.sh ├── new-since-8.8-p1.txt ├── ssh_config.d │ ├── 005-log-verbose.conf │ ├── 010-conf-old-ignore.conf │ ├── 011-include.conf │ ├── 20-hostname.conf │ ├── 200-canonicalize-hostname.conf │ ├── 210-canonicalize-max-dots.conf │ ├── 220-canonical-domains.conf │ ├── 221-canonicalize-fallback-local.conf │ ├── 222-canonicalize-permitted-cnames.conf │ ├── 224-address-family.conf │ ├── 225-ip-port.conf │ ├── 230-proxy-command.conf │ ├── 231-proxy-use-fd-pass.conf │ ├── 232-clear-all-forwardings.conf │ ├── 250-control-persist.conf │ ├── 251-proxy-jump.conf │ ├── 260-protocol-hostkeys-update.conf │ ├── 270-connection-attempts.conf │ ├── 280-remote-command.conf │ ├── 281-log-level.conf │ ├── 282-log-facility.conf │ ├── 300-user-identity-agent.conf │ ├── 310-path-control.conf │ ├── 320-connect-timeout.conf │ ├── 330-tcp-keepalive.conf │ ├── 340-bind-address.conf │ ├── 350-bind-interface.conf │ ├── 360-server-alive-interval.conf │ ├── 361-server-alive-count-max.conf │ ├── 370-pkcs11-provier.conf │ ├── 380-batch-mode.conf │ ├── 390-identity-files.conf │ ├── 400-identity-agent.conf │ ├── 410-stream-local-bind-mask.conf │ ├── 410-stream-local-bind-unlink.conf │ ├── 440-knownhosts-global-file.conf │ ├── 442-knownhosts-check-host-ip.conf │ ├── 443-knownhosts-hashed.conf │ ├── 444-fork-after-authentication.conf │ ├── 445-session-type.conf │ ├── 450-knownhosts-user.conf │ ├── 500-kex-ciphers.conf │ ├── 510-kex-algorithms.conf │ ├── 530-compression.conf │ ├── 550-macs.conf │ ├── 560-hostkeys-algos.conf │ ├── 561-known-hosts-command.conf │ ├── 570-gssapikeyexchange.conf │ ├── 571-gssapikexalgorithms.conf │ ├── 580-gssapitrustdns.conf │ ├── 600-session-rekey-limit.conf │ ├── 650-knownhosts-hostkey-check-strict.conf │ ├── 660-knownhosts-hostkey-revoked.conf │ ├── 670-hostkey-verify-dns.conf │ ├── 680-hostkey-alias.conf │ ├── 690-auth-no-host-for-localhost.conf │ ├── 700-auth-preferred.conf │ ├── 710-auth-password.conf │ ├── 740-auth-interactive-kbd.conf │ ├── 741-auth-interactive-kbd-pam.conf │ ├── 750-certificate-file.conf │ ├── 760-auth-pubkey.conf │ ├── 761-auth-pubkey-algorithms-accepted.conf │ ├── 762-auth-pubkey-add-to-agent.conf │ ├── 763-auth-pubkey-identities-only.conf │ ├── 764-required-rsa-size.conf │ ├── 765-security-key-provider.conf │ ├── 770-auth-hostbased.conf │ ├── 771-auth-hostbased-accepted-algos.conf │ ├── 772-auth-hostbased-keysign.conf │ ├── 773-auth-hostbased-ca-sig-algos.conf │ ├── 780-auth-challenge.conf │ ├── 790-auth-kerberos-krb5.conf │ ├── 791-auth-kerberos-delegate.conf │ ├── 792-auth-kerberos-renewal-forces-rekey.conf │ ├── 801-session-tty-request.conf │ ├── 805-session-login-max.conf │ ├── 806-session-fingerprint-hash.conf │ ├── 807-session-hostkey-visual.conf │ ├── 809-permit-remote-open.conf │ ├── 810-session-control-master.conf │ ├── 811-tunnel.conf │ ├── 812-session-tunnel-device.conf │ ├── 813-stdin-null.conf │ ├── 814-session-local-forward.conf │ ├── 820-forward-gateway-ports.conf │ ├── 821-forward-remote.conf │ ├── 822-forward-dynamic.conf │ ├── 823-forward-exit-on-failure.conf │ ├── 840-session-local-cmd-permit.conf │ ├── 841-session-local-cmd.conf │ ├── 842-session-forward-agent.conf │ ├── 910-ipqos-delay-thrghpt.conf │ ├── 951-x11-forward.conf │ ├── 952-x11-auth-location.conf │ ├── 953-x11-forward-trusted.conf │ ├── 954-x11-forward-timeout.conf │ ├── 980-escape-char.conf │ ├── 982-shell-setenv.conf │ ├── 991-match-host-onion.conf │ ├── 993-match-host-local.conf │ ├── 999-match-template.conf │ ├── KEYWORDS_USED.txt.8.4 │ ├── KEYWORDS_USED.txt.9.2 │ ├── README │ ├── explicit.txt │ ├── ssh-check-new-options.sh │ └── ssh_config-name-of-options.conf.template ├── sshd_config.d-bastion │ ├── 100-daemon-logging.conf │ ├── 111-daemon-network.conf │ ├── 112-daemon-pidfile.conf │ ├── 113-daemon-maxstartups.conf │ ├── 114-daemon-ip-addr-families.conf │ ├── 115-daemon-tcpkeepalive.conf │ ├── 119-daemon-rdomain.conf │ ├── 200-ip-socket-created │ ├── 201-daemon-login-grace.conf │ ├── 220-daemon-subversion.conf │ ├── 223-daemon-banner-debian.conf │ ├── 260-login-auth-keyagent.conf │ ├── 300-protocol-kex-algos.conf │ ├── 302-protocol-ciphers.conf │ ├── 304-protocol-macs.conf │ ├── 310-protocol-compression.conf │ ├── 324-protocol-rekey.conf │ ├── 336-protocol-hostkey.conf │ ├── 337-protocol-host-algos.conf │ ├── 338-protocol-host-certs.conf │ ├── 339-protocol-sec-key-provider.conf │ ├── 410-protocol-auth-methods.conf │ ├── 412-protocol-auth-max-tries.conf │ ├── 422-protocol-password-empty-permit.conf │ ├── 424-protocol-auth-type-password.conf │ ├── 426-protocol-key-fingerprint.conf │ ├── 430-auth-pubkey.conf │ ├── 431-auth-pubkey-options.conf │ ├── 432-auth-pubkey-types.conf.obsoleted │ ├── 433-auth-pubkey-principals-file.conf │ ├── 434-auth-pubkey-cas-algos.conf │ ├── 435-auth-pubkey-revoked.conf │ ├── 436-auth-pubkey-auth-file.conf │ ├── 436-auth-pubkey-cmds-key-username.conf │ ├── 437-auth-pubkey-login-auth-cmds-key.conf │ ├── 438-auth-pubkey-ca-keys.conf │ ├── 439-auth-pubkey-permit-user-environment.conf │ ├── 440-auth-challenge.conf │ ├── 440-login-strict-modes.conf │ ├── 442-auth-hostbased.conf │ ├── 443-auth-hostbased-opts.conf │ ├── 450-auth-krb5-gss-api.conf │ ├── 460-auth-kbd.conf │ ├── 500-session.conf │ ├── 501-session-client-alive.conf │ ├── 507-kex-permit-open.conf │ ├── 510-auth2-pam.conf │ ├── 512-auth2-permit-root-login.conf │ ├── 515-auth2-permit-listen.conf │ ├── 516-auth2-use-dns.conf │ ├── 520-login-chroot-dir.conf │ ├── 530-login-users-deny.conf │ ├── 540-login-users-allow.conf │ ├── 550-login-groups-deny.conf │ ├── 570-login-groups-allow.conf │ ├── 580-login-auth-cmds-princ.conf │ ├── 592-login-user-rc-permit.conf │ ├── 700-tunnel-permit.conf │ ├── 750-allow-tcp-forwarding.conf │ ├── 811-pty-x11-support.conf │ ├── 849-sess-chan-forwarding.conf │ ├── 850-sess-chan-subsystem.conf │ ├── 851-sess-chan-allow-agent-fwd.conf │ ├── 852-sess-chan-pty-set-env.conf │ ├── 853-sess-chan-pty-allowed.conf │ ├── 854-sess-chan-pty-lastlogin.conf │ ├── 855-sess-chan-pty-banner.conf │ ├── 856-sess-chan-pty-printmotd.conf │ ├── 857-sess-chan-pty-forced-cmd.conf │ ├── 858-sess-chan-pty-shell-env.conf │ ├── 859-sess-chan-pty-max.conf │ ├── 860-sess-chan-pty-ip-qos.conf │ ├── 900-pipe.conf │ ├── 902-expose-auth-info.conf │ ├── 910-ctrl-gateway-ports.conf │ ├── 912-stream-local-bind-unlink.conf │ ├── 999-match-template.conf │ ├── README.ssh-bastion.md │ └── per-source-net-block-size.conf └── sshd_config.d │ ├── 100-daemon-logging-level.conf │ ├── 101-daemon-logging-facility.conf │ ├── 111-daemon-network-ports.conf │ ├── 112-daemon-pidfile.conf │ ├── 113-daemon-maxstartups.conf │ ├── 114-daemon-ip-address-family.conf │ ├── 115-daemon-tcpkeepalive.conf │ ├── 116-per-source-net-block-size.conf │ ├── 117-per-source-max-startups.conf │ ├── 119-daemon-rdomain.conf │ ├── 200-ip-socket-created │ ├── 201-daemon-login-grace.conf │ ├── 220-daemon-subversion.conf │ ├── 223-daemon-banner-debian.conf │ ├── 260-login-auth-keyagent.conf │ ├── 300-protocol-kex-algos.conf │ ├── 301-gssapi-kex-algorithms.conf │ ├── 302-protocol-ciphers.conf │ ├── 303-moduli-file.conf │ ├── 304-protocol-macs.conf │ ├── 310-protocol-compression.conf │ ├── 324-protocol-rekey.conf │ ├── 336-protocol-hostkey.conf │ ├── 337-protocol-host-algos.conf │ ├── 338-protocol-host-certs.conf │ ├── 339-protocol-sec-key-provider.conf │ ├── 410-protocol-auth-methods.conf │ ├── 412-protocol-auth-max-tries.conf │ ├── 422-auth-password-permit-empty-password.conf │ ├── 424-auth-password-authentication.conf │ ├── 425-auth-password-krb5-or-local-passwd.conf │ ├── 426-login-fingerprint-hash-algo.conf │ ├── 429-required-rsa-size.conf │ ├── 430-auth-pubkey-authentication.conf │ ├── 431-auth-pubkey-authentication-options.conf │ ├── 432-auth-pubkey-accepted-algos.conf │ ├── 432-auth-pubkey-accepted-key-types-obsoleted.conf │ ├── 433-auth-pubkey-authorized-principals-file.conf │ ├── 434-auth-pubkey-ca-signature-algos.conf │ ├── 435-auth-pubkey-revoked-keys.conf │ ├── 436-auth-pubkey-authorized-keys-cmds-user.conf │ ├── 436-auth-pubkey-authorized-keys-file.conf │ ├── 437-auth-pubkey-login-authorize-keys-cmd.conf │ ├── 438-auth-pubkey-trusted-user-ca-keys.conf │ ├── 439-auth-pubkey-permit-user-environment.conf │ ├── 440-login-strict-modes.conf │ ├── 441-auth-keyboard-interactive-challenge.conf │ ├── 442-auth-hostbased-enable.conf │ ├── 444-auth-hostbased-ignore-user-known-hosts.conf │ ├── 445-auth-hostbased-accepted-key-types-obsoleted.conf │ ├── 446-auth-hostbased-uses-name-from-packet-only.conf │ ├── 447-auth-hostbased-ignore-remote-hosts.conf │ ├── 450-auth-password-krb5-authentication-enable.conf │ ├── 451-auth-password-krb5-gss-api-authentication.conf │ ├── 460-auth-kbd.conf │ ├── 461-pam-service-name.conf │ ├── 500-session-client-alive-interval.conf │ ├── 501-session-client-alive-count-max.conf │ ├── 502-unused-connection-timeout.conf │ ├── 503-channel-timeout.conf │ ├── 507-kex-permit-open.conf │ ├── 510-auth2-pam.conf │ ├── 512-auth2-permit-root-login.conf │ ├── 515-auth2-permit-listen.conf │ ├── 516-auth2-use-dns.conf │ ├── 520-login-chroot-dir.conf │ ├── 530-login-users-deny.conf │ ├── 540-login-users-allow.conf │ ├── 550-login-groups-deny.conf │ ├── 570-login-groups-allow.conf │ ├── 580-login-auth-cmds-princ.conf │ ├── 592-login-user-rc-permit.conf │ ├── 700-tunnel-permit.conf │ ├── 750-allow-tcp-forwarding.conf │ ├── 810-pty-x11-forwarding.conf │ ├── 811-pty-x11-xauth-location.conf │ ├── 812-pty-x11-display-offset.conf │ ├── 813-pty-x11-use-localhost.conf │ ├── 849-sess-chan-forwarding.conf │ ├── 850-sess-chan-subsystem.conf │ ├── 851-sess-chan-allow-agent-fwd.conf │ ├── 852-sess-chan-pty-set-env.conf │ ├── 853-sess-chan-pty-allowed.conf │ ├── 854-sess-chan-pty-lastlogin.conf │ ├── 855-sess-chan-pty-banner.conf │ ├── 856-sess-chan-pty-printmotd.conf │ ├── 857-sess-chan-pty-forced-cmd.conf │ ├── 858-sess-chan-pty-shell-env.conf │ ├── 859-sess-chan-pty-max.conf │ ├── 860-sess-chan-pty-ip-qos.conf │ ├── 900-streamlocal-forwarding-allow.conf │ ├── 901-streamlocal-bind-mask.conf │ ├── 902-expose-auth-info.conf │ ├── 910-ctrl-gateway-ports.conf │ ├── 999-match-template.conf │ ├── KEYWORDS-USED.txt.9.2 │ ├── OpenSSH.call-ordering.txt │ ├── README │ ├── README.forwardings │ ├── README.sftp-users.design.md │ ├── match.txt │ ├── sshd-check-new-options.sh │ └── sshd_config-name-of-options.conf.template ├── 500-dns ├── 500-dns-bind9-config-reset.sh ├── 501-dns-bind9-install.sh ├── 503-dns-no-dnsmasq.sh ├── 507-dns-bind9-class-chaos.sh ├── 509-dns-bind9-tmpdir.sh ├── 510-dns-bind9-basic-info.sh ├── 511-dns-bind9-service-default.sh ├── 512-dns-bind9-systemd.sh ├── 513-dns-bind9-systemd-start-later.sh ├── 523-dns-bind9-controls-rndc.sh ├── 524-dns-bind9-controls-read-only.sh ├── 525-dns-bind9-logging.sh ├── 530-dns-bind9-views.sh ├── 540-dns-bind9-caching-only.sh ├── 541-dns-bind9-responder-defense.sh ├── 550-dns-bind9-zones.sh ├── 551-dns-bind9-zone-localhost.sh ├── 560-dns-bind9-primary-hidden.sh ├── 577-dns-bind9-interkeys.sh ├── 580-dns-bind9-db-sshfs.sh ├── 590-dns-bind9-sshfp.sh ├── 591-dns-bind9-openpgpkey.sh ├── 592-dns-bind9-autodiscover.sh ├── 593-dns-bind9-autoconfig.sh ├── 594-dns-bind9-bimi.sh ├── 599-dns-root-server-standalone.sh ├── README-rndc-security.md ├── README.bastion-instances.md ├── README.by-subtopic ├── README.code.result ├── README.ddns.md ├── README.dynamic.ip.dhcp.client.md ├── README.easy-admin.dns.md ├── README.keyname ├── README.md ├── README.other-files ├── README.root-on-loopback.md ├── README.trust-anchors.md ├── README.zones.details.md ├── TODO └── maintainer-dns-isc.sh ├── 600-mail-postfix ├── 600-mail-mda.sh ├── 605-mail-mbox-maildir-add-user.sh ├── 605-mail-mbox-maildir-etc-skel.sh ├── DESIGN.md ├── config │ ├── access │ ├── aliases │ ├── canonical │ ├── relocated │ ├── transport │ └── virtual ├── maintainer-mail-postfix.sh ├── postfix-canonical.sh ├── postfix-passwd_setup.sh └── postfix-transport.sh ├── 600-net-web-well-known.sh ├── 610-mail-exim ├── exim4-config-split-files.md ├── exim4-reinstall-config-debian.md └── exim4-subaddressing.md ├── 700-lighttpd ├── 700-lighttpd-install.sh ├── 701-lighttpd-basic.sh ├── README.md ├── conf.d │ ├── 00-global.conf │ ├── 10-accesslog.conf │ ├── 11-log.conf │ ├── 20-modules.conf │ ├── 25-global-upload-disabled.conf │ ├── 30-mime-encoding.conf │ ├── 35-url-handling-security.conf │ ├── 40-fastcgi.conf │ ├── 60-ssl.conf │ ├── 61-ssl-protocols.conf │ ├── 62-ssl-ciphers.conf │ ├── 63-ssl-curves.conf │ ├── 64-http-hsts.conf │ ├── 65-ocsp-stapling.conf │ ├── 66-sni.conf │ ├── 67-dtls-client-verify.conf │ ├── 70-security-cipher-order.conf │ ├── 80-vhosts.conf │ ├── 98-performance.conf │ └── 99-local.conf ├── lighttpd.conf └── maintainer-lighttpd.sh ├── 800-net-git-server.sh ├── LICENSE ├── README.md ├── TEMPLATE.sh ├── TODO ├── distro-os.sh ├── doc ├── README.subjectAltName-yours.md └── exim4-inbound-filtering.md ├── easy-admin-installer.sh └── test ├── DESIGN-INI.md ├── archive ├── ini_crudini.sh ├── ini_section.sh ├── section-awk.sh └── section-bash-mods.sh ├── basename_noline.sh ├── call-stack-trace.sh ├── color-support.sh ├── dirname_no_line2.sh ├── dirname_noline.sh ├── logfile.sh ├── modifier-a.sh ├── param-expansion-remove-spaces.sh ├── relative_dirs.sh ├── script-in-dir.sh ├── section-regex.sh ├── source-me.sh ├── test-dir └── script-in-subdir.sh ├── test-section-regex ├── gawk-debug-file-read.sh ├── grep-regex-as-arg.sh ├── local-unset.sh ├── sed-comment-inline-remove.sh ├── sed-remove-inline-comment.sh ├── sed-replace-new-line-with-space.sh ├── test-all.sh ├── test-ini-file-read.sh ├── test-ini-kw-get.sh ├── test-ini-kw-normalize.sh ├── test-ini-kw-valid.sh ├── test-ini-section-extract.sh ├── test-ini-section-list.sh └── test-ini-section-test.sh └── what-is-my-script-name.sh /.github/workflows/codacy-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.github/workflows/codacy-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/copyright/MIT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.idea/copyright/MIT.xml -------------------------------------------------------------------------------- /.idea/easy-admin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.idea/easy-admin.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /020-repos/020-repos-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/020-repos-arch.sh -------------------------------------------------------------------------------- /020-repos/020-repos-centos-8-4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/020-repos-centos-8-4.sh -------------------------------------------------------------------------------- /020-repos/020-repos-debian-11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/020-repos-debian-11.sh -------------------------------------------------------------------------------- /020-repos/020-repos-debian-12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/020-repos-debian-12.sh -------------------------------------------------------------------------------- /020-repos/020-repos-fedora-35.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/020-repos-fedora-35.sh -------------------------------------------------------------------------------- /020-repos/021-repos-centos-nice-things.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/021-repos-centos-nice-things.sh -------------------------------------------------------------------------------- /020-repos/025-debian-some-experimental.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/025-debian-some-experimental.sh -------------------------------------------------------------------------------- /020-repos/025-debian-some-testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/025-debian-some-testing.sh -------------------------------------------------------------------------------- /020-repos/025-debian-some-unstable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/020-repos/025-debian-some-unstable.sh -------------------------------------------------------------------------------- /022-fonts-ibm-plex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/022-fonts-ibm-plex.sh -------------------------------------------------------------------------------- /050-git/049-git-github-cli-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/050-git/049-git-github-cli-install.sh -------------------------------------------------------------------------------- /050-git/050-git-github-cli-force-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/050-git/050-git-github-cli-force-ssh.sh -------------------------------------------------------------------------------- /050-git/051-git-cred-helper-gcmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/050-git/051-git-cred-helper-gcmc.sh -------------------------------------------------------------------------------- /050-git/052-git-cred-helper-gcmc-gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/050-git/052-git-cred-helper-gcmc-gpg.sh -------------------------------------------------------------------------------- /050-git/053-git-cred-helper-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/050-git/053-git-cred-helper-cache.sh -------------------------------------------------------------------------------- /080-gnupg/080-gnupg-setup-global.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/080-gnupg/080-gnupg-setup-global.sh -------------------------------------------------------------------------------- /080-gnupg/081-gnupg-setup-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/080-gnupg/081-gnupg-setup-user.sh -------------------------------------------------------------------------------- /080-gnupg/084-gnupg-user-create-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/080-gnupg/084-gnupg-user-create-key.sh -------------------------------------------------------------------------------- /080-gnupg/085-gnupg-backup-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/080-gnupg/085-gnupg-backup-keys.sh -------------------------------------------------------------------------------- /090-hw-intel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/090-hw-intel.sh -------------------------------------------------------------------------------- /100-cisecurity/100-cis-packages-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/100-cis-packages-remove.sh -------------------------------------------------------------------------------- /100-cisecurity/111-cis-usb-storage-no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/111-cis-usb-storage-no.sh -------------------------------------------------------------------------------- /100-cisecurity/112-cis-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/112-cis-sudo.sh -------------------------------------------------------------------------------- /100-cisecurity/113-cis-sudo-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/113-cis-sudo-log.sh -------------------------------------------------------------------------------- /100-cisecurity/114-cis-aide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/114-cis-aide.sh -------------------------------------------------------------------------------- /100-cisecurity/120-cis-boot-fperm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/120-cis-boot-fperm.sh -------------------------------------------------------------------------------- /100-cisecurity/121-cis-grub-passwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/121-cis-grub-passwd.sh -------------------------------------------------------------------------------- /100-cisecurity/122-cis-single-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/122-cis-single-user.sh -------------------------------------------------------------------------------- /100-cisecurity/123-cis-apparmor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/123-cis-apparmor.sh -------------------------------------------------------------------------------- /100-cisecurity/130-cis-avahi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/130-cis-avahi.sh -------------------------------------------------------------------------------- /100-cisecurity/131-cis-cups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/131-cis-cups.sh -------------------------------------------------------------------------------- /100-cisecurity/133-cis-ldap-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/133-cis-ldap-server.sh -------------------------------------------------------------------------------- /100-cisecurity/134-cis-vsftp-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/134-cis-vsftp-server.sh -------------------------------------------------------------------------------- /100-cisecurity/135-cis-inetutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/135-cis-inetutils.sh -------------------------------------------------------------------------------- /100-cisecurity/137-cis-samba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/137-cis-samba.sh -------------------------------------------------------------------------------- /100-cisecurity/140-cis-snmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/140-cis-snmp.sh -------------------------------------------------------------------------------- /100-cisecurity/150-cis-protocol-dccp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/150-cis-protocol-dccp.sh -------------------------------------------------------------------------------- /100-cisecurity/151-cis-protocol-sctp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/151-cis-protocol-sctp.sh -------------------------------------------------------------------------------- /100-cisecurity/152-cis-protocol-rds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/152-cis-protocol-rds.sh -------------------------------------------------------------------------------- /100-cisecurity/153-cis-protocol-tipc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/153-cis-protocol-tipc.sh -------------------------------------------------------------------------------- /100-cisecurity/500-cis-dns-bind-dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/500-cis-dns-bind-dirs.sh -------------------------------------------------------------------------------- /100-cisecurity/522-cis-bind9-nologin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/522-cis-bind9-nologin.sh -------------------------------------------------------------------------------- /100-cisecurity/580-cis-dhcp-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/100-cisecurity/580-cis-dhcp-server.sh -------------------------------------------------------------------------------- /110-kernel-sysctl/02-linux_kernel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/02-linux_kernel.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/05-memory_usage_network_stack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/05-memory_usage_network_stack.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/06-net_core_netdev_max_backlog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/06-net_core_netdev_max_backlog.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/10-ip_router_forwarding_state.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/10-ip_router_forwarding_state.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/10-no-ctrl-alt-del.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/10-no-ctrl-alt-del.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/13-randomize_va_space.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/13-randomize_va_space.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/17-netfilter_nat_conntrack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/17-netfilter_nat_conntrack.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/2-ignore-bogus-error.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/2-ignore-bogus-error.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/2-no-ipv6-eth1-red.conf: -------------------------------------------------------------------------------- 1 | # DO NOT ENABLE UNTIL IPv6 Firewall is in place 2 | # 3 | net.ipv6.conf.eth1.disable_ipv6 = 1 4 | 5 | -------------------------------------------------------------------------------- /110-kernel-sysctl/20-ip_routing_controls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/20-ip_routing_controls.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/20-quiet-printk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/20-quiet-printk.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/21-reverse-path-filtering.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/21-reverse-path-filtering.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/30-shared_memory_for_apps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/30-shared_memory_for_apps.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/31-bridge_vs_memory_cache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/31-bridge_vs_memory_cache.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/40-no-suid-coredump.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | fs.suid_dumpable = 0 4 | 5 | -------------------------------------------------------------------------------- /110-kernel-sysctl/41-kernel_hardening.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/41-kernel_hardening.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/49-router_mode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/49-router_mode.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/51-kernel.kexec_load_disabled.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/51-kernel.kexec_load_disabled.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/51-net.core.bpf_jit_harden.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/51-net.core.bpf_jit_harden.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/55-ignore-icmp-broadcast.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/55-ignore-icmp-broadcast.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/60-tcp-syncookies.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/60-tcp-syncookies.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/70-binfmt_misc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/70-binfmt_misc.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/71-fs_hardlink_protect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/71-fs_hardlink_protect.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/78-mc-forwarding: -------------------------------------------------------------------------------- 1 | 2 | 3 | net.ipv4.conf.all.mc_forwarding = 1 4 | 5 | -------------------------------------------------------------------------------- /110-kernel-sysctl/80-conntrack-tcp-estab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/80-conntrack-tcp-estab.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/80-tcp_throughput_performance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/80-tcp_throughput_performance.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/README.sysctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/README.sysctl -------------------------------------------------------------------------------- /110-kernel-sysctl/dev.tty.ldisc_autoload.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/dev.tty.ldisc_autoload.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/kernel.perf_event_paranoid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/kernel.perf_event_paranoid.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/kernel.unprivileged_bpf_disabled.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/kernel.unprivileged_bpf_disabled.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/kernel.unprivileged_userns_clone.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/kernel.unprivileged_userns_clone.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/kernel.yama.ptrace_scope.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/kernel.yama.ptrace_scope.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.icmp_echo_ignore_all.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.icmp_echo_ignore_all.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.ip_frag_time.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.ip_frag_time.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.ip_local_port_range.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.ip_local_port_range.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_congestion_control.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_congestion_control.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_fin_timeout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_fin_timeout.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_keepalive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_keepalive.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_max_syn_backlog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_max_syn_backlog.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_orphan_retries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_orphan_retries.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_rfc1337.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_rfc1337.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_sack_dsack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_sack_dsack.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_slow_start_after_idle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_slow_start_after_idle.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_synack_retries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_synack_retries.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv4.tcp_timestamps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv4.tcp_timestamps.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/net.ipv6.conf.accept_ra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/net.ipv6.conf.accept_ra.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/vm.mmap_rnd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/vm.mmap_rnd.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/vm.swappiness.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/vm.swappiness.conf -------------------------------------------------------------------------------- /110-kernel-sysctl/vm.unprivileged_userfaultfd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/110-kernel-sysctl/vm.unprivileged_userfaultfd.conf -------------------------------------------------------------------------------- /120-core-hardening/005-partitions-minimum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/005-partitions-minimum.sh -------------------------------------------------------------------------------- /120-core-hardening/010-login-passwd-argon2id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/010-login-passwd-argon2id.sh -------------------------------------------------------------------------------- /120-core-hardening/010-login-passwd-sha512.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/010-login-passwd-sha512.sh -------------------------------------------------------------------------------- /120-core-hardening/011-su-logfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/011-su-logfile.sh -------------------------------------------------------------------------------- /120-core-hardening/015-pam-nologin-lockout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/015-pam-nologin-lockout.sh -------------------------------------------------------------------------------- /120-core-hardening/070-bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/070-bashrc.sh -------------------------------------------------------------------------------- /120-core-hardening/071-bashrc.d-editor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/071-bashrc.d-editor.sh -------------------------------------------------------------------------------- /120-core-hardening/124-logon-banners.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/124-logon-banners.sh -------------------------------------------------------------------------------- /120-core-hardening/300-rc.local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/300-rc.local.sh -------------------------------------------------------------------------------- /120-core-hardening/800-cron-no-users.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/800-cron-no-users.sh -------------------------------------------------------------------------------- /120-core-hardening/machine-id-generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/120-core-hardening/machine-id-generic.sh -------------------------------------------------------------------------------- /150-sudo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/150-sudo/README.md -------------------------------------------------------------------------------- /200-debian-pkg-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/200-debian-pkg-deps.sh -------------------------------------------------------------------------------- /200-init-systemd/200-systemd-bootup-no-clear-screen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/200-init-systemd/200-systemd-bootup-no-clear-screen.sh -------------------------------------------------------------------------------- /200-init-systemd/201-systemd-network-dnssec-disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/200-init-systemd/201-systemd-network-dnssec-disable.sh -------------------------------------------------------------------------------- /200-init-systemd/202-systemd-network-dns-fallback-disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/200-init-systemd/202-systemd-network-dns-fallback-disable.sh -------------------------------------------------------------------------------- /210-debian-pkgs-optionals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/210-debian-pkgs-optionals.sh -------------------------------------------------------------------------------- /300-kernel/300-kernel-download-archlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/300-kernel-download-archlinux.sh -------------------------------------------------------------------------------- /300-kernel/300-kernel-download-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/300-kernel-download-debian.sh -------------------------------------------------------------------------------- /300-kernel/310-kernel-config-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/310-kernel-config-debian.sh -------------------------------------------------------------------------------- /300-kernel/320-kernel-build-archlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/320-kernel-build-archlinux.sh -------------------------------------------------------------------------------- /300-kernel/320-kernel-build-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/320-kernel-build-debian.sh -------------------------------------------------------------------------------- /300-kernel/380-kernel-hardening.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/380-kernel-hardening.sh -------------------------------------------------------------------------------- /300-kernel/390-systemd-journal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/390-systemd-journal.sh -------------------------------------------------------------------------------- /300-kernel/KCONFIG_SEGMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/KCONFIG_SEGMENTS -------------------------------------------------------------------------------- /300-kernel/configs/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-10-noinitrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-10-noinitrd -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-11-zeromods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-11-zeromods -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-12-nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-12-nft -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-13-nobinfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-13-nobinfmt -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-4 -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-5 -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-6 -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-7 -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-8 -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-9-no-mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-9-no-mods -------------------------------------------------------------------------------- /300-kernel/configs/.config-5.15.12myc-sle-9-no-mods.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config-5.15.12myc-sle-9-no-mods.old -------------------------------------------------------------------------------- /300-kernel/configs/.config.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/.config.old -------------------------------------------------------------------------------- /300-kernel/configs/INITRAMFS_INITRD_DISABLING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/INITRAMFS_INITRD_DISABLING -------------------------------------------------------------------------------- /300-kernel/configs/INTEL_EOL_I5_3470: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/INTEL_EOL_I5_3470 -------------------------------------------------------------------------------- /300-kernel/configs/KCONFIG_DEBUG_INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/KCONFIG_DEBUG_INFO -------------------------------------------------------------------------------- /300-kernel/configs/KCONFIG_SYSTEM_TRUSTED_KEYRING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/KCONFIG_SYSTEM_TRUSTED_KEYRING -------------------------------------------------------------------------------- /300-kernel/configs/LXC_CONTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/LXC_CONTAINER -------------------------------------------------------------------------------- /300-kernel/configs/VGA_RESOLUTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/VGA_RESOLUTIONS -------------------------------------------------------------------------------- /300-kernel/configs/bad/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/bad/.config -------------------------------------------------------------------------------- /300-kernel/configs/bad/config-c0-no-modules-systemd-failed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/bad/config-c0-no-modules-systemd-failed -------------------------------------------------------------------------------- /300-kernel/configs/config-4.19.194a0-nomodules-good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/config-4.19.194a0-nomodules-good -------------------------------------------------------------------------------- /300-kernel/configs/config-arch-hardened: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/config-arch-hardened -------------------------------------------------------------------------------- /300-kernel/configs/config.initramfs.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/config.initramfs.disable -------------------------------------------------------------------------------- /300-kernel/configs/config.net.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/config.net.bare -------------------------------------------------------------------------------- /300-kernel/configs/good/config-4.19.0-17-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/good/config-4.19.0-17-amd64 -------------------------------------------------------------------------------- /300-kernel/configs/good/config-4.19.194a0-clone4-mdadm-lvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/good/config-4.19.194a0-clone4-mdadm-lvm -------------------------------------------------------------------------------- /300-kernel/configs/good/config-4.19.194a0-clone5-lsmod-reducto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/good/config-4.19.194a0-clone5-lsmod-reducto -------------------------------------------------------------------------------- /300-kernel/configs/good/config-4.19.194a0-clone6-lsmod-reducto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/good/config-4.19.194a0-clone6-lsmod-reducto -------------------------------------------------------------------------------- /300-kernel/configs/good/config-4.19.194a0-clone8-no-mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/good/config-4.19.194a0-clone8-no-mod -------------------------------------------------------------------------------- /300-kernel/configs/template.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/300-kernel/configs/template.config -------------------------------------------------------------------------------- /300-kernel/gregkh@linuxfoundation.org.gpg.key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /400-network-managers/400-net-network-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/400-network-managers/400-net-network-manager.sh -------------------------------------------------------------------------------- /400-network-managers/403-nm-resolver-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/400-network-managers/403-nm-resolver-check.sh -------------------------------------------------------------------------------- /400-network-managers/405-nm-NetworkManager-wifi-privacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/400-network-managers/405-nm-NetworkManager-wifi-privacy.sh -------------------------------------------------------------------------------- /400-network-managers/408-net-network-manager-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/400-network-managers/408-net-network-manager-desktop.sh -------------------------------------------------------------------------------- /400-network-managers/README.DESIGN.NetworkManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/400-network-managers/README.DESIGN.NetworkManager.md -------------------------------------------------------------------------------- /400-network-managers/maintainer-NetworkManager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/400-network-managers/maintainer-NetworkManager.sh -------------------------------------------------------------------------------- /400-network-managers/maintainer-systemd-networkd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/400-network-managers/maintainer-systemd-networkd.sh -------------------------------------------------------------------------------- /405-rsyslog/405-rsyslog-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/405-rsyslog-server.sh -------------------------------------------------------------------------------- /405-rsyslog/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/DESIGN.md -------------------------------------------------------------------------------- /405-rsyslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/README.md -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/console.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/console.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/globals/global-mqueue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/globals/global-mqueue.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/globals/global-tls-certificate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/globals/global-tls-certificate.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/globals/global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/globals/global.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/imfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/imfile.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/input-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/input-file.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/input-imuxsock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/input-imuxsock.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/input-relp-10443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/input-relp-10443.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/input-syslog-daemon-info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/input-syslog-daemon-info.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/input-tcp-601.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/input-tcp-601.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/input-tcp-tls-20443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/input-tcp-tls-20443.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/input-udp-10514.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/input-udp-10514.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/output-relp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/output-relp.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/output-tcp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/output-tcp.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/output-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/output-tls.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/inputs/output-udp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/inputs/output-udp.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/modules/module-imuxsock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/modules/module-imuxsock.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/modules/module-kernel-log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/modules/module-kernel-log.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/modules/module-mark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/modules/module-mark.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/modules/module-mmfields.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/modules/module-mmfields.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/modules/module-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/modules/module-tls.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/modules/module-udp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/modules/module-udp.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/ompgsql-postgres.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/ompgsql-postgres.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/omstdout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/omstdout.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/rsyslog.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/rules/rule-fallback.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/rules/rule-fallback.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/rules/rule-relp-10443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/rules/rule-relp-10443.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/rules/rule-tcp_20516.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/rules/rule-tcp_20516.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/rules/rule-tls_20443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/rules/rule-tls_20443.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/syslog-network-protocol23.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/syslog-network-protocol23.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/syslog-postgresql-log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/syslog-postgresql-log.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/syslog-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/syslog-tls.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/templates/template-fieldscsv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/templates/template-fieldscsv.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/templates/template-kafka.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/templates/template-kafka.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/templates/template-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/templates/template-local.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/templates/template-relp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/templates/template-relp.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/templates/template-remote.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/templates/template-remote.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/rsyslog.d/xconsole.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/conf/rsyslog.d/xconsole.conf -------------------------------------------------------------------------------- /405-rsyslog/conf/tmpfiles.d/xconsole.conf: -------------------------------------------------------------------------------- 1 | p /dev/xconsole 0640 root adm 2 | -------------------------------------------------------------------------------- /405-rsyslog/doc/DESIGN.config.format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/doc/DESIGN.config.format.md -------------------------------------------------------------------------------- /405-rsyslog/doc/DESIGN.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /405-rsyslog/doc/HEADER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/doc/HEADER.txt -------------------------------------------------------------------------------- /405-rsyslog/doc/KEYWORDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/doc/KEYWORDS.md -------------------------------------------------------------------------------- /405-rsyslog/doc/METADATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/doc/METADATA.md -------------------------------------------------------------------------------- /405-rsyslog/maintainer-rsyslog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/405-rsyslog/maintainer-rsyslog.sh -------------------------------------------------------------------------------- /410-net-dhcp-server/410-net-dhcp-server-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/410-net-dhcp-server/410-net-dhcp-server-install.sh -------------------------------------------------------------------------------- /410-net-dhcp-server/411-net-dhcp-server-isc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/410-net-dhcp-server/411-net-dhcp-server-isc.sh -------------------------------------------------------------------------------- /410-net-dhcp-server/maintainer-dhcp-isc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/410-net-dhcp-server/maintainer-dhcp-isc.sh -------------------------------------------------------------------------------- /415-net-dhclient/411-net-dhclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/415-net-dhclient/411-net-dhclient.sh -------------------------------------------------------------------------------- /415-net-dhclient/412-net-dhclient-nmcli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/415-net-dhclient/412-net-dhclient-nmcli.sh -------------------------------------------------------------------------------- /415-net-dhclient/415-net-dhclient-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/415-net-dhclient/415-net-dhclient-debug.sh -------------------------------------------------------------------------------- /415-net-dhclient/README.dhclient.custom.script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/415-net-dhclient/README.dhclient.custom.script.md -------------------------------------------------------------------------------- /415-net-dhclient/README.dhclient.env.vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/415-net-dhclient/README.dhclient.env.vars.md -------------------------------------------------------------------------------- /415-net-dhclient/maintainer-dhcp-client-isc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/415-net-dhclient/maintainer-dhcp-client-isc.sh -------------------------------------------------------------------------------- /416-net-dhcpcd/416-net-dhcpcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/416-net-dhcpcd/416-net-dhcpcd.sh -------------------------------------------------------------------------------- /416-net-dhcpcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/416-net-dhcpcd/README.md -------------------------------------------------------------------------------- /416-net-dhcpcd/maintainer-dhcp-client-isc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/416-net-dhcpcd/maintainer-dhcp-client-isc.sh -------------------------------------------------------------------------------- /420-firewalls/420-fw-shorewall-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/420-fw-shorewall-install.sh -------------------------------------------------------------------------------- /420-firewalls/421-fw-shorewall-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/421-fw-shorewall-config.sh -------------------------------------------------------------------------------- /420-firewalls/424-fw-shorewall-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/424-fw-shorewall-init.sh -------------------------------------------------------------------------------- /420-firewalls/425-fw-shorewall-systemd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/425-fw-shorewall-systemd.sh -------------------------------------------------------------------------------- /420-firewalls/426-fw-shorewall-params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/426-fw-shorewall-params.sh -------------------------------------------------------------------------------- /420-firewalls/429-fw-shorewall-dhclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/429-fw-shorewall-dhclient.sh -------------------------------------------------------------------------------- /420-firewalls/README.shorewall.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/README.shorewall.design -------------------------------------------------------------------------------- /420-firewalls/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/TODO -------------------------------------------------------------------------------- /420-firewalls/maintainer-fw-shorewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/maintainer-fw-shorewall.sh -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/CHAIN-NAMES-SHOREWALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/CHAIN-NAMES-SHOREWALL.md -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/DESIGN.shorewall.hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/DESIGN.shorewall.hosts -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/DESIGN.shorewall.interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/DESIGN.shorewall.interfaces -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/DESIGN.shorewall.overall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/DESIGN.shorewall.overall -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/DESIGN.shorewall.tips-hints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/DESIGN.shorewall.tips-hints -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/DESIGN.shorewall.zones.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/DESIGN.shorewall.zones.sh -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/README.macro.maclog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/README.macro.maclog -------------------------------------------------------------------------------- /420-firewalls/shorewall/doc/README.obsoleted-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/doc/README.obsoleted-files -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/README.Debian -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/README.sandbay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/README.sandbay -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/README.txt -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/SSHKnock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/SSHKnock -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/accounting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/accounting -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/blrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/blrules -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/clear -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/compile -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/conntrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/conntrack -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/dhcp.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/findgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/findgw -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/hosts -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/init -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/initdone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/initdone -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/interfaces -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/isusable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/isusable -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/mac-timed-access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/mac-timed-access -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/maclist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/maclist -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/maclog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/maclog -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/macro.SSHKnock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/mangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/mangle -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/mangle.annotated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/mangle.annotated -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/masq.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/masq.bak -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/nat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/nat -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/params -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/params.dpkg-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/params.dpkg-old -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/policy -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/providers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/providers -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/refresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/refresh -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/refreshed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/refreshed -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/restore -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/restored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/restored -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/rules -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/save -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/shorewall.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/shorewall.conf -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/shorewall.conf.dpkg-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/shorewall.conf.dpkg-old -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/snat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/snat -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/start -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/started: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/started -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/stop -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/stopped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/stopped -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/stoppedrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/stoppedrules -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/tcclasses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/tcclasses -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/tcclear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/tcclear -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/tcdevices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/tcdevices -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/tcinterfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/tcinterfaces -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/timeframe-mac-blocked.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/timeframe-mac-blocked.sh -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/timeframe-mac-unblocked.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/timeframe-mac-unblocked.sh -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/tunnels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/tunnels -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/update_tor_ipsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/update_tor_ipsets.sh -------------------------------------------------------------------------------- /420-firewalls/shorewall/etc/shorewall/zones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/etc/shorewall/zones -------------------------------------------------------------------------------- /420-firewalls/shorewall/install-shorewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/420-firewalls/shorewall/install-shorewall.sh -------------------------------------------------------------------------------- /480-ntp-chrony/480-net-time-server-decision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/480-net-time-server-decision.sh -------------------------------------------------------------------------------- /480-ntp-chrony/481-net-ntp-decision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/481-net-ntp-decision.sh -------------------------------------------------------------------------------- /480-ntp-chrony/482-net-ntp-chrony-patch-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/482-net-ntp-chrony-patch-debian.sh -------------------------------------------------------------------------------- /480-ntp-chrony/482-net-ntp-chrony-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/482-net-ntp-chrony-pkg.sh -------------------------------------------------------------------------------- /480-ntp-chrony/483-net-ntp-chrony-conf-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/483-net-ntp-chrony-conf-main.sh -------------------------------------------------------------------------------- /480-ntp-chrony/484-net-ntp-chrony-pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/484-net-ntp-chrony-pool.sh -------------------------------------------------------------------------------- /480-ntp-chrony/485-net-ntp-chrony-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/485-net-ntp-chrony-admin.sh -------------------------------------------------------------------------------- /480-ntp-chrony/486-net-ntp-chrony-mitm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/486-net-ntp-chrony-mitm.sh -------------------------------------------------------------------------------- /480-ntp-chrony/488-net-ntp-chrony-dropins-various.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/488-net-ntp-chrony-dropins-various.sh -------------------------------------------------------------------------------- /480-ntp-chrony/489-net-ntp-chrony-fileperms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/489-net-ntp-chrony-fileperms.sh -------------------------------------------------------------------------------- /480-ntp-chrony/CHRONY-REDESIGN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/CHRONY-REDESIGN.sh -------------------------------------------------------------------------------- /480-ntp-chrony/DEBIAN-BUG-CHRONY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/DEBIAN-BUG-CHRONY -------------------------------------------------------------------------------- /480-ntp-chrony/DESIGN-CHRONY-BIND.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/DESIGN-CHRONY-BIND.txt -------------------------------------------------------------------------------- /480-ntp-chrony/DESIGN-CHRONY-UNPRIVILEGED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/DESIGN-CHRONY-UNPRIVILEGED.txt -------------------------------------------------------------------------------- /480-ntp-chrony/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/README.md -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/00-conf-confdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/00-conf-confdir.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/05-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/05-server.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/06-maxupdateskew.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/06-maxupdateskew.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/08-pidfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/08-pidfile.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/08-user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/08-user.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/09-maxdrift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/09-maxdrift.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/09-minsources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/09-minsources.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/10-cnf-logdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/10-cnf-logdir.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/10-init-allow-deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/10-init-allow-deny.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/10-init-clockprecision.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/10-init-clockprecision.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/10-init-lock-all.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/10-init-lock-all.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/10-init-logbanner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/10-init-logbanner.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/10-lcl-maxdrift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/10-lcl-maxdrift.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/10-lcl-maxjitter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/10-lcl-maxjitter.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/12-init-cnf-allow-deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/12-init-cnf-allow-deny.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/12-keyfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/12-keyfile.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/13-ntsdumpdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/13-ntsdumpdir.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/14-ntsservercertkey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/14-ntsservercertkey.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/15-rtc-rtcautotrim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/15-rtc-rtcautotrim.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/15-rtc-rtconutc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/15-rtc-rtconutc.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/15-rtc-rtcsync.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/15-rtc-rtcsync.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/15-sys-maxslewrate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/15-sys-maxslewrate.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/16-source-combinelimit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/16-source-combinelimit.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/18-keys-keysfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/18-keys-keysfile.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-bindacqaddress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-bindacqaddress.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-bindaddress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-bindaddress.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-bindcmdaddress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-bindcmdaddress.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-bindcmddevice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-bindcmddevice.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-binddevice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-binddevice.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-cmdport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-cmdport.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-dumpdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-dumpdir.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-hwtimestamp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-hwtimestamp.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-net-ntp-dscp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-net-ntp-dscp.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-nio-hwclockfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-nio-hwclockfile.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-nio-maxntsconnections.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-nio-maxntsconnections.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/20-nio-port.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/20-nio-port.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/21-ncr-maxclockerror.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/21-ncr-maxclockerror.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/23-rcl-authselectmode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/23-rcl-authselectmode.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/23-rcl-initstepslew.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/23-rcl-initstepslew.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/23-rcl-log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/23-rcl-log.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/23-rcl-refclock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/23-rcl-refclock.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/23-rcl-stratumweight.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/23-rcl-stratumweight.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/24-leapsecmode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/24-leapsecmode.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-log-logdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-log-logdir.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-correction-time-ratio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-correction-time-ratio.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-driftfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-driftfile.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-fallbackdrift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-fallbackdrift.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-leapsecmode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-leapsecmode.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-leapsectz.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-leapsectz.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-local.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-mailonchange.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-mailonchange.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-makestep.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-makestep.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-maxchange.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-maxchange.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-maxsamples.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-maxsamples.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-maxupdateskew.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-maxupdateskew.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/30-ref-minsamples.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/30-ref-minsamples.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/50-stratum-level.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/50-stratum-level.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/60-clientlog-flag-limit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/60-clientlog-flag-limit.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/66-nsd-ntpsigndsocket.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/66-nsd-ntpsigndsocket.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/70-nks-ntsntpport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/70-nks-ntsntpport.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/70-nks-ntsrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/70-nks-ntsrotate.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/70-nks-ntsservercert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/70-nks-ntsservercert.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/70-nks-ntsserverkey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/70-nks-ntsserverkey.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/70-nks-ntsserverprocesses.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/70-nks-ntsserverprocesses.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/72-clg-clientloglimit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/72-clg-clientloglimit.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/72-clg-cmdratelimit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/72-clg-cmdratelimit.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/72-clg-noclientlog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/72-clg-noclientlog.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/72-clg-ntsratelimit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/72-clg-ntsratelimit.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/72-clg-ratelimit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/72-clg-ratelimit.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/72-mailonchange.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/72-mailonchange.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/74-mnl-manual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/74-mnl-manual.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/76-tmc-tempcomp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/76-tmc-tempcomp.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/80-nau-nosystemcert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/80-nau-nosystemcert.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/80-nau-ntsdumpdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/80-nau-ntsdumpdir.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/80-nau-ntstrustedcertfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/80-nau-ntstrustedcertfile.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/80-sch-rtcfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/80-sch-rtcfile.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/82-hwtimestamp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/82-hwtimestamp.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/84-rtcdevice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/84-rtcdevice.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/86-response-minsources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/86-response-minsources.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/90-sched-logchange.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/90-sched-logchange.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/90-sched_priority.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/90-sched_priority.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/90-unused-broadcast.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/90-unused-broadcast.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/WHO-READ-IT-FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/WHO-READ-IT-FIRST.txt -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/nksn-nocerttimecheck.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/nksn-nocerttimecheck.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/nksn-ntsntpserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/nksn-ntsntpserver.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/nnc-ntsrefresh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/nnc-ntsrefresh.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/peer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/peer.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/pool.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/pool.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/reselectdist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/reselectdist.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/server.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/smoothtime.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/smoothtime.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/sourcedir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/sourcedir.conf -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/conf.d/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/conf.d/template -------------------------------------------------------------------------------- /480-ntp-chrony/chrony/systemd/chronyd@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/chrony/systemd/chronyd@.service -------------------------------------------------------------------------------- /480-ntp-chrony/maintainer-ntp-chrony.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/480-ntp-chrony/maintainer-ntp-chrony.sh -------------------------------------------------------------------------------- /490-net-ssh/490-net-ssh-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/490-net-ssh-server.sh -------------------------------------------------------------------------------- /490-net-ssh/491-net-ssh-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/491-net-ssh-client.sh -------------------------------------------------------------------------------- /490-net-ssh/492-net-ssh-user-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/492-net-ssh-user-add.sh -------------------------------------------------------------------------------- /490-net-ssh/495-net-ssh-moduli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/495-net-ssh-moduli.sh -------------------------------------------------------------------------------- /490-net-ssh/497-net-ssh-sftp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/497-net-ssh-sftp.sh -------------------------------------------------------------------------------- /490-net-ssh/498-net-ssh-bastion-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/498-net-ssh-bastion-server.sh -------------------------------------------------------------------------------- /490-net-ssh/499-net-ssh-config-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/499-net-ssh-config-check.sh -------------------------------------------------------------------------------- /490-net-ssh/README.OpenSSH.bastion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/README.OpenSSH.bastion.md -------------------------------------------------------------------------------- /490-net-ssh/README.OpenSSH.checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/README.OpenSSH.checker.md -------------------------------------------------------------------------------- /490-net-ssh/README.OpenSSH.environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/README.OpenSSH.environment-variables.md -------------------------------------------------------------------------------- /490-net-ssh/README.OpenSSH.filedrop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/README.OpenSSH.filedrop.md -------------------------------------------------------------------------------- /490-net-ssh/README.OpenSSH.hardening.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/README.OpenSSH.hardening.md -------------------------------------------------------------------------------- /490-net-ssh/README.OpenSSH.namespace.net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/README.OpenSSH.namespace.net.md -------------------------------------------------------------------------------- /490-net-ssh/README.OpenSSH.versioning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/README.OpenSSH.versioning -------------------------------------------------------------------------------- /490-net-ssh/maintainer-ssh-openssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/maintainer-ssh-openssh.sh -------------------------------------------------------------------------------- /490-net-ssh/new-since-8.8-p1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/new-since-8.8-p1.txt -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/005-log-verbose.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/005-log-verbose.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/010-conf-old-ignore.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/010-conf-old-ignore.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/011-include.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/011-include.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/20-hostname.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/20-hostname.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/200-canonicalize-hostname.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/200-canonicalize-hostname.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/210-canonicalize-max-dots.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/210-canonicalize-max-dots.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/220-canonical-domains.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/220-canonical-domains.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/221-canonicalize-fallback-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/221-canonicalize-fallback-local.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/222-canonicalize-permitted-cnames.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/222-canonicalize-permitted-cnames.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/224-address-family.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/224-address-family.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/225-ip-port.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/225-ip-port.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/230-proxy-command.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/230-proxy-command.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/231-proxy-use-fd-pass.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/231-proxy-use-fd-pass.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/232-clear-all-forwardings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/232-clear-all-forwardings.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/250-control-persist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/250-control-persist.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/251-proxy-jump.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/251-proxy-jump.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/260-protocol-hostkeys-update.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/260-protocol-hostkeys-update.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/270-connection-attempts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/270-connection-attempts.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/280-remote-command.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/280-remote-command.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/281-log-level.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/281-log-level.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/282-log-facility.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/282-log-facility.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/300-user-identity-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/300-user-identity-agent.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/310-path-control.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/310-path-control.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/320-connect-timeout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/320-connect-timeout.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/330-tcp-keepalive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/330-tcp-keepalive.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/340-bind-address.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/340-bind-address.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/350-bind-interface.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/350-bind-interface.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/360-server-alive-interval.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/360-server-alive-interval.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/361-server-alive-count-max.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/361-server-alive-count-max.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/370-pkcs11-provier.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/370-pkcs11-provier.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/380-batch-mode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/380-batch-mode.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/390-identity-files.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/390-identity-files.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/400-identity-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/400-identity-agent.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/410-stream-local-bind-mask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/410-stream-local-bind-mask.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/410-stream-local-bind-unlink.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/410-stream-local-bind-unlink.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/440-knownhosts-global-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/440-knownhosts-global-file.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/442-knownhosts-check-host-ip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/442-knownhosts-check-host-ip.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/443-knownhosts-hashed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/443-knownhosts-hashed.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/444-fork-after-authentication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/444-fork-after-authentication.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/445-session-type.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/445-session-type.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/450-knownhosts-user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/450-knownhosts-user.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/500-kex-ciphers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/500-kex-ciphers.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/510-kex-algorithms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/510-kex-algorithms.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/530-compression.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/530-compression.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/550-macs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/550-macs.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/560-hostkeys-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/560-hostkeys-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/561-known-hosts-command.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/561-known-hosts-command.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/570-gssapikeyexchange.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/570-gssapikeyexchange.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/571-gssapikexalgorithms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/571-gssapikexalgorithms.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/580-gssapitrustdns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/580-gssapitrustdns.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/600-session-rekey-limit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/600-session-rekey-limit.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/660-knownhosts-hostkey-revoked.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/660-knownhosts-hostkey-revoked.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/670-hostkey-verify-dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/670-hostkey-verify-dns.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/680-hostkey-alias.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/680-hostkey-alias.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/690-auth-no-host-for-localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/690-auth-no-host-for-localhost.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/700-auth-preferred.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/700-auth-preferred.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/710-auth-password.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/710-auth-password.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/740-auth-interactive-kbd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/740-auth-interactive-kbd.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/741-auth-interactive-kbd-pam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/741-auth-interactive-kbd-pam.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/750-certificate-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/750-certificate-file.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/760-auth-pubkey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/760-auth-pubkey.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/762-auth-pubkey-add-to-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/762-auth-pubkey-add-to-agent.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/763-auth-pubkey-identities-only.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/763-auth-pubkey-identities-only.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/764-required-rsa-size.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/764-required-rsa-size.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/765-security-key-provider.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/765-security-key-provider.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/770-auth-hostbased.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/770-auth-hostbased.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/771-auth-hostbased-accepted-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/771-auth-hostbased-accepted-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/772-auth-hostbased-keysign.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/772-auth-hostbased-keysign.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/773-auth-hostbased-ca-sig-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/773-auth-hostbased-ca-sig-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/780-auth-challenge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/780-auth-challenge.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/790-auth-kerberos-krb5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/790-auth-kerberos-krb5.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/791-auth-kerberos-delegate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/791-auth-kerberos-delegate.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/801-session-tty-request.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/801-session-tty-request.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/805-session-login-max.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/805-session-login-max.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/806-session-fingerprint-hash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/806-session-fingerprint-hash.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/807-session-hostkey-visual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/807-session-hostkey-visual.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/809-permit-remote-open.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/809-permit-remote-open.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/810-session-control-master.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/810-session-control-master.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/811-tunnel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/811-tunnel.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/812-session-tunnel-device.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/812-session-tunnel-device.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/813-stdin-null.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/813-stdin-null.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/814-session-local-forward.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/814-session-local-forward.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/820-forward-gateway-ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/820-forward-gateway-ports.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/821-forward-remote.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/821-forward-remote.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/822-forward-dynamic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/822-forward-dynamic.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/823-forward-exit-on-failure.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/823-forward-exit-on-failure.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/840-session-local-cmd-permit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/840-session-local-cmd-permit.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/841-session-local-cmd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/841-session-local-cmd.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/842-session-forward-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/842-session-forward-agent.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/910-ipqos-delay-thrghpt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/910-ipqos-delay-thrghpt.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/951-x11-forward.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/951-x11-forward.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/952-x11-auth-location.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/952-x11-auth-location.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/953-x11-forward-trusted.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/953-x11-forward-trusted.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/954-x11-forward-timeout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/954-x11-forward-timeout.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/980-escape-char.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/980-escape-char.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/982-shell-setenv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/982-shell-setenv.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/991-match-host-onion.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/991-match-host-onion.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/993-match-host-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/993-match-host-local.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/999-match-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/999-match-template.conf -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/KEYWORDS_USED.txt.8.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/KEYWORDS_USED.txt.8.4 -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/KEYWORDS_USED.txt.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/KEYWORDS_USED.txt.9.2 -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/README -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/explicit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/explicit.txt -------------------------------------------------------------------------------- /490-net-ssh/ssh_config.d/ssh-check-new-options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/ssh_config.d/ssh-check-new-options.sh -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/100-daemon-logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/100-daemon-logging.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/111-daemon-network.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/111-daemon-network.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/112-daemon-pidfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/112-daemon-pidfile.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/113-daemon-maxstartups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/113-daemon-maxstartups.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/115-daemon-tcpkeepalive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/115-daemon-tcpkeepalive.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/119-daemon-rdomain.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/119-daemon-rdomain.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/200-ip-socket-created: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/200-ip-socket-created -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/201-daemon-login-grace.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/201-daemon-login-grace.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/220-daemon-subversion.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/220-daemon-subversion.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/223-daemon-banner-debian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/223-daemon-banner-debian.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/260-login-auth-keyagent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/260-login-auth-keyagent.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/300-protocol-kex-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/300-protocol-kex-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/302-protocol-ciphers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/302-protocol-ciphers.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/304-protocol-macs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/304-protocol-macs.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/310-protocol-compression.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/310-protocol-compression.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/324-protocol-rekey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/324-protocol-rekey.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/336-protocol-hostkey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/336-protocol-hostkey.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/337-protocol-host-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/337-protocol-host-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/338-protocol-host-certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/338-protocol-host-certs.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/410-protocol-auth-methods.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/410-protocol-auth-methods.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/430-auth-pubkey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/430-auth-pubkey.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/431-auth-pubkey-options.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/431-auth-pubkey-options.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/434-auth-pubkey-cas-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/434-auth-pubkey-cas-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/435-auth-pubkey-revoked.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/435-auth-pubkey-revoked.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/436-auth-pubkey-auth-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/436-auth-pubkey-auth-file.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/438-auth-pubkey-ca-keys.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/438-auth-pubkey-ca-keys.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/440-auth-challenge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/440-auth-challenge.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/440-login-strict-modes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/440-login-strict-modes.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/442-auth-hostbased.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/442-auth-hostbased.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/443-auth-hostbased-opts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/443-auth-hostbased-opts.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/450-auth-krb5-gss-api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/450-auth-krb5-gss-api.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/460-auth-kbd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/460-auth-kbd.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/500-session.conf: -------------------------------------------------------------------------------- 1 | 2 | # schedule this file for deletion 3 | -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/501-session-client-alive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/501-session-client-alive.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/507-kex-permit-open.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/507-kex-permit-open.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/510-auth2-pam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/510-auth2-pam.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/515-auth2-permit-listen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/515-auth2-permit-listen.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/516-auth2-use-dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/516-auth2-use-dns.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/520-login-chroot-dir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/520-login-chroot-dir.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/530-login-users-deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/530-login-users-deny.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/540-login-users-allow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/540-login-users-allow.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/550-login-groups-deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/550-login-groups-deny.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/570-login-groups-allow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/570-login-groups-allow.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/580-login-auth-cmds-princ.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/580-login-auth-cmds-princ.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/592-login-user-rc-permit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/592-login-user-rc-permit.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/700-tunnel-permit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/700-tunnel-permit.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/750-allow-tcp-forwarding.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/750-allow-tcp-forwarding.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/811-pty-x11-support.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/811-pty-x11-support.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/849-sess-chan-forwarding.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/849-sess-chan-forwarding.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/850-sess-chan-subsystem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/850-sess-chan-subsystem.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/852-sess-chan-pty-set-env.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/852-sess-chan-pty-set-env.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/859-sess-chan-pty-max.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/859-sess-chan-pty-max.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/900-pipe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/900-pipe.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/902-expose-auth-info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/902-expose-auth-info.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/910-ctrl-gateway-ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/910-ctrl-gateway-ports.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/999-match-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/999-match-template.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d-bastion/README.ssh-bastion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d-bastion/README.ssh-bastion.md -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/100-daemon-logging-level.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/100-daemon-logging-level.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/101-daemon-logging-facility.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/101-daemon-logging-facility.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/111-daemon-network-ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/111-daemon-network-ports.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/112-daemon-pidfile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/112-daemon-pidfile.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/113-daemon-maxstartups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/113-daemon-maxstartups.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/114-daemon-ip-address-family.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/114-daemon-ip-address-family.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/115-daemon-tcpkeepalive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/115-daemon-tcpkeepalive.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/116-per-source-net-block-size.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/116-per-source-net-block-size.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/117-per-source-max-startups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/117-per-source-max-startups.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/119-daemon-rdomain.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/119-daemon-rdomain.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/200-ip-socket-created: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/200-ip-socket-created -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/201-daemon-login-grace.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/201-daemon-login-grace.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/220-daemon-subversion.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/220-daemon-subversion.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/223-daemon-banner-debian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/223-daemon-banner-debian.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/260-login-auth-keyagent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/260-login-auth-keyagent.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/300-protocol-kex-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/300-protocol-kex-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/301-gssapi-kex-algorithms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/301-gssapi-kex-algorithms.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/302-protocol-ciphers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/302-protocol-ciphers.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/303-moduli-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/303-moduli-file.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/304-protocol-macs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/304-protocol-macs.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/310-protocol-compression.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/310-protocol-compression.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/324-protocol-rekey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/324-protocol-rekey.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/336-protocol-hostkey.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/336-protocol-hostkey.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/337-protocol-host-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/337-protocol-host-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/338-protocol-host-certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/338-protocol-host-certs.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/339-protocol-sec-key-provider.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/339-protocol-sec-key-provider.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/410-protocol-auth-methods.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/410-protocol-auth-methods.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/412-protocol-auth-max-tries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/412-protocol-auth-max-tries.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/426-login-fingerprint-hash-algo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/426-login-fingerprint-hash-algo.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/429-required-rsa-size.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/429-required-rsa-size.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/430-auth-pubkey-authentication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/430-auth-pubkey-authentication.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/432-auth-pubkey-accepted-algos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/432-auth-pubkey-accepted-algos.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/435-auth-pubkey-revoked-keys.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/435-auth-pubkey-revoked-keys.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/440-login-strict-modes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/440-login-strict-modes.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/442-auth-hostbased-enable.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/442-auth-hostbased-enable.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/460-auth-kbd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/460-auth-kbd.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/461-pam-service-name.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/461-pam-service-name.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/502-unused-connection-timeout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/502-unused-connection-timeout.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/503-channel-timeout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/503-channel-timeout.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/507-kex-permit-open.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/507-kex-permit-open.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/510-auth2-pam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/510-auth2-pam.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/512-auth2-permit-root-login.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/512-auth2-permit-root-login.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/515-auth2-permit-listen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/515-auth2-permit-listen.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/516-auth2-use-dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/516-auth2-use-dns.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/520-login-chroot-dir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/520-login-chroot-dir.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/530-login-users-deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/530-login-users-deny.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/540-login-users-allow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/540-login-users-allow.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/550-login-groups-deny.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/550-login-groups-deny.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/570-login-groups-allow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/570-login-groups-allow.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/580-login-auth-cmds-princ.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/580-login-auth-cmds-princ.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/592-login-user-rc-permit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/592-login-user-rc-permit.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/700-tunnel-permit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/700-tunnel-permit.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/750-allow-tcp-forwarding.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/750-allow-tcp-forwarding.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/810-pty-x11-forwarding.conf : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/810-pty-x11-forwarding.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/811-pty-x11-xauth-location.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/811-pty-x11-xauth-location.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/812-pty-x11-display-offset.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/812-pty-x11-display-offset.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/813-pty-x11-use-localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/813-pty-x11-use-localhost.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/849-sess-chan-forwarding.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/849-sess-chan-forwarding.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/850-sess-chan-subsystem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/850-sess-chan-subsystem.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/851-sess-chan-allow-agent-fwd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/851-sess-chan-allow-agent-fwd.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/852-sess-chan-pty-set-env.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/852-sess-chan-pty-set-env.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/853-sess-chan-pty-allowed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/853-sess-chan-pty-allowed.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/854-sess-chan-pty-lastlogin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/854-sess-chan-pty-lastlogin.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/855-sess-chan-pty-banner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/855-sess-chan-pty-banner.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/856-sess-chan-pty-printmotd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/856-sess-chan-pty-printmotd.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/857-sess-chan-pty-forced-cmd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/857-sess-chan-pty-forced-cmd.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/858-sess-chan-pty-shell-env.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/858-sess-chan-pty-shell-env.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/859-sess-chan-pty-max.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/859-sess-chan-pty-max.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/860-sess-chan-pty-ip-qos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/860-sess-chan-pty-ip-qos.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/901-streamlocal-bind-mask.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/901-streamlocal-bind-mask.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/902-expose-auth-info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/902-expose-auth-info.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/910-ctrl-gateway-ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/910-ctrl-gateway-ports.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/999-match-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/999-match-template.conf -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/KEYWORDS-USED.txt.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/KEYWORDS-USED.txt.9.2 -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/OpenSSH.call-ordering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/OpenSSH.call-ordering.txt -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/README -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/README.forwardings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/README.forwardings -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/README.sftp-users.design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/README.sftp-users.design.md -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/match.txt -------------------------------------------------------------------------------- /490-net-ssh/sshd_config.d/sshd-check-new-options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/490-net-ssh/sshd_config.d/sshd-check-new-options.sh -------------------------------------------------------------------------------- /500-dns/500-dns-bind9-config-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/500-dns-bind9-config-reset.sh -------------------------------------------------------------------------------- /500-dns/501-dns-bind9-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/501-dns-bind9-install.sh -------------------------------------------------------------------------------- /500-dns/503-dns-no-dnsmasq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/503-dns-no-dnsmasq.sh -------------------------------------------------------------------------------- /500-dns/507-dns-bind9-class-chaos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/507-dns-bind9-class-chaos.sh -------------------------------------------------------------------------------- /500-dns/509-dns-bind9-tmpdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/509-dns-bind9-tmpdir.sh -------------------------------------------------------------------------------- /500-dns/510-dns-bind9-basic-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/510-dns-bind9-basic-info.sh -------------------------------------------------------------------------------- /500-dns/511-dns-bind9-service-default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/511-dns-bind9-service-default.sh -------------------------------------------------------------------------------- /500-dns/512-dns-bind9-systemd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/512-dns-bind9-systemd.sh -------------------------------------------------------------------------------- /500-dns/513-dns-bind9-systemd-start-later.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/513-dns-bind9-systemd-start-later.sh -------------------------------------------------------------------------------- /500-dns/523-dns-bind9-controls-rndc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/523-dns-bind9-controls-rndc.sh -------------------------------------------------------------------------------- /500-dns/524-dns-bind9-controls-read-only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/524-dns-bind9-controls-read-only.sh -------------------------------------------------------------------------------- /500-dns/525-dns-bind9-logging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/525-dns-bind9-logging.sh -------------------------------------------------------------------------------- /500-dns/530-dns-bind9-views.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/530-dns-bind9-views.sh -------------------------------------------------------------------------------- /500-dns/540-dns-bind9-caching-only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/540-dns-bind9-caching-only.sh -------------------------------------------------------------------------------- /500-dns/541-dns-bind9-responder-defense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/541-dns-bind9-responder-defense.sh -------------------------------------------------------------------------------- /500-dns/550-dns-bind9-zones.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/550-dns-bind9-zones.sh -------------------------------------------------------------------------------- /500-dns/551-dns-bind9-zone-localhost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/551-dns-bind9-zone-localhost.sh -------------------------------------------------------------------------------- /500-dns/560-dns-bind9-primary-hidden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/560-dns-bind9-primary-hidden.sh -------------------------------------------------------------------------------- /500-dns/577-dns-bind9-interkeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/577-dns-bind9-interkeys.sh -------------------------------------------------------------------------------- /500-dns/580-dns-bind9-db-sshfs.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /500-dns/590-dns-bind9-sshfp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/590-dns-bind9-sshfp.sh -------------------------------------------------------------------------------- /500-dns/591-dns-bind9-openpgpkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/591-dns-bind9-openpgpkey.sh -------------------------------------------------------------------------------- /500-dns/592-dns-bind9-autodiscover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/592-dns-bind9-autodiscover.sh -------------------------------------------------------------------------------- /500-dns/593-dns-bind9-autoconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/593-dns-bind9-autoconfig.sh -------------------------------------------------------------------------------- /500-dns/594-dns-bind9-bimi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/594-dns-bind9-bimi.sh -------------------------------------------------------------------------------- /500-dns/599-dns-root-server-standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/599-dns-root-server-standalone.sh -------------------------------------------------------------------------------- /500-dns/README-rndc-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README-rndc-security.md -------------------------------------------------------------------------------- /500-dns/README.bastion-instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.bastion-instances.md -------------------------------------------------------------------------------- /500-dns/README.by-subtopic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.by-subtopic -------------------------------------------------------------------------------- /500-dns/README.code.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.code.result -------------------------------------------------------------------------------- /500-dns/README.ddns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.ddns.md -------------------------------------------------------------------------------- /500-dns/README.dynamic.ip.dhcp.client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.dynamic.ip.dhcp.client.md -------------------------------------------------------------------------------- /500-dns/README.easy-admin.dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.easy-admin.dns.md -------------------------------------------------------------------------------- /500-dns/README.keyname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.keyname -------------------------------------------------------------------------------- /500-dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.md -------------------------------------------------------------------------------- /500-dns/README.other-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.other-files -------------------------------------------------------------------------------- /500-dns/README.root-on-loopback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.root-on-loopback.md -------------------------------------------------------------------------------- /500-dns/README.trust-anchors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.trust-anchors.md -------------------------------------------------------------------------------- /500-dns/README.zones.details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/README.zones.details.md -------------------------------------------------------------------------------- /500-dns/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/TODO -------------------------------------------------------------------------------- /500-dns/maintainer-dns-isc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/500-dns/maintainer-dns-isc.sh -------------------------------------------------------------------------------- /600-mail-postfix/600-mail-mda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/600-mail-mda.sh -------------------------------------------------------------------------------- /600-mail-postfix/605-mail-mbox-maildir-add-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/605-mail-mbox-maildir-add-user.sh -------------------------------------------------------------------------------- /600-mail-postfix/605-mail-mbox-maildir-etc-skel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/605-mail-mbox-maildir-etc-skel.sh -------------------------------------------------------------------------------- /600-mail-postfix/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/DESIGN.md -------------------------------------------------------------------------------- /600-mail-postfix/config/access: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /600-mail-postfix/config/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/config/aliases -------------------------------------------------------------------------------- /600-mail-postfix/config/canonical: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /600-mail-postfix/config/relocated: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /600-mail-postfix/config/transport: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /600-mail-postfix/config/virtual: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /600-mail-postfix/maintainer-mail-postfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/maintainer-mail-postfix.sh -------------------------------------------------------------------------------- /600-mail-postfix/postfix-canonical.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/postfix-canonical.sh -------------------------------------------------------------------------------- /600-mail-postfix/postfix-passwd_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/postfix-passwd_setup.sh -------------------------------------------------------------------------------- /600-mail-postfix/postfix-transport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-mail-postfix/postfix-transport.sh -------------------------------------------------------------------------------- /600-net-web-well-known.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/600-net-web-well-known.sh -------------------------------------------------------------------------------- /610-mail-exim/exim4-config-split-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/610-mail-exim/exim4-config-split-files.md -------------------------------------------------------------------------------- /610-mail-exim/exim4-reinstall-config-debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/610-mail-exim/exim4-reinstall-config-debian.md -------------------------------------------------------------------------------- /610-mail-exim/exim4-subaddressing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/610-mail-exim/exim4-subaddressing.md -------------------------------------------------------------------------------- /700-lighttpd/700-lighttpd-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/700-lighttpd-install.sh -------------------------------------------------------------------------------- /700-lighttpd/701-lighttpd-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/701-lighttpd-basic.sh -------------------------------------------------------------------------------- /700-lighttpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/README.md -------------------------------------------------------------------------------- /700-lighttpd/conf.d/00-global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/00-global.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/10-accesslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/10-accesslog.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/11-log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/11-log.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/20-modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/20-modules.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/25-global-upload-disabled.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/25-global-upload-disabled.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/30-mime-encoding.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/30-mime-encoding.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/35-url-handling-security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/35-url-handling-security.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/40-fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/40-fastcgi.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/60-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/60-ssl.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/61-ssl-protocols.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/61-ssl-protocols.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/62-ssl-ciphers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/62-ssl-ciphers.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/63-ssl-curves.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/63-ssl-curves.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/64-http-hsts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/64-http-hsts.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/65-ocsp-stapling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/65-ocsp-stapling.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/66-sni.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/66-sni.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/67-dtls-client-verify.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/67-dtls-client-verify.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/70-security-cipher-order.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/70-security-cipher-order.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/80-vhosts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/80-vhosts.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/98-performance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/98-performance.conf -------------------------------------------------------------------------------- /700-lighttpd/conf.d/99-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/conf.d/99-local.conf -------------------------------------------------------------------------------- /700-lighttpd/lighttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/lighttpd.conf -------------------------------------------------------------------------------- /700-lighttpd/maintainer-lighttpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/700-lighttpd/maintainer-lighttpd.sh -------------------------------------------------------------------------------- /800-net-git-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/800-net-git-server.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/README.md -------------------------------------------------------------------------------- /TEMPLATE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/TEMPLATE.sh -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/TODO -------------------------------------------------------------------------------- /distro-os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/distro-os.sh -------------------------------------------------------------------------------- /doc/README.subjectAltName-yours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/doc/README.subjectAltName-yours.md -------------------------------------------------------------------------------- /doc/exim4-inbound-filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/doc/exim4-inbound-filtering.md -------------------------------------------------------------------------------- /easy-admin-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/easy-admin-installer.sh -------------------------------------------------------------------------------- /test/DESIGN-INI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/DESIGN-INI.md -------------------------------------------------------------------------------- /test/archive/ini_crudini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/archive/ini_crudini.sh -------------------------------------------------------------------------------- /test/archive/ini_section.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/archive/ini_section.sh -------------------------------------------------------------------------------- /test/archive/section-awk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/archive/section-awk.sh -------------------------------------------------------------------------------- /test/archive/section-bash-mods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/archive/section-bash-mods.sh -------------------------------------------------------------------------------- /test/basename_noline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/basename_noline.sh -------------------------------------------------------------------------------- /test/call-stack-trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/call-stack-trace.sh -------------------------------------------------------------------------------- /test/color-support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/color-support.sh -------------------------------------------------------------------------------- /test/dirname_no_line2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/dirname_no_line2.sh -------------------------------------------------------------------------------- /test/dirname_noline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/dirname_noline.sh -------------------------------------------------------------------------------- /test/logfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/logfile.sh -------------------------------------------------------------------------------- /test/modifier-a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/modifier-a.sh -------------------------------------------------------------------------------- /test/param-expansion-remove-spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/param-expansion-remove-spaces.sh -------------------------------------------------------------------------------- /test/relative_dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/relative_dirs.sh -------------------------------------------------------------------------------- /test/script-in-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/script-in-dir.sh -------------------------------------------------------------------------------- /test/section-regex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/section-regex.sh -------------------------------------------------------------------------------- /test/source-me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/source-me.sh -------------------------------------------------------------------------------- /test/test-dir/script-in-subdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-dir/script-in-subdir.sh -------------------------------------------------------------------------------- /test/test-section-regex/gawk-debug-file-read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/gawk-debug-file-read.sh -------------------------------------------------------------------------------- /test/test-section-regex/grep-regex-as-arg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/grep-regex-as-arg.sh -------------------------------------------------------------------------------- /test/test-section-regex/local-unset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/local-unset.sh -------------------------------------------------------------------------------- /test/test-section-regex/sed-comment-inline-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/sed-comment-inline-remove.sh -------------------------------------------------------------------------------- /test/test-section-regex/sed-remove-inline-comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/sed-remove-inline-comment.sh -------------------------------------------------------------------------------- /test/test-section-regex/sed-replace-new-line-with-space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/sed-replace-new-line-with-space.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-all.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-ini-file-read.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-ini-file-read.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-ini-kw-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-ini-kw-get.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-ini-kw-normalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-ini-kw-normalize.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-ini-kw-valid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-ini-kw-valid.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-ini-section-extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-ini-section-extract.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-ini-section-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-ini-section-list.sh -------------------------------------------------------------------------------- /test/test-section-regex/test-ini-section-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/test-section-regex/test-ini-section-test.sh -------------------------------------------------------------------------------- /test/what-is-my-script-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egberts/easy-admin/HEAD/test/what-is-my-script-name.sh --------------------------------------------------------------------------------