Scripts to confgire a group of hosts on a LAN to use VXLAN over Wireguard.
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
#!/bin/sh | |
# based on https://github.com/OpenVPN/openvpn/blob/master/contrib/OCSP_check/OCSP_check.sh | |
# for testing ocsp support in openvpn @ opnsense | |
# OCSP responder URL (mandatory) | |
# you can extract this from the cert ... | |
ocsp_url=`openssl x509 -in /var/etc/openvpn/server${1}.ca -noout -ocsp_uri` | |
# CA CERTIFICATE |
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
# ansible-playbook -D testxmlemptytag.yml | |
PLAY [localhost] ************************************************************************************************************************************************************ | |
TASK [Gathering Facts] ****************************************************************************************************************************************************** | |
ok: [127.0.0.1] | |
TASK [ansible.builtin.copy] ************************************************************************************************************************************************* | |
changed: [127.0.0.1] |
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
# Monitoring on interface eth0 | |
tcpdump -i eth0 -n port 67 and port 68 |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
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
frontend front_https | |
acl network_allowed src 100.111.222.100 | |
acl host_www hdr(host) -i zero-sys.net | |
http-request deny if host_www !network_allowed |
OlderNewer