This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
plugin: netbox.netbox.nb_inventory | |
cache: True | |
cache_connection: .inventory | |
cache_plugin: jsonfile | |
plurals: False | |
group_by: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import pingdomv3 | |
import subprocess | |
import os | |
pingdom_api_token = os.environ['PINGDOM_API_TOKEN'] | |
client = pingdomv3.Client(pingdom_api_token) | |
checks = client.get_checks(tags="environment_test") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cniVersion": "0.4.0", | |
"name": "vlan24", | |
"plugins": [ | |
{ | |
"type": "bridge", | |
"bridge": "br24", | |
"ipam": { | |
"type": "static", | |
"routes": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import pyterprise | |
import os | |
tfe_token = os.environ.get('TFE_TOKEN') | |
tfe_org = os.environ.get('TFE_ORG') | |
client = pyterprise.Client() | |
client.init(token=tfe_token, url="https://app.terraform.io") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Client name="Chromecast"> | |
<TranscodeTargets> | |
<VideoProfile protocol="http" container="mkv" codec="h264,hevc" audioCodec="eac3,ac3" subtitleFormat="ass,srt" context="streaming"/> | |
<SubtitleProfile container="ass" codec="ass" context="all" /> | |
</TranscodeTargets> | |
<DirectPlayProfiles> | |
<VideoProfile container="mp4" codec="hevc,mpeg1video,mpeg2video,h264,mpeg4" audioCodec="eac3,ac3,mp3,mp2"/> | |
<VideoProfile container="mkv" codec="vp9,hevc,mpeg1video,mpeg2video,h264,mpeg4" audioCodec="eac3,ac3,mp3,mp2,pcm,flac,alac,truehd" subtitleFormat="ass,srt"/> | |
<MusicProfile container="mp3" codec="mp2,mp3"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org.jitsi.videobridge.ENABLE_STATISTICS=true | |
org.jitsi.videobridge.STATISTICS_INTERVAL=1000 | |
org.jitsi.videobridge.STATISTICS_TRANSPORT=muc,colibri,pubsub | |
org.jitsi.videobridge.rest.private.jetty.port=8080 | |
org.jitsi.videobridge.rest.private.jetty.host=0.0.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.system_cfg.1=wireless.1.l2_isolation=enabled | |
config.system_cfg.2=wireless.2.l2_isolation=enabled | |
config.system_cfg.3=wireless.3.l2_isolation=enabled | |
config.system_cfg.4=wireless.4.l2_isolation=enabled |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# logon to the device | |
enable | |
configure | |
sdm prefer dual-ipv4-and-ipv6 default | |
exit | |
reload | |
# logon again | |
enable | |
configure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
send(IP(dst="45.151.166.22")/UDP(dport=10000)/Raw(load="Test4")) | |
send(IPv6(dst="2001:678:b7c::22")/UDP(dport=10000)/Raw(load="Test6")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=socat | |
After=network.target | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/socat TCP6-LISTEN:%i,reuseaddr,fork,bind=[::] TCP4:127.0.0.1:%i | |
Restart=on-abort | |
[Install] |