diff options
| author | Jeff Carr <[email protected]> | 2023-04-12 00:25:12 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-12 00:25:12 -0500 |
| commit | 2a80f90f38dc482021ca0b4dc4680f179bce9173 (patch) | |
| tree | aef1e0c8c9f686e48c74bfe821ee5f23b9ed0aeb | |
| parent | c81b8f8ac6cb1f0e37e3f8eb6ed5babf3c61bbfd (diff) | |
bastion
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | Makefile | 13 | ||||
| -rwxr-xr-x | go-nsupdate | bin | 0 -> 6921708 bytes | |||
| -rw-r--r-- | mykey | 4 |
3 files changed, 16 insertions, 1 deletions
@@ -1,9 +1,19 @@ -all: +bastion: + ./go-nsupdate \ + --tsig-algorithm=hmac-sha512 \ + --tsig-secret="+jmA1sPgduPR3X7wBn16KsOD3XZQYkPOHXzr4+8IvNvQATO5FfoxinHXJLloWABN+5n56F5Fuvf41+D/RL89UA==" \ + -i enp1s0f3 bastion.lab.wit.org + +hpdevone: ./go-nsupdate \ --tsig-algorithm=hmac-sha512 \ --tsig-secret="uf7tVM0ePWiSl0HtLNJVP7/DH/WuNkugxS19uXfN+k9V+avixXg/fmIS31FjR/kscvgMmkS+sspB83WjYXGU+w==" \ -i wlo1 hpdevone.lab.wit.org +setdate: + # apt install ntpdate + ntpdate pool.ntp.org + check: ./go-nsupdate \ --tsig-algorithm=hmac-sha512 \ @@ -11,4 +21,5 @@ check: -i wlo1 check.lab.wit.com make-keys: + tsig-keygen -a hmac-sha512 bastion.lab.wit.org sudo tsig-keygen -a hmac-sha512 hpdevone.lab.wit.org diff --git a/go-nsupdate b/go-nsupdate Binary files differnew file mode 100755 index 0000000..2d10073 --- /dev/null +++ b/go-nsupdate @@ -0,0 +1,4 @@ +key "hpdevone.lab.wit.org" { + algorithm hmac-sha512; + secret "uf7tVM0ePWiSl0HtLNJVP7/DH/WuNkugxS19uXfN+k9V+avixXg/fmIS31FjR/kscvgMmkS+sspB83WjYXGU+w=="; +}; |
