This gist has migrated to the repo below.
Please submit new entries as pull requests to https://github.com/jauderho/nts-servers.
Initial source: https://docs.ntpsec.org/latest/NTS-QuickStart.html
:root { | |
--min-item-width: 28ch; | |
--max-item-width: .5fr; | |
--grid-spacing: .25rem; | |
--item-padding: .25rem; | |
} | |
/* Let items expand on small screens */ | |
@media (max-width: 600px) { | |
:root { |
# A minimal configuration to host a RustDesk server with Traefik v3. | |
# | |
# This configuration is based on a single Rustdesk container hosting the two hbbr and hbbs services | |
# instead of running two separate containers as in the official documentation. | |
# See https://rustdesk.com/docs/en/self-host/rustdesk-server-oss/docker/ for more information. | |
# | |
# Pay attention to the comments in the file and adapt the configuration to your needs. | |
# Once deployed you must configure the Rustdesk client in the Network tab to use the domain | |
# name of the relay server and the port 21117. | |
# ID server: DOMAIN_NAME:21116 |
resource_not_found = {} | |
begin | |
resources('ruby_block[my-resource-supposed-to-exist]') | |
rescue Chef::Exceptions::ResourceNotFound | |
resource_not_found['ruby_block[my-resource-supposed-to-exist]'] = true | |
end | |
template '/etc/my/template.conf' do | |
source 'template.conf.erb' | |
mode '640' |
This gist has migrated to the repo below.
Please submit new entries as pull requests to https://github.com/jauderho/nts-servers.
Initial source: https://docs.ntpsec.org/latest/NTS-QuickStart.html
Server 2 sockets,6 cores each, 2.4ghz | |
# Set ixgbe options | |
# Limit RSS queues to the number of physical cores per cpu | |
# Disable offload | |
# When you change this, you need to run the command and reboot for it to take. | |
echo "options ixgbe LRO=0,0 MQ=1,1 RSS=6,6 VMDQ=0,0 vxlan_rx=0,0" > /etc/modprobe.d/ixgbe.conf | |
# Shut down HT cores | |
for i in $(seq 1 2 23); do |
Bucket policy is an access policy available for you to grant anonymous permissions to your Minio resources. Bucket policy uses JSON-based access policy language.
This section presents a few examples of typical use cases for bucket policies. The policies use testbucket
strings in the resource value. To test these policies, you need to replace these strings with your bucket name. For more information please read Amazon S3 access policy language
The following example policy grants the s3:GetObject
permission to any public anonymous users. This permission allows anyone to read the object data under testbucket
, which is useful for when you have publicly readable assets. A typical example is a website assets stored in testbucket
.
#!/bin/bash | |
# This script checks if there are valid ROAs for a list of IP blocks | |
# Checks from two sources - rpki validator and bgpmon | |
iplist="iplist.txt" | |
notvalid=0 | |
# Replace with your own validator | |
rpki_validator="http://localcert.ripe.net:8088" |
diff --git a/src/router.c b/src/router.c | |
index 541c023..9ad79d4 100644 | |
--- a/src/router.c | |
+++ b/src/router.c | |
@@ -390,6 +390,7 @@ enum { | |
IOV_RA_ROUTES, | |
IOV_RA_DNS, | |
IOV_RA_SEARCH, | |
+ IOV_RA_PREF64, | |
IOV_RA_ADV_INTERVAL, |
When running certain commands like ssh or git within Terminal on OSX you may get notices like the one below, which can be annoying. | |
perl: warning: Setting locale failed. | |
perl: warning: Please check that your locale settings: | |
LANGUAGE = (unset), | |
LC_ALL = (unset), | |
LANG = "en_US.UTF-8" | |
are supported and installed on your system. | |
perl: warning: Falling back to the standard locale ("C"). | |
# Define User Variables | |
:global ddnspass "TOKEN" | |
:global ddnshost "HOSTNAME.dynv6.net" | |
#:global ddnspool "pool0" | |
#:global ddnsinterface "bridge" | |
#:global ddnsinterface "6to4-henet" | |
#:global ddnsinterface "pppoe-out1" | |
#:global ddnsinterface "ether1" | |
# Define Global Variables |